Add files via upload

This commit is contained in:
Arthur
2025-06-10 01:17:19 +02:00
committed by GitHub
parent 551e68ca75
commit cfcdc330d5
11 changed files with 2219 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
version: "3.8"
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "${PORT:-3000}:${PORT:-3000}" # Map the container port to the host port
environment:
- NODE_ENV=${NODE_ENV:-production}
- PORT=${PORT:-3000}
- SOCKET_IO_PATH=${SOCKET_IO_PATH:-/socket.io}
- STATIC_FILES_PATH=${STATIC_FILES_PATH:-public}
volumes:
- .:/app # Mount the current directory to the container
command: npm start