Files
OpenFrontIO/docker-compose.yml
T
2024-08-13 07:34:07 -07:00

18 lines
338 B
YAML

version: '3'
services:
game-server:
build: .
ports:
- "3000:3000"
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