20 lines
369 B
YAML
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"
|