Files
OpenFrontIO/docker-compose.yml
T
2025-02-05 17:31:57 -08:00

20 lines
359 B
YAML

version: "3"
services:
game-server:
build: .
ports:
- "3000:3000"
- "9229:9229"
environment:
- NODE_ENV=production
nginx:
image: nginx:latest
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- /etc/letsencrypt:/etc/letsencrypt
depends_on:
- game-server