Browse Source

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

pull/4/head
Valentin Lorentz 6 years ago
committed by Eugen Rochko
parent
commit
1e87ed44d5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      docker-compose.yml

+ 2
- 2
docker-compose.yml 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

Loading…
Cancel
Save