fids/gateway/docker-compose.yml

34 lines
577 B
YAML

version: '3.8'
name: fids-gateway-dev
services:
api-gw:
extends:
file: docker-template.yml
service: api-gw
ports:
- 5000:5002
networks:
- auth
- flights
- gateway
- subscriptions
logging:
driver: gelf
options:
gelf-address: "udp://localhost:12201"
labels: gateway
networks:
auth:
name: fids-auth_auth
external: true
flights:
name: fids-flights_flights
external: true
subscriptions:
name: fids-subs_subscriptions
external: true
gateway:
driver: bridge