27 lines
381 B
Bash
Executable File
27 lines
381 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
FOLDER_NAME=(
|
|
'caddy'
|
|
'authentik'
|
|
'adguardhome'
|
|
'blog'
|
|
'filebrowser'
|
|
'freshrss'
|
|
'gitea'
|
|
'immich'
|
|
'nextcloud'
|
|
'storj'
|
|
'videoTranslationHttp'
|
|
)
|
|
|
|
BASE_DIR="/DATA01/dockers"
|
|
|
|
cd "$BASE_DIR"
|
|
|
|
for folder in "${FOLDER_NAME[@]}"; do
|
|
cd "$BASE_DIR/$folder"
|
|
docker compose down
|
|
docker compose up -d
|
|
done
|