sprint/.gitlab-ci.yml
Egor Matveev 9cf18db5b2 gitlab ci
2021-11-05 12:20:35 +03:00

20 lines
225 B
YAML

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