Dockerfile: bind dashboard to 0.0.0.0 (default is 127.0.0.1, unreachable from Traefik)

This commit is contained in:
maestro
2026-04-26 22:34:32 +00:00
parent 14dbf9fcb0
commit ec52ef8e29

View File

@@ -35,4 +35,4 @@ HEALTHCHECK --interval=30s --timeout=5s --start-period=30s --retries=3 \
CMD curl -fsS -o /dev/null http://localhost:4040/ || exit 1 CMD curl -fsS -o /dev/null http://localhost:4040/ || exit 1
ENTRYPOINT ["node", "/app/packages/cli/dist/bin.js"] ENTRYPOINT ["node", "/app/packages/cli/dist/bin.js"]
CMD ["dashboard"] CMD ["dashboard", "--host", "0.0.0.0"]