[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.pull/770/head
parent
8b64c9aad5
commit
060b4a19f6
|
@ -9,6 +9,7 @@ services:
|
||||||
GROUP_ID: ${GROUP_ID}
|
GROUP_ID: ${GROUP_ID}
|
||||||
command: '/resources/entrypoint-frontend.sh'
|
command: '/resources/entrypoint-frontend.sh'
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
|
tty: true
|
||||||
volumes:
|
volumes:
|
||||||
- './example/compose/authelia/resources/:/resources'
|
- './example/compose/authelia/resources/:/resources'
|
||||||
- '../../web:/app'
|
- '../../web:/app'
|
||||||
|
|
Loading…
Reference in New Issue