19 lines
390 B
YAML
19 lines
390 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
|
|
api-gateway:
|
|
container_name: fids_api_gateway
|
|
image: ${API_IMAGE}
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-vz", "-w1", "localhost", "5002"]
|
|
interval: 2s
|
|
timeout: 2s
|
|
retries: 5
|
|
start_period: 2s
|
|
environment:
|
|
- TEST_TARGET=${TEST_TARGET}
|
|
- PORT=5000
|
|
- APP_SETTINGS=${APP_SETTINGS}
|
|
network_mode: "host"
|