docker-compose: Only bind ports 3000 and 4000 on localhost. (#7138)
This commit is contained in:
parent
fed0b5ed04
commit
1e87ed44d5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue