23 lines
292 B
Bash
23 lines
292 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Stop all..."
|
|
|
|
# traefik run:
|
|
sudo docker stop traefik
|
|
|
|
# postgres run:
|
|
sudo docker stop postgres
|
|
|
|
# pgadmin run:
|
|
sudo docker stop pgadmin
|
|
|
|
# nginx-main run:
|
|
sudo docker stop nginx-main
|
|
|
|
# gitea run:
|
|
sudo docker stop gitea
|
|
|
|
|
|
echo "All containers successfully stopped |