fist pass

This commit is contained in:
root
2026-01-31 22:18:40 +00:00
parent a582e1f272
commit a28013de4a
23 changed files with 4131 additions and 823 deletions

9
stop.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Stop BarkWho on CT 118 - kills both containers
REMOTE="root@192.168.2.118"
PROJECT="/opt/barkwho"
echo "Stopping containers..."
ssh "$REMOTE" "docker compose -f $PROJECT/docker-compose.yml down"
echo "Containers stopped."