From a92d4a1a3227f4020d07552324642eb02b910303 Mon Sep 17 00:00:00 2001 From: JuliusR <> Date: Sat, 18 Dec 2021 18:29:27 +0100 Subject: [PATCH] prefer '-b 0.0.0.0' over '--bind 0.0.0.0' (docker-compose.yml) The latter yields the following error: `handle_argument_error': ERROR: "rails server" was called with arguments ["--bind", "0.0.0.0"] (Thor::InvocationError) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index d060f08..fa55c1f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: build: context: ./ dockerfile: Dockerfile.development - command: bundle exec rails server --bind 0.0.0.0 + command: bundle exec rails server -b 0.0.0.0 volumes: - ./:/srv/app ports: