4NK_IA_front/docker-compose.registry.yml
Nicolas Cantu ae8e647cf0
Some checks are pending
Build & Push Docker Image / docker (push) Waiting to run
ci: gitea workflow + compose registry deployment
2025-09-11 18:12:22 +02:00

18 lines
417 B
YAML

version: "3.9"
services:
frontend:
image: "git.4nkweb.com/4nk/4nk-ia-front:${TAG:-dev}"
container_name: 4nk-ia-front
restart: unless-stopped
ports:
- "8080:80"
environment:
- VITE_API_URL=${VITE_API_URL:-http://172.23.0.10:8000}
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost/"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s