diff --git a/shell/auto_podman_compose b/shell/auto_podman_compose new file mode 100755 index 0000000..c76121c --- /dev/null +++ b/shell/auto_podman_compose @@ -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