#120 Create second runner for dind
Some checks are pending
Docker Compose Config / docker-compose-config (push) Waiting to run

This commit is contained in:
Joey Hafner 2024-02-12 23:24:14 -08:00
parent 54226e52c8
commit 8f6007c28d

View File

@ -35,9 +35,26 @@ services:
volumes:
- postgres_data:/var/lib/postgresql/data
runner:
runner-dind:
image: gitea/act_runner:latest-dind-rootless
container_name: gitea_runner
container_name: gitea_runner-dind
depends_on:
- gitea
env_file:
- path: ./runner.env
required: true
- path: ./runner_secrets.env
required: false
networks:
- gitea
volumes:
- ./runner_config.yaml:/config.yaml
- $DOCKER_DATA/runner:/data
- /var/run/docker.sock:/var/run/docker.sock
runner:
image: gitea/act_runner:latest
container_name: gitea_runner-ubuntu
depends_on:
- gitea
env_file: