Files
hse-2026/materials/02-communication/grpc-streaming/docker-compose.yaml
T

17 lines
263 B
YAML
Raw Normal View History

2026-09-14 14:45:31 +03:00
services:
server:
build:
context: server
environment:
- SERVER_ADDR=0.0.0.0:51000
ports:
- "51000:51000"
client1:
build:
context: client
environment:
- SERVER_ADDR=server:51000
depends_on:
- server