Skip to content
Snippets Groups Projects
Commit 655c144e authored by Yaroslav Lobankov's avatar Yaroslav Lobankov Committed by Yaroslav Lobankov
Browse files

docker: change localhost:3301 to 0.0.0.0:3301

This patch changes iproto listen URI setting in default-config.yaml from
`localhost:3301` to `0.0.0.0:3301`. Without this change, it's impossible
to start container and use a popular way for port publishing:

    $ docker run -p 3301:3301 --rm -d tarantool/tarantool
    $ tt connect 127.0.0.1:3301
        Connecting to the instance...
        failed to run interactive console: failed to create new console:
        failed to connect: failed to get protocol:failed to read
        Tarantool greeting: EOF

NO_DOC=docker
NO_TEST=docker
NO_CHANGELOG=docker
parent 28f2a259
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ credentials:
iproto:
listen:
- uri: localhost:3301
- uri: 0.0.0.0:3301
groups:
group-001:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment