WMGZON/cicd/Testing/docker-compose.yml

15 lines
481 B
YAML
Raw Permalink Normal View History

version: '3.8'
services:
gitlab-runner-python:
image: gitlab/gitlab-runner:latest
volumes:
- ./runner-data-python:/etc/gitlab-runner
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
gitlab-runner-docker:
image: gitlab/gitlab-runner:latest
volumes:
- ./runner-data-docker:/etc/gitlab-runner
- /var/run/docker.sock:/var/run/docker.sock
2024-01-15 18:23:39 +00:00
restart: unless-stopped