From 5f4ae7e00990211d21138b5efc7f413c305f041a Mon Sep 17 00:00:00 2001 From: Andrei Ismail Date: Fri, 22 May 2015 17:11:18 +0300 Subject: [PATCH] #285 Stop mapping ProxySQL admin port 127.0.0.1 interface The reason for which I was trying to do this was that it wasn't being correctly forwarded by Docker. It works correctly if I bind the forwarded port to 0.0.0.0 instead of 127.0.0.1 on the original container. --- docker/1backend/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/1backend/docker-compose.yml b/docker/1backend/docker-compose.yml index 0f67246c6..1d5c2cc55 100644 --- a/docker/1backend/docker-compose.yml +++ b/docker/1backend/docker-compose.yml @@ -3,7 +3,7 @@ proxysql: links: - backend1hostgroup0 ports: - - "127.0.0.1:6032:6032" + - "6032:6032" - "6033:6033" backend1hostgroup0: