|
@@ -140,7 +140,7 @@ This configuration has been tested on Mac & Linux. Windows is supported through
|
|
|
Run this automated one-liner from the directory you want to install your project to:
|
|
|
|
|
|
```bash
|
|
|
-curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/onelinesetup | bash -s -- magento2.test 2.3.4
|
|
|
+curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/onelinesetup | bash -s -- magento2.test 2.3.5-p1
|
|
|
```
|
|
|
|
|
|
The `magento2.test` above defines the hostname to use, and the `2.3.4` defines the Magento version to install. Note that since we need a write to `/etc/hosts` for DNS resolution, you will be prompted for your system password during setup.
|
|
@@ -158,19 +158,19 @@ Same result as the one-liner above. Just replace `magento2.test` references with
|
|
|
curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/template | bash
|
|
|
|
|
|
# Download the version of Magento you want to use with:
|
|
|
-bin/download 2.3.4
|
|
|
+bin/download 2.3.5-p1
|
|
|
|
|
|
# or if you'd rather install with Composer, run:
|
|
|
#
|
|
|
# OPEN SOURCE:
|
|
|
#
|
|
|
# rm -rf src
|
|
|
-# composer create-project --repository=https://repo.magento.com/ --ignore-platform-reqs magento/project-community-edition=2.3.4 src
|
|
|
+# composer create-project --repository=https://repo.magento.com/ --ignore-platform-reqs magento/project-community-edition=2.3.5-p1 src
|
|
|
#
|
|
|
# COMMERCE:
|
|
|
#
|
|
|
# rm -rf src
|
|
|
-# composer create-project --repository=https://repo.magento.com/ --ignore-platform-reqs magento/project-enterprise-edition=2.3.4 src
|
|
|
+# composer create-project --repository=https://repo.magento.com/ --ignore-platform-reqs magento/project-enterprise-edition=2.3.5-p1 src
|
|
|
|
|
|
# Create a DNS host entry for the site:
|
|
|
echo "127.0.0.1 ::1 magento2.test" | sudo tee -a /etc/hosts
|