Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Amend docs about using docker-compose stop instead of docker-compose down #289

Merged
merged 1 commit into from
Sep 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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