sprint/.gitlab-ci.yml
Egor Matveev bffa69a970 gitlab
2021-11-05 18:56:59 +03:00

24 lines
263 B
YAML

stages:
- build
- deploy
before_script:
- echo "Starting..."
after_script:
- echo "Done!"
build:
stage: build
tags:
- main
script:
- docker build -t sprint .
deploy:
stage: deploy
tags:
- main
script:
- docker-compose up -d