fix: internal port back to 3000 (Docker maps externally via compose)

This commit is contained in:
2026-05-19 16:33:06 +10:00
parent a609ed2165
commit cac179754c
+2 -2
View File
@@ -11,10 +11,10 @@ RUN npm install --production && npm cache clean --force
COPY server.js ./
COPY public/ ./public/
EXPOSE 3030
EXPOSE 3000
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD wget -qO- http://localhost:3030/api/config || exit 1
CMD wget -qO- http://localhost:3000/api/config || exit 1
RUN addgroup -g 1001 -S appgroup && \
adduser -S appuser -u 1001 -G appgroup