Add auto_podman_compose
This commit is contained in:
parent
64431087e6
commit
8bb33a701a
26
shell/auto_podman_compose
Executable file
26
shell/auto_podman_compose
Executable 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
|
Loading…
x
Reference in New Issue
Block a user