11 lines
239 B
Bash
Executable File
11 lines
239 B
Bash
Executable File
#!/run/current-system/sw/bin/bash
|
|
|
|
SERVICE_NAMES=(
|
|
# "paperless"
|
|
"downloadin"
|
|
# "matrix"
|
|
)
|
|
for SERVICE in "${SERVICE_NAMES[@]}"; do
|
|
docker compose --env-file /etc/.soupclown.env -f $(pwd)/${SERVICE}-compose.yaml up -d
|
|
done
|