deafgain-website/docker-compose.yml
2024-11-23 14:38:56 -06:00

25 lines
No EOL
467 B
YAML

version: '3.8'
services:
web:
build:
context: .
args:
NODE_ENV: production
ports:
- "804:80"
restart: always
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
interval: 30s
timeout: 10s
retries: 3
deploy:
resources:
limits:
cpus: '0.50'
memory: 512M
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"