17 lines
301 B
YAML
17 lines
301 B
YAML
services:
|
|
nuxt-app:
|
|
build: .
|
|
container_name: nuxt-container
|
|
ports:
|
|
- "3000:3000"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|