Update .gitlab-ci.yml file

This commit is contained in:
Marek Lesko
2025-10-17 12:40:43 +00:00
parent cc95a12878
commit 2b1d1852ef

11
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,11 @@
stages: # List of stages for jobs, and their order of execution
- deploy
deploy-job: # This job runs in the deploy stage.
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
environment: production
script:
- docker compose up -d
tags:
- media