Skip to content

Commit

Permalink
Merge pull request #111 from panoratech/docker-fix-front
Browse files Browse the repository at this point in the history
🐛 Fix docker-compose front
  • Loading branch information
rflihxyz authored Dec 4, 2023
2 parents 9b2643d + c6a8d3c commit 7e1e073
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ services:
restart:
unless-stopped
ports:
- 1312:8080
- 80:80
depends_on:
- postgres
4 changes: 3 additions & 1 deletion packages/webapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ RUN npm run build
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist/ /usr/share/nginx/html
RUN ls -la /usr/share/nginx/html
EXPOSE 8080
RUN ls -la /usr/share/nginx/html

EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

0 comments on commit 7e1e073

Please sign in to comment.