Files
event-demo/docker/parts/docker-compose-app.yaml
T
flecomte 9b717f4d34
Tests / build (push) Successful in 6m28s
Tests / lint (push) Canceled after 0s
Tests / test (push) Canceled after 6m54s
fix: missing .dockerignore
2026-08-04 23:00:57 +02:00

20 lines
495 B
YAML

services:
api:
build:
context: ../..
dockerfile: docker/Dockerfile
depends_on:
flyway:
condition: service_completed_successfully
postgresql:
condition: service_healthy
rabbitmq:
condition: service_healthy
redis:
condition: service_healthy
env_file:
- ../.env.docker
labels:
- "traefik.http.routers.api.rule=Host(`api.traefik.me`)"
- "traefik.http.services.api.loadbalancer.server.port=8080"