added start stop pull scripts

This commit is contained in:
2024-02-11 13:45:22 -06:00
parent a1c9485fe1
commit 40eaa3a4af
3 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
dc -f admin/compose.yml down
dc -f filebrowser/compose.yml down
dc -f homepage/compose.yml down
dc -f mixed/compose.yml down
dc -f reverseproxy/compose.yml down
dps

View File

@@ -0,0 +1,8 @@
#!/bin/bash
dc -f admin/compose.yml pull
dc -f filebrowser/compose.yml pull
dc -f homepage/compose.yml pull
dc -f mixed/compose.yml pull
dc -f reverseproxy/compose.yml pull
dps

8
dc-up-all-containers.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
dc -f admin/compose.yml up -d
dc -f filebrowser/compose.yml up -d
dc -f homepage/compose.yml up -d
dc -f mixed/compose.yml up -d
dc -f reverseproxy/compose.yml up -d
dps