Switch internal port to 3000 to match Dokploy defaults

This commit is contained in:
2026-06-06 12:36:36 +05:30
parent c054da9d0d
commit 4a1b8460d7
2 changed files with 2 additions and 2 deletions

View File

@@ -13,6 +13,6 @@ COPY dist/ .
# 3. Copy your custom Nginx configuration to override the default server block
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
EXPOSE 3000
CMD ["nginx", "-g", "daemon off;"]

View File

@@ -1,5 +1,5 @@
server {
listen 80;
listen 3000;
server_name localhost;
location / {