diff options
author | Valery Piashchynski <[email protected]> | 2021-08-11 11:45:24 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-08-11 11:45:24 +0300 |
commit | 3e2e9fbd9650c44d57a41a9dc702fe93aad2b77f (patch) | |
tree | 38f25c3c0679e8510b896d001d1b7dccf21c4bd8 /tests/env | |
parent | d449d9d5aec1eec6d494064299feb1551f88ffe2 (diff) |
Replace all 'localhost' with '127.0.0.1'. Fix default configuration and
other small bugs.
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests/env')
-rw-r--r-- | tests/env/docker-compose.yaml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/env/docker-compose.yaml b/tests/env/docker-compose.yaml index dc91e7b6..4f58d543 100644 --- a/tests/env/docker-compose.yaml +++ b/tests/env/docker-compose.yaml @@ -4,15 +4,15 @@ services: memcached: image: memcached:latest ports: - - "0.0.0.0:11211:11211" + - "127.0.0.1:11211:11211" redis: image: redis:6 ports: - - "6379:6379" + - "127.0.0.1:6379:6379" redis2: image: redis:6 ports: - - "6378:6379" + - "127.0.0.1:6378:6379" toxicproxy: image: shopify/toxiproxy @@ -23,17 +23,17 @@ services: context: . dockerfile: Dockerfile-beanstalkd.yaml ports: - - "11300:11300" + - "127.0.0.1:11300:11300" sqs: build: context: . dockerfile: Dockerfile-elastic-mq.yaml ports: - - "9324:9324" + - "127.0.0.1:9324:9324" rabbitmq: image: rabbitmq:3-management ports: - - "15672:15672" - - "5672:5672" + - "127.0.0.1:15672:15672" + - "127.0.0.1:5672:5672" |