mirror of
https://github.com/gusaul/grpcox.git
synced 2024-11-16 22:16:25 +00:00
ac58c2bb2d
This allows us to connect to gRPC services running on the `localhost` interface on the developer's machine. cf. https://docs.docker.com/compose/compose-file/#network_mode
13 lines
188 B
YAML
13 lines
188 B
YAML
version: '3'
|
|
services:
|
|
grpcox:
|
|
network_mode: host
|
|
build: .
|
|
ports:
|
|
- "6969:6969"
|
|
volumes:
|
|
- ./index:/index
|
|
- ./log:/log
|
|
env_file:
|
|
- config.env
|