Files
marketing/docker-compose.yml

20 lines
430 B
YAML

version: '3.8'
services:
sakai-vue:
build:
context: .
dockerfile: Dockerfile.optimized
ports:
- "3000:80"
container_name: sakai-vue-app
restart: unless-stopped
environment:
- NODE_ENV=production
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://127.0.0.1/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s