fix: wrong act runner config

This commit is contained in:
2026-08-24 09:12:42 +00:00
parent 6353f662fa
commit 99ff1c0c4e
2 changed files with 1 additions and 9 deletions
-8
View File
@@ -81,11 +81,6 @@ services:
restart: always restart: always
networks: networks:
- compose_network - compose_network
# Job containers join Docker's real "bridge" network (see
# runner-config.yaml's container.network) - this container needs to be
# on it too so its auto-detected cache-server address is one they can
# actually reach.
- default_bridge
db: db:
image: postgres:16-alpine image: postgres:16-alpine
container_name: gitea_db container_name: gitea_db
@@ -107,6 +102,3 @@ networks:
compose_network: compose_network:
name: ${NETWORK_NAME} name: ${NETWORK_NAME}
external: true external: true
default_bridge:
name: bridge
external: true
+1 -1
View File
@@ -29,7 +29,7 @@ container:
# "bridge" (Docker's real, always-present default network) is honored # "bridge" (Docker's real, always-present default network) is honored
# instead - gitea_runner joins it too (see compose.yml) so both sides can # instead - gitea_runner joins it too (see compose.yml) so both sides can
# reach each other by container name/IP. # reach each other by container name/IP.
network: "bridge" network: "falcon_network"
privileged: false privileged: false
options: "-v /var/run/docker.sock:/var/run/docker.sock" options: "-v /var/run/docker.sock:/var/run/docker.sock"
workdir_parent: "" workdir_parent: ""