Add auto_podman_compose

This commit is contained in:
Jeffrey Serio 2025-01-31 21:47:13 -06:00
parent 64431087e6
commit 8bb33a701a

26
shell/auto_podman_compose Executable file
View File

@ -0,0 +1,26 @@
#!/usr/bin/env bash
containers=(
AnonymousOverflow
docker-breezewiki-quay
dumb
elk
freshrss
gothub
libremdb
lingva-translate
privatebin
qbittorrent-docker
redlib
searxng
shaarli
)
COMPOSE_DIR="${HOME}/podman"
for ctn in "${containers[@]}"; do
cd "${COMPOSE_DIR}/${ctn}"
podman-compose down
podman-compose pull
podman-compose up -d
done