|
@@ -137,13 +137,21 @@ This configuration has been tested on Mac & Linux. Windows is supported through
|
|
|
|
|
|
### Automated Setup (New Project)
|
|
### Automated Setup (New Project)
|
|
|
|
|
|
-Run this automated one-liner from the directory you want to install your project to:
|
|
|
|
|
|
+Run this automated one-liner from the directory you want to install your project.
|
|
|
|
+
|
|
|
|
+#### No sample data
|
|
|
|
|
|
```bash
|
|
```bash
|
|
curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/onelinesetup | bash -s -- magento2.test 2.3.5-p1
|
|
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.
|
|
|
|
|
|
+#### With sample data
|
|
|
|
+
|
|
|
|
+```bash
|
|
|
|
+curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/onelinesetup | bash -s -- magento2.test with-samples-2.3.5-p1
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+The `magento2.test` above defines the hostname to use, and the `2.3.5-p1` 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.
|
|
|
|
|
|
After the one-liner above completes running, you should be able to access your site at `https://magento2.test`.
|
|
After the one-liner above completes running, you should be able to access your site at `https://magento2.test`.
|
|
|
|
|