35 lines
710 B
YAML
35 lines
710 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
catcher:
|
|
container_name: fids-testing_catcher
|
|
image: ${API_IMAGE}
|
|
environment:
|
|
- API_URL=${API_URL}
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
- POSTGRES_PASS=${POSTGRES_PASS}
|
|
# entrypoint: ["/bin/bash","-c"]
|
|
# command:
|
|
# - "sleep 3600"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
networks:
|
|
- auth
|
|
- flights
|
|
- gateway
|
|
- subscriptions
|
|
|
|
networks:
|
|
auth:
|
|
name: fids-auth-dev_auth
|
|
external: true
|
|
flights:
|
|
name: fids-flights-dev_flights
|
|
external: true
|
|
subscriptions:
|
|
name: fids-subs-dev_subscriptions
|
|
external: true
|
|
gateway:
|
|
name: fids-gateway-dev_gateway
|
|
external: true
|