Spaces:
Running
Running
File size: 305 Bytes
70ea50e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | version: '3.8'
services:
nextjs:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- NODE_ENV=production
restart: unless-stopped
# Uncomment and add your environment variables
# env_file:
# - .env.production
|