1234567891011121314151617181920212223242526 |
- version: '3'
- services:
- router:
- container_name: router
- image: ghcr.io/apollographql/router:v1.24.0
- volumes:
- - ./prod-schema.graphql:/etc/config/supergraph.graphql:ro
- - ./router.yaml:/etc/config/configuration.yaml:ro
- command:
- [
- "-c",
- "/etc/config/configuration.yaml",
- "-s",
- "/etc/config/supergraph.graphql",
- "--log",
- "info",
- "--hot-reload",
- "--anonymous-telemetry-disabled",
- "--listen",
- "0.0.0.0:8080"
- ]
- ports:
- - "8080:8080"
- - "9090:9090"
- restart: unless-stopped
|