13 lines
267 B
YAML
13 lines
267 B
YAML
|
|
# Production
|
||
|
|
services:
|
||
|
|
app:
|
||
|
|
container_name: compro-mit-prod
|
||
|
|
image: compro-mit-prod
|
||
|
|
build: .
|
||
|
|
restart: unless-stopped
|
||
|
|
ports:
|
||
|
|
- "${PORT_PROD:-3010}:3000"
|
||
|
|
logging:
|
||
|
|
driver: json-file
|
||
|
|
options: { max-size: "100m", max-file: "5" }
|