|
@@ -49,13 +49,13 @@ Your Magento source data is persistently stored within Docker data volumes. For
|
|
|
docker cp CONTAINERID:/srv/www ./
|
|
|
```
|
|
|
|
|
|
-Then, just uncomment the `/www/app/code:/srv/www/app/code` within your docker-compose.yml file (appdata > volumes) to mount your local `app/code` directory to the Docker data volume, then just restart your containers:
|
|
|
+Then, just uncomment the `/www/app:/srv/www/app` within your docker-compose.yml file (appdata > volumes) to mount your local `app` directory to the Docker data volume, then just restart your containers:
|
|
|
|
|
|
```
|
|
|
docker-compose up -d app
|
|
|
```
|
|
|
|
|
|
-This will restart your container with `app/code` mounted from your host machine, so any edits to this directory will correctly sync with your Docker volume.
|
|
|
+This will restart your container with `app` mounted from your host machine, so any edits to this directory will correctly sync with your Docker volume.
|
|
|
|
|
|
## Running Magento CLI tool
|
|
|
|
|
@@ -79,4 +79,4 @@ This will allow you to clear the cache by running the following command right in
|
|
|
|
|
|
```
|
|
|
magento cache:flush
|
|
|
-```
|
|
|
+```
|