Delete .gitlab-ci.yml

This commit is contained in:
2024-11-05 13:53:27 +01:00
parent 5a53d55c20
commit 17af69b289

View File

@@ -1,21 +0,0 @@
image: docker:latest # Base image
services:
- docker:dind # Docker-in-Docker service
variables:
DOCKER_HOST: tcp://docker:2375/
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."