Skip to content

Commit

Permalink
#2935: docker-compose, adjust docker 'ports'
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff1evesque committed Apr 28, 2018
1 parent d445bc2 commit 9a20e9b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docker-compose.development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,26 @@ services:
command: ['api', '0.0.0.0', '6001', '6']
network_mode: bridge
ports:
- 6000:9090/tcp
- 6000:6001/tcp

webserver-web:
hostname: webserver-web
image: jeff1evesque/ml-webserver:0.7
command: ['web', '0.0.0.0', '5001', '6']
network_mode: bridge
ports:
- 5000:8080/tcp
- 5000:5001/tcp

nginx-api:
hostname: nginx-api
image: jeff1evesque/ml-nginx-api:0.7
network_mode: bridge
ports:
- 9090:6000/tcp

nginx-web:
hostname: nginx-web
image: jeff1evesque/ml-nginx-web:0.7
network_mode: bridge
ports:
- 8080:5000/tcp

0 comments on commit 9a20e9b

Please sign in to comment.