add a pull script

This commit is contained in:
quinm0
2026-02-24 20:51:06 -05:00
parent affbfcd116
commit 6db775385f
6 changed files with 16 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
docker compose --env-file $(pwd)/downloadin.env -f downloadin-compose.yaml pull
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
docker compose --env-file $(pwd)/immich.env -f $(pwd)/immich-compose.yaml pull
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
docker compose -f jellyfin-compose.yaml pull
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
docker compose -f $(pwd)/navidrome-compose.yaml pull
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
docker compose --env-file $(pwd)/paperless-compose.env -f $(pwd)/paperless-compose.yaml pull
+6
View File
@@ -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