19 lines
374 B
YAML
19 lines
374 B
YAML
services:
|
|
nuxt-app:
|
|
build: .
|
|
container_name: freekake-nuxt-container
|
|
ports:
|
|
- "3000:80"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/conf.d/nginx.conf:ro
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|