Ensure the forgejo runner cache is accessible to jobs
This commit is contained in:
parent
339908bc56
commit
bef0a4bc81
2 changed files with 5 additions and 3 deletions
|
@ -39,10 +39,10 @@ cache:
|
||||||
# The host of the cache server.
|
# The host of the cache server.
|
||||||
# It's not for the address to listen, but the address to connect from job containers.
|
# It's not for the address to listen, but the address to connect from job containers.
|
||||||
# So 0.0.0.0 is a bad choice, leave it empty to detect automatically.
|
# So 0.0.0.0 is a bad choice, leave it empty to detect automatically.
|
||||||
host: ""
|
host: "{{ ansible_default_ipv4.address }}"
|
||||||
# The port of the cache server.
|
# The port of the cache server.
|
||||||
# 0 means to use a random available port.
|
# 0 means to use a random available port.
|
||||||
port: 0
|
port: 4000
|
||||||
# The external cache server URL. Valid only when enable is true.
|
# The external cache server URL. Valid only when enable is true.
|
||||||
# If it's specified, act_runner will use this URL as the ACTIONS_CACHE_URL rather than start a server by itself.
|
# If it's specified, act_runner will use this URL as the ACTIONS_CACHE_URL rather than start a server by itself.
|
||||||
# The URL should generally end with "/".
|
# The URL should generally end with "/".
|
||||||
|
|
|
@ -9,12 +9,14 @@ services:
|
||||||
- TZ={{ timezone }}
|
- TZ={{ timezone }}
|
||||||
- DOCKER_HOST=tcp://docker_proxy:2375
|
- DOCKER_HOST=tcp://docker_proxy:2375
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
command: forgejo-runner daemon
|
command: forgejo-runner --config config.yml daemon
|
||||||
networks:
|
networks:
|
||||||
- default
|
- default
|
||||||
- forgejo_private
|
- forgejo_private
|
||||||
depends_on:
|
depends_on:
|
||||||
- docker_proxy
|
- docker_proxy
|
||||||
|
ports:
|
||||||
|
- "{{ ansible_default_ipv4.address }}:4000:4000"
|
||||||
|
|
||||||
docker_proxy:
|
docker_proxy:
|
||||||
image: lscr.io/linuxserver/socket-proxy:latest
|
image: lscr.io/linuxserver/socket-proxy:latest
|
||||||
|
|
Loading…
Reference in a new issue