sprint/.gitlab-ci.yml
Egor Matveev 5faa6f231b gitlab
2021-11-05 19:07:00 +03:00

25 lines
279 B
YAML

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