We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31eb6ae commit 1d6145cCopy full SHA for 1d6145c
Dockerfile.web
@@ -89,8 +89,8 @@ WORKDIR /app
89
COPY --chown=${USER_NAME} ./app .
90
COPY --from=builder --chown=${USER_NAME} "$VENV" "$VENV"
91
92
-# expose port
93
-EXPOSE 3000
+ARG PORT=${PORT:-3100}
+EXPOSE $PORT
94
95
CMD ["/bin/sh", "startup.sh"]
96
docker-compose.yml
@@ -13,7 +13,7 @@ services:
13
volumes:
14
- ./app:/app
15
ports:
16
- - ${PORT:-3000}:3000
+ - ${PORT:-3100}:3100
17
networks:
18
- default
19
0 commit comments