Move non-Nix bash scripts

This commit is contained in:
Oliver Davies 2025-03-29 23:34:25 +00:00
parent 7c9ffc116e
commit f2eea2d397
21 changed files with 11 additions and 10 deletions

View file

@ -0,0 +1,19 @@
#!/usr/bin/env bash
# Stops all running Docker containers except for the global Traefik proxy.
set -euo pipefail
# Show the running containers.
docker container ps
echo ""
# Stop the running containers and show any that are still running.
docker container ls |
tail -n +2 |
grep -v traefik-development-reverse-proxy-1 |
awk '{print $1}' |
xargs docker container stop
echo ""
docker container ps