docker-compose.yml
· 285 B · YAML
Raw
services:
dgraph:
image: dgraph/standalone:latest
container_name: dgraph
ports:
- "9088:8080" # HTTP
- "9080:9080" # gRPC
ratel:
image: dgraph/ratel:latest
container_name: ratel
ports:
- "9081:8000" # Ratel UI
volumes:
dgraph_data:
| 1 | services: |
| 2 | dgraph: |
| 3 | image: dgraph/standalone:latest |
| 4 | container_name: dgraph |
| 5 | ports: |
| 6 | - "9088:8080" # HTTP |
| 7 | - "9080:9080" # gRPC |
| 8 | |
| 9 | ratel: |
| 10 | image: dgraph/ratel:latest |
| 11 | container_name: ratel |
| 12 | ports: |
| 13 | - "9081:8000" # Ratel UI |
| 14 | |
| 15 | volumes: |
| 16 | dgraph_data: |