mirror of
https://github.com/Magnus167/rustframe.git
synced 2025-08-20 04:19:59 +00:00
19 lines
365 B
YAML
19 lines
365 B
YAML
# docker-compose.yml
|
|
|
|
services:
|
|
github-runner:
|
|
build:
|
|
context: .
|
|
args:
|
|
RUNNER_VERSION: 2.323.0
|
|
# container_name commented to allow for multiple runners
|
|
# container_name: github-runner
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- runner-work:/home/runner/actions-runner/_work
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
runner-work:
|