Skip to content

Commit

Permalink
s/docker compose rm/docker compose down/g
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Jan 23, 2025
1 parent 39fd288 commit d779230
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion services/dockerhub/stop.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

docker compose stop
docker compose rm --force
docker compose down --remove-orphans
2 changes: 1 addition & 1 deletion services/home/stop.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

docker compose stop
docker compose rm --force
docker compose down --remove-orphans
2 changes: 1 addition & 1 deletion services/pygeoapi_cite/stop.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

docker compose stop
docker compose rm --force
docker compose down --remove-orphans
2 changes: 1 addition & 1 deletion services/pygeoapi_covid-19/stop.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

docker compose stop
docker compose rm --force
docker compose down --remove-orphans
2 changes: 1 addition & 1 deletion services/pygeoapi_master/stop.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

docker compose stop
docker compose rm --force
docker compose down --remove-orphans
2 changes: 1 addition & 1 deletion services/pygeoapi_stable/stop.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

docker compose stop
docker compose rm --force
docker compose down --remove-orphans
2 changes: 1 addition & 1 deletion services/traefik/stop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ export HTTP_PORT=80
export ACME_FILE="config/acme.json"

docker compose stop
docker compose rm --force
docker compose down --remove-orphans
chmod 600 ${ACME_FILE}

0 comments on commit d779230

Please sign in to comment.