Set static port for cache proxy server

This commit is contained in:
Jake Howard 2026-04-23 22:07:23 +01:00
parent 891006ae61
commit 199f863409
No known key found for this signature in database
GPG key ID: 57AFB45680EDD477
2 changed files with 4 additions and 0 deletions

View file

@ -48,6 +48,9 @@ cache:
# 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 "/".
external_server: ""
# The port bound by the internal cache proxy.
# 0 means to use a random available port.
proxy_port: 4001
container:
# Specifies the network to which the container will connect.

View file

@ -13,6 +13,7 @@ services:
- dind
ports:
- "{{ ansible_default_ipv4.address }}:4000:4000"
- "{{ ansible_default_ipv4.address }}:4001:4001"
dind:
image: docker:dind