11 lines
312 B
YAML
11 lines
312 B
YAML
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 |