19 lines
421 B
YAML
19 lines
421 B
YAML
version: '3.8'
|
|
services:
|
|
work-queue-api:
|
|
build: .
|
|
image: git.danhenry.dev/thelab/work-queue-api:latest
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
DATABASE_URL: /data/work_queue.db
|
|
PORT: 8080
|
|
volumes:
|
|
- ./data:/data
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://localhost:8080/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|