fix: remove unnecessary command prefix from socat in betterbahn-proxy service

This commit is contained in:
Philip Henning 2025-08-31 20:59:12 +02:00
parent b5a1d9fb7a
commit 4ac17d83f4

View file

@ -14,7 +14,7 @@ services:
depends_on: [betterbahn] depends_on: [betterbahn]
# Share the app's network namespace so we can reach 127.0.0.1:3000 # Share the app's network namespace so we can reach 127.0.0.1:3000
network_mode: "service:betterbahn" network_mode: "service:betterbahn"
command: ["socat", "TCP-LISTEN:8080,fork,reuseaddr", "TCP:127.0.0.1:3000"] command: ["TCP-LISTEN:8080,fork,reuseaddr", "TCP:127.0.0.1:3000"]
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.docker.network=dokploy-network" - "traefik.docker.network=dokploy-network"