docker-compose: Only bind ports 3000 and 4000 on localhost. (#7138)

This commit is contained in:
Valentin Lorentz 2018-04-15 13:57:58 +02:00 committed by Eugen Rochko
parent fed0b5ed04
commit 1e87ed44d5
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ services:
- external_network
- internal_network
ports:
- "3000:3000"
- "127.0.0.1:3000:3000"
depends_on:
- db
- redis
@ -60,7 +60,7 @@ services:
- external_network
- internal_network
ports:
- "4000:4000"
- "127.0.0.1:4000:4000"
depends_on:
- db
- redis