remove unused config
Kim committed
Nov 18, 2025 at 10:32 UTC
c0f4676ac851d3bd1e6605698a214e1d5108d889
2 files changed
-2
Dockerfile
-1
@@ -42,7 +42,6 @@ FROM gcr.io/distroless/static-debian12:nonroot
42
COPY --from=builder /src/bin/relay-server /usr/bin/relay-server
43
44
# Set default environment variables
45
-ENV STATIC_DIR=/app/dist
45
ENV PORTAL_UI_URL=http://localhost:4017
46
ENV PORTAL_FRONTEND_URL=http://*.localhost:4017
47
ENV BOOTSTRAP_URIS=ws://localhost:4017/relay
docker-compose.yml
-1
@@ -8,7 +8,6 @@ services:
8
- "--port"
9
- "${PORTAL_PORT:-4017}"
10
environment:
11
- STATIC_DIR: ${STATIC_DIR:-/app/dist}
11
PORTAL_UI_URL: ${PORTAL_UI_URL:-http://localhost:${PORTAL_PORT:-4017}}
12
PORTAL_FRONTEND_URL: ${PORTAL_FRONTEND_URL:-http://*.localhost:${PORTAL_PORT:-4017}}
13
BOOTSTRAP_URIS: ${BOOTSTRAP_URIS:-ws://localhost:${PORTAL_PORT:-4017}/relay}