From b20867d6648c83cf68711c9cbcde3e050d230974 Mon Sep 17 00:00:00 2001 From: Cristian Livadaru Date: Wed, 7 Feb 2024 02:48:14 +0100 Subject: [PATCH] change server listening address to global (#342) listen to 0.0.0.0 instead of just local interface so it can work in Docker (and herby in devcontainers) refs #340 Credits go to @robzolkos --- Procfile.dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile.dev b/Procfile.dev index da151fee..7410150c 100644 --- a/Procfile.dev +++ b/Procfile.dev @@ -1,2 +1,2 @@ -web: bin/rails server +web: bin/rails server -b 0.0.0.0 css: bin/rails tailwindcss:watch