Files
home_server/test/.gitlab-ci.yml
T
2024-02-03 11:58:42 +01:00

22 lines
338 B
YAML

# docker-compose up --build
image: tiangolo/docker-with-compose
stages:
- build
- test
build-job:
stage: build
script:
- echo "Hello, $GITLAB_USER_LOGIN!"
test-job1:
stage: test
script:
- echo "This job tests something"
- docker stack ls
- docker ps
- docker stack deploy -c docker-compose.yml tester