27 lines
407 B
Bash
Executable File
27 lines
407 B
Bash
Executable File
#!/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
|