fix(compose): remove external network declarations from compose templates

This commit is contained in:
Fusion
2026-05-20 17:58:36 +02:00
parent 189f29ee41
commit 19db7db8d0
+3 -21
View File
@@ -122,13 +122,7 @@ services:
- {{REPO_PATH}}:/config/workspace - {{REPO_PATH}}:/config/workspace
ports: ports:
- "8443:8443" - "8443:8443"
networks: restart: unless-stopped""",
- backend
restart: unless-stopped
networks:
backend:
external: true""",
"default_port": 8443, "default_port": 8443,
"required_variables": ["REPO_PATH", "TOOL_NAME"], "required_variables": ["REPO_PATH", "TOOL_NAME"],
}, },
@@ -150,13 +144,7 @@ services:
- {{REPO_PATH}}:/home/jovyan/work - {{REPO_PATH}}:/home/jovyan/work
ports: ports:
- "8888:8888" - "8888:8888"
networks: restart: unless-stopped""",
- backend
restart: unless-stopped
networks:
backend:
external: true""",
"required_variables": ["REPO_PATH", "TOOL_NAME"], "required_variables": ["REPO_PATH", "TOOL_NAME"],
}, },
{ {
@@ -188,16 +176,10 @@ services:
tail -f /dev/null" tail -f /dev/null"
stdin_open: true stdin_open: true
tty: true tty: true
networks:
- backend
restart: unless-stopped restart: unless-stopped
volumes: volumes:
opencode_home: opencode_home:""",
networks:
backend:
external: true""",
"required_variables": ["REPO_PATH", "TOOL_NAME"], "required_variables": ["REPO_PATH", "TOOL_NAME"],
}, },
] ]