Skip to content

Commit

Permalink
add release note uninstall command
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gilber committed Nov 4, 2023
1 parent 575d670 commit 446cd66
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,8 @@ template: |
```sh
DEMOAPP_BACKEND_IMAGE="ghcr.io/$OWNER/$REPOSITORY:v$RESOLVED_VERSION" docker compose --project-directory deploy/docker-compose up
```
## Uninstall from the command line
```sh
docker compose --project-directory deploy/docker-compose down --volumes
```
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ services:

docker compose --project-directory deploy/docker-compose up
docker compose --project-directory deploy/docker-compose up --build # rebuild application image, only applicable if `build` field is enabled
docker compose --project-directory deploy/docker-compose down # remove containers, networks and volumes created by docker compose
docker compose --project-directory deploy/docker-compose down --volumes # remove containers, networks and volumes created by docker compose

```

Expand Down

0 comments on commit 446cd66

Please sign in to comment.