microservice-poc/docker-compose.yaml
2024-08-14 08:46:38 +02:00

20 lines
369 B
YAML

version: "3.9"
services:
health-check:
image: itsscb/health-check
build:
context: .
dockerfile: Dockerfile-health
restart: "always"
depends_on:
auth:
condition: service_started
auth:
image: itsscb/auth
build:
context: .
dockerfile: Dockerfile-auth
restart: "always"
ports:
- "50051:50051"