This commit is contained in:
2024-10-29 16:26:06 +01:00
parent 17157a4744
commit b6b4ec8d46

13
.gitlab-ci.yaml Normal file
View File

@@ -0,0 +1,13 @@
stages:
- deploy
deploy:
stage: deploy
only:
- main # Only run this job on merges to the main branch
script:
- echo "Starting deployment..."
- docker-compose up -d # Start services without interrupting existing ones
- docker exec nginx_proxy nginx -s reload # Reload NGINX inside the container
- echo "Deployment completed."