Browse Source

moved conf in sub dir

toastie89 1 year ago
parent
commit
a250a73ece
2 changed files with 2 additions and 2 deletions
  1. 1 1
      README.md
  2. 1 1
      startup.sh

+ 1 - 1
README.md

@@ -1,7 +1,7 @@
 # Docker startup helper scripts 
 
 `startup.sh` starts/stops/pulls all containers expected to run on the current host.
-The script expects a list of absolut paths to docker-compose.yml files in /opt/docker/startup/$HOSTNAME.
+The script expects a list of absolut paths to docker-compose.yml files in /opt/docker/startup/conf/$HOSTNAME.
 
 `container-startups.service` is a oneshot systemd service which runs `startup.sh up`.
 To install the service run:

+ 1 - 1
startup.sh

@@ -2,7 +2,7 @@
 
 if [ -f /opt/docker/startup/$HOSTNAME ]; then echo "OK: Container list found"; else echo "NOK: No container list found" && exit 1; fi
 
-source /opt/docker/startup/$HOSTNAME
+source /opt/docker/startup/conf/$HOSTNAME
 
 up() {
 for service in $services