infrastructure/docker/runner/docker-compose.yaml

13 lines
310 B
YAML

version: "3"
services:
# Webserver for static files and reverse proxy
gitlab_runner:
image: gitlab/gitlab-runner:alpine
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- gitlab_runner_config:/etc/gitlab-runner
restart: always
volumes:
gitlab_runner_config:
external: yes