add a pull script
This commit is contained in:
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
docker compose --env-file $(pwd)/downloadin.env -f downloadin-compose.yaml pull
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
docker compose --env-file $(pwd)/immich.env -f $(pwd)/immich-compose.yaml pull
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
docker compose -f jellyfin-compose.yaml pull
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
docker compose -f $(pwd)/navidrome-compose.yaml pull
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
docker compose --env-file $(pwd)/paperless-compose.env -f $(pwd)/paperless-compose.yaml pull
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
SERVICE_NAMES=("paperless" "jellyfin" "immich" "navidrome" "downloadin")
|
||||
for SERVICE in "${SERVICE_NAMES[@]}"; do
|
||||
bash $(pwd)/${SERVICE}-pull.sh
|
||||
done
|
||||
Reference in New Issue
Block a user