We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to create user with a name from env variable TARANTOOL_USER_NAME (see topic Start a secure Tarantool instance at DockerHub).
But on version 2.8.3 this can not be work (the user is not created). Although on 1.10 everything is fine.
The text was updated successfully, but these errors were encountered:
$ docker run --rm --name mytarantool-1.10.12 -p3301:3301 -e TARANTOOL_USER_NAME=myusername -e TARANTOOL_USER_PASSWORD=mysecretpassword tarantool/tarantool:1.10.12 ... 2022-03-04 05:46:19.471 [1] main/101/tarantool-entrypoint.lua I> Creating user 'myusername' 2022-03-04 05:46:19.473 [1] main/101/tarantool-entrypoint.lua I> Granting admin privileges to user 'myusername' 2022-03-04 05:46:19.473 [1] main/101/tarantool-entrypoint.lua I> Setting password for user 'myusername' ... $ docker run --rm --name mytarantool-2.8.3 -p3301:3301 -e TARANTOOL_USER_NAME=myusername -e TARANTOOL_USER_PASSWORD=mysecretpassword tarantool/tarantool:2.8.3 ... 2022-03-04 05:46:53.308 [1] main/103/tarantool-entrypoint.lua I> Creating user 'myusername' 2022-03-04 05:46:53.309 [1] main/103/tarantool-entrypoint.lua I> Granting admin privileges to user 'myusername' 2022-03-04 05:46:53.310 [1] main/103/tarantool-entrypoint.lua I> Setting password for user 'myusername' ... $ docker run --rm --name mytarantool-2.10.0 -p3301:3301 -e TARANTOOL_USER_NAME=myusername -e TARANTOOL_USER_PASSWORD=mysecretpassword tarantool/tarantool:2.10.0-beta2 ... 2022-03-04 05:49:55.556 [1] main/103/tarantool-entrypoint.lua I> Creating user 'myusername' 2022-03-04 05:49:55.557 [1] main/103/tarantool-entrypoint.lua I> Granting admin privileges to user 'myusername' 2022-03-04 05:49:55.558 [1] main/103/tarantool-entrypoint.lua I> Setting password for user 'myusername' ...
Sorry, something went wrong.
No branches or pull requests
I am trying to create user with a name from env variable TARANTOOL_USER_NAME (see topic Start a secure Tarantool instance at DockerHub).
But on version 2.8.3 this can not be work (the user is not created). Although on 1.10 everything is fine.
The text was updated successfully, but these errors were encountered: