From 060b4a19f607319527a52e545aa889a7448381ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Michaud?= Date: Sun, 22 Mar 2020 03:10:24 +0100 Subject: [PATCH] [MISC] Fix authelia-frontend dev server startup. (#767) The latest react-scripts bumps broke the startup of the authelia-frontend container because the new version of react-scripts behaves differently when the container is spawned with a pseudo-tty and when there is not. --- .../example/compose/authelia/docker-compose.frontend.dev.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/suites/example/compose/authelia/docker-compose.frontend.dev.yml b/internal/suites/example/compose/authelia/docker-compose.frontend.dev.yml index 63f27466..962c0da7 100644 --- a/internal/suites/example/compose/authelia/docker-compose.frontend.dev.yml +++ b/internal/suites/example/compose/authelia/docker-compose.frontend.dev.yml @@ -9,6 +9,7 @@ services: GROUP_ID: ${GROUP_ID} command: '/resources/entrypoint-frontend.sh' working_dir: /app + tty: true volumes: - './example/compose/authelia/resources/:/resources' - '../../web:/app'