Skip to content

Commit

Permalink
feat: support specifying --docker-volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDevMinerTV committed Nov 21, 2024
1 parent 593a3d5 commit 654e830
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ Ansible Collections
startup.
- `runner_stop_timeout`: Optional. Timeout in seconds for the service stop
command after which systemd will just `SIGKILL` the process.
- `runner_docker_volumes`: Optional. List of volumes to mount into the CI jobs.

- `runner_user`: Optional. User that will be used to run the runner. Only used
if `runner_executor` is set to `shell`.
Expand Down
1 change: 1 addition & 0 deletions tasks/registration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
--env 'DOCKER_DRIVER={{ env_docker_driver }}'
--env 'DOCKER_TLS_CERTDIR={{ env_docker_tls_certdir }}'
{{ '--docker-image ' + runner_docker_image if runner_executor == 'docker' else '' }}
{{ runner_docker_volumes | map('regex_replace', '^(.*)$', '--docker-volumes \\1') | join(' ') }}
{{ '--docker-privileged ' if runner_executor == 'docker' and runner_docker_privileged else '' }}
{{ '--docker-wait-for-services-timeout '
+ runner_docker_services_timeout | string if runner_executor == 'docker' else '' }}
Expand Down

0 comments on commit 654e830

Please sign in to comment.