Files
general-template/docker-compose.yml
Yusron alamsyah dc8e9a9208 add docker
2026-03-26 15:54:08 +07:00

16 lines
315 B
YAML

version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "3030:3030"
environment:
- NODE_ENV=production
- HOST=0.0.0.0
- PORT=3030
- AUTH_ORIGIN=http://localhost:3005
restart: unless-stopped
container_name: general-template-app