Files
hse-2026/materials/02-communication/grpc-practice/docker-compose.yaml
T
2026-09-14 14:45:31 +03:00

13 lines
243 B
YAML

services:
server:
build: ./go-server
environment:
- SERVER_ADDR=0.0.0.0:51000
ports:
- "51000:51000"
client1:
image: hse-grpc-client
environment:
- SERVER_ADDR=server:51000
- VALUE_TO_PUT=100500