Skip to content

Commit

Permalink
[DOCS] Add amendment to docs about using docker stop instead of docke…
Browse files Browse the repository at this point in the history
…r down
  • Loading branch information
Dan Smart authored and dansmart-box committed Sep 6, 2022
1 parent 65addd3 commit 5c754d4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/dev/docker-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,13 @@ for development environments.

> This only needs to be called once to build the image(s)
* `docker-compose up`
* Use `docker-compose up` to build the containers. You'll only need to use this the first time.

* Use `docker-compose start` to start the container

* Use `docker-compose stop` to stop the container (without removing the volumes).

> Using docker-compose down stops containers but also removes them. This will lead to loss of data (e.g. your database).
That's it! You should now be able to browse to `https://$PROJECT_NAME.local` (or whatever you set) and view the site. Note, at time of writing you will need to go through the install script to have WordPress set up.

Expand Down

0 comments on commit 5c754d4

Please sign in to comment.