Finish OnlyOffice Setup (#13)

* Add newlines in output.

* Remove fancy DNS attempts to get NC and OO to talk. Just had to give NC the local IP through the Advanced settings. Yay!!
This commit is contained in:
2023-08-22 04:38:52 +00:00
committed by GitHub
parent f205dbfcd5
commit fbad19dc51
6 changed files with 12 additions and 26 deletions

View File

@ -16,9 +16,12 @@ fi
## Main ##
echo "Starting all containers."
cd $DOCKER_HOME/Config
for dir in `ls`; do
[ -d $dir ] && cd $dir || continue
echo ""
pwd
[ -e Dockerfile ] && docker compose build
[ -e docker-compose.yml ] && docker compose up -d

View File

@ -16,9 +16,12 @@ fi
## Main ##
echo "Stopping all containers."
cd $DOCKER_HOME/Config
for dir in `ls`; do
[ -d $dir ] && cd $dir || continue
echo ""
pwd
[ -e docker-compose.yml ] && docker compose down
cd ..