Fix issues reported by ansible-lint
This commit is contained in:
parent
a90840b1dc
commit
2e100d290f
59 changed files with 315 additions and 244 deletions
|
@ -1,8 +1,9 @@
|
|||
---
|
||||
svc:
|
||||
name: forgejo-runner
|
||||
|
||||
svc_env:
|
||||
FORGEJO_INSTANCE_URL: "https://git.serguzim.me/"
|
||||
FORGEJO_INSTANCE_URL: https://git.serguzim.me/
|
||||
FORGEJO_RUNNER_REGISTRATION_TOKEN:
|
||||
DOCKER_HOST: tcp://docker-in-docker:2375
|
||||
|
||||
|
@ -17,7 +18,7 @@ compose:
|
|||
services:
|
||||
app:
|
||||
hostname: "{{ ansible_facts.hostname }}"
|
||||
command: "forgejo-runner --config /config/config.yml daemon"
|
||||
command: forgejo-runner --config /config/config.yml daemon
|
||||
depends_on:
|
||||
- docker-in-docker
|
||||
links:
|
||||
|
@ -25,7 +26,7 @@ compose:
|
|||
docker-in-docker:
|
||||
image: docker:dind
|
||||
privileged: true
|
||||
command: "dockerd -H tcp://0.0.0.0:2375 --tls=false"
|
||||
command: dockerd -H tcp://0.0.0.0:2375 --tls=false
|
||||
networks:
|
||||
default:
|
||||
volumes:
|
||||
|
|
Reference in a new issue