From 4ac17d83f49c739093f94ef6e9de6de232f0a0c1 Mon Sep 17 00:00:00 2001 From: phg Date: Sun, 31 Aug 2025 20:59:12 +0200 Subject: [PATCH] fix: remove unnecessary command prefix from socat in betterbahn-proxy service --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 8430bc8..42891be 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,7 +14,7 @@ services: depends_on: [betterbahn] # Share the app's network namespace so we can reach 127.0.0.1:3000 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: - "traefik.enable=true" - "traefik.docker.network=dokploy-network"