Files
ascii-art-app/docker-compose.yml
T
Ricardo Mancinas 947ad44da5
Build and Deploy / Build Image (push) Failing after 9s
Build and Deploy / Deploy to Portainer (push) Has been skipped
Fix workflow to match gitea-actions-portainer-deploy skill pattern
2026-07-11 20:59:36 -07:00

19 lines
399 B
YAML

version: '3.8'
services:
ascii-art-app:
image: ${IMAGE:-git.mancinas.io/rmancinas/ascii-art-app:latest}
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
ports:
- "8182:5000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/"]
interval: 30s
timeout: 10s
retries: 3