fids/gateway/docker-compose.yml

34 lines
597 B
YAML

version: '3.8'
name: fids_gateway
services:
api-gateway:
extends:
file: docker-template.yml
service: api-gateway
ports:
- 5000:5002
networks:
- auth
- flights
- gateway
- subscriptions
logging:
driver: gelf
options:
gelf-address: "udp://localhost:12201"
labels: gateway
networks:
auth:
name: auth-domain_auth
external: true
flights:
name: flights-domain_flights
external: true
subscriptions:
name: subscription-domain_subscriptions
external: true
gateway:
driver: bridge