Files
universal_web_loco_rewrite/docker-compose.prod.yml
filipriec 8f89423994
Some checks failed
CI / Check Style (push) Has been cancelled
CI / Run Clippy (push) Has been cancelled
CI / Run Tests (push) Has been cancelled
prod setup
2026-05-20 11:01:23 +00:00

28 lines
527 B
YAML

services:
universal-web:
container_name: gitara-web
build:
context: .
dockerfile: Dockerfile
env_file:
- .env.production
volumes:
- gitara_web_data:/usr/app/data
networks:
- gitara-net
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://localhost:5150/_ping"]
interval: 30s
timeout: 5s
retries: 3
start_period: 20s
networks:
gitara-net:
external: true
volumes:
gitara_web_data:
name: gitara_web_data