added start stop pull scripts

This commit is contained in:
2024-02-11 13:45:32 -06:00
parent f889ecd50f
commit b0dd903004
3 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash
dc -f admin/compose.yml down
dc -f mixed/compose.yml down
dc -f olivetine/compose.yml down
dc -f vpn/compose.yml down
dps

View File

@@ -0,0 +1,7 @@
#!/bin/bash
dc -f admin/compose.yml pull
dc -f mixed/compose.yml pull
dc -f olivetine/compose.yml pull
dc -f vpn/compose.yml pull
dps

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

@@ -0,0 +1,7 @@
#!/bin/bash
dc -f admin/compose.yml up -d
dc -f mixed/compose.yml up -d
dc -f olivetine/compose.yml up -d
dc -f vpn/compose.yml up -d
dps