Mercurial > hg > Docker > GRPCTest
view docker-compose.yml @ 7:4a4b9a3837c7 default tip
...
author | anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 23 May 2020 10:36:15 +0900 |
parents | 47b893cfd6d9 |
children |
line wrap: on
line source
version: '3.7' services: server: build: . container_name: "server-$USER" ports: - 1234:1234 volumes: - .:/study-grpc command: bash scripts/server.sh tty: true client: build: . container_name: "client-$USER" environment: SERVER: server:1234 volumes: - .:/study-grpc command: bash scripts/client.sh tty: true