TraefikIntegration #5

Merged
luke-else merged 43 commits from TraefikIntegration into master 2023-08-08 19:50:40 +00:00
2 changed files with 58 additions and 2 deletions
Showing only changes of commit 4b33c0e406 - Show all commits

View File

@ -1 +1,29 @@
#Script file for spinning down all docker-containers
#Script file for spinning down all docker-containers
cd ./Websites/
docker-compose down
cd ..
cd ./NextCloud/
docker-compose down
cd ..
cd ./Development/Gitea/
docker-compose down
cd ..
cd ./Jira/
docker-compose down
cd ../..
cd ./Database/
docker-compose down
cd ..
cd ./Bitwarden/
docker-compose down
cd ..
cd ./Traefik/
docker-compose down
cd ..

View File

@ -1 +1,29 @@
#Script file for spinning up all docker-containers
#Script file for spinning up all docker-containers
cd ./Traefik/
docker-compose up -d
cd ..
cd ./Websites/
docker-compose up -d
cd ..
cd ./NextCloud/
docker-compose up -d
cd ..
cd ./Development/Gitea/
docker-compose up -d
cd ..
cd ./Jira/
docker-compose up -d
cd ../..
cd ./Database/
docker-compose up -d
cd ..
cd ./Bitwarden/
docker-compose up -d
cd ..