Updated container registry and launch order

This commit is contained in:
Luke Else 2025-02-01 13:33:49 +00:00
parent e3f2be7b08
commit babfad9b78
2 changed files with 8 additions and 6 deletions

View File

@ -4,7 +4,7 @@ services:
#Websites luke-else.co.uk (8000) snexo.co.uk (8001) divine-couture.co.uk (80) wmgzon.luke-else.co.uk (8080)
luke-else:
build: ./luke-else.co.uk
image: git.luke-else.co.uk/luke-else/luke-else.co.uk
container_name: luke-else
networks:
- proxy
@ -23,7 +23,7 @@ services:
restart: unless-stopped
divine-couture:
image: lukeelse/divine-couture.co.uk:latest
image: git.luke-else.co.uk/luke-else/divine-couture.co.uk:latest
container_name: divine-couture
networks:
- proxy

View File

@ -2,16 +2,18 @@
cd ./Traefik/
docker-compose pull && docker-compose up -d
cd ..
cd ./Websites/
docker-compose pull && docker-compose up -d
cd ..
cd ./Development/Gitea/
docker-compose pull && docker-compose up -d
cd ../..
sleep 20 # Allow Gitea + registry to start up before starting the rest of the services
cd ./Websites/
docker-compose pull && docker-compose up -d
cd ..
cd ./Database/
docker-compose pull && docker-compose up -d
cd ..