Files
work-queue-webui/roles/work_queue_webui/templates/docker-compose.yml.j2
Lennie S. 39c299d926
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m4s
Add work_queue_webui Ansible role
2026-04-12 00:35:55 +00:00

25 lines
540 B
Django/Jinja

---
services:
webui:
image: {{ work_queue_webui_image }}
volumes:
- {{ work_queue_webui_data_path }}:/app/data
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:80"]
interval: 30s
timeout: 10s
retries: 3
proxy:
image: nginx:alpine
ports:
- "{{ work_queue_webui_proxy_port }}:80"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
webui:
condition: service_healthy
restart: unless-stopped