Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions homework/02-grpc-messenger/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
services:
server:
image: grpc-solution-server
build:
context: ./messenger
dockerfile: server.dockerfile
environment:
MESSENGER_SERVER_PORT: 51075
ports:
- 51075:51075

client1:
image: grpc-solution-client
build:
Expand All @@ -30,6 +20,20 @@ services:
MESSENGER_HTTP_PORT: 8080
ports:
- 8081:8080

server:
image: grpc-solution-server
build:
context: ./messenger
dockerfile: server.dockerfile
environment:
MESSENGER_SERVER_PORT: 51075
ports:
- 51075:51075
depends_on:
- client1
- client2


tests:
image: grpc-solution-tests
Expand Down