Skip to content

Commit

Permalink
feat(Docker): consistent HTTP port
Browse files Browse the repository at this point in the history
  • Loading branch information
satoufuyuki committed Sep 25, 2023
1 parent 8c730c1 commit 1819b93
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ COPY --from=build-stage /tmp/build/node_modules ./node_modules
ENV NODE_ENV production

# Start the app with node
CMD ["npm", "run", "start"]
CMD ["npm", "run", "start", "--", "-p", "80"]
15 changes: 15 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
x-common-general: &common-general
restart: unless-stopped

services:
lukarian:
<<: *common-general
container_name: lukarian-app
image: ghcr.io/meichou-no-houyou/lukarian
networks:
- net
ports:
- "14045:80"

networks:
net:

0 comments on commit 1819b93

Please sign in to comment.