Files
infrastructure/ansible/roles/game-thumbs/templates/docker-compose.yml
2026-02-13 09:57:29 -05:00

32 lines
1.1 KiB
YAML

services:
game-thumbs:
image: ghcr.io/sethwv/game-thumbs:latest
container_name: game-thumbs
restart: unless-stopped
labels:
- "autoheal=true"
ports:
- 3050:3050
environment:
PORT: 3050
NODE_ENV: ${NODE_ENV:-production}
SHOW_TIMESTAMP: ${SHOW_TIMESTAMP:-true}
LOG_TO_FILE: ${LOG_TO_FILE:-false}
MAX_LOG_FILES: ${MAX_LOG_FILES:-10}
volumes:
- "{{ data_dir }}/game-thumbs/cache:/app/.cache
healthcheck:
test: ["CMD", "node", "-e", "require('http').get('http://localhost:3050/health', (r) => {let d='';r.on('data', (c) => d+=c);r.on('end', () => {if (r.statusCode !== 200) process.exit(1);const j=JSON.parse(d);process.exit(j.status==='ok'?0:1)})}).on('error', () => process.exit(1))"]
interval: 30s
timeout: 5s
start_period: 10s
retries: 3
autoheal:
image: willfarrell/autoheal:latest
container_name: autoheal
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
AUTOHEAL_CONTAINER_LABEL: "autoheal"