From 7b99f406074ff7e75e54a3897ae21b440cc266c4 Mon Sep 17 00:00:00 2001 From: collinmurd Date: Sat, 12 Oct 2024 14:01:29 -0400 Subject: [PATCH] change port --- Dockerfile | 4 ++-- docker-compose.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 26282bb..dd33420 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,9 +48,9 @@ COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static USER nextjs -EXPOSE 3000 +EXPOSE 3001 -ENV PORT=3000 +ENV PORT=3001 # server.js is created by next build from the standalone output # https://nextjs.org/docs/pages/api-reference/next-config-js/output diff --git a/docker-compose.yaml b/docker-compose.yaml index 75b9538..cad79be 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -3,6 +3,6 @@ services: app: image: ghcr.io/collinmurd/virtual-guillotine:latest ports: - - "3000:3000" + - "3001:3001" env_file: - /home/guillotine/.env