Skip to content

Fix Docker image version #3705

New issue

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

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/how-to/app/launching_app.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ the following command will start Tarantool without any application:
.. code-block:: console

$ # create a temporary container and run it in interactive mode
$ docker run --rm -t -i tarantool/tarantool:1
$ docker run --rm -t -i tarantool/tarantool:latest

To run Tarantool with our application, we can say:

Expand All @@ -66,7 +66,7 @@ To run Tarantool with our application, we can say:
$ docker run --rm -t -i \
-v `pwd`/myapp.lua:/opt/tarantool/myapp.lua \
-v /data/dir/on/host:/var/lib/tarantool \
tarantool/tarantool:1 tarantool /opt/tarantool/myapp.lua
tarantool/tarantool:latest tarantool /opt/tarantool/myapp.lua

Here two resources on the host get mounted in the container:

Expand Down
8 changes: 4 additions & 4 deletions locale/ru/LC_MESSAGES/book/app_server/launching_app.po
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ msgstr ""

msgid ""
"$ # create a temporary container and run it in interactive mode\n"
"$ docker run --rm -t -i tarantool/tarantool:1"
"$ docker run --rm -t -i tarantool/tarantool:latest"
msgstr ""
"$ # создать временный контейнер и запустить его в интерактивном режиме\n"
"$ docker run --rm -t -i tarantool/tarantool:1"
"$ docker run --rm -t -i tarantool/tarantool:latest"

msgid "To run Tarantool with our application, we can say:"
msgstr ""
Expand All @@ -104,14 +104,14 @@ msgid ""
"$ docker run --rm -t -i \\\n"
" -v `pwd`/myapp.lua:/opt/tarantool/myapp.lua \\\n"
" -v /data/dir/on/host:/var/lib/tarantool \\\n"
" tarantool/tarantool:1 tarantool /opt/tarantool/myapp.lua"
" tarantool/tarantool:latest tarantool /opt/tarantool/myapp.lua"
msgstr ""
"$ # создать временный контейнер и\n"
"$ # запустить Tarantool с нашим приложением\n"
"$ docker run --rm -t -i \\\n"
" -v `pwd`/myapp.lua:/opt/tarantool/myapp.lua \\\n"
" -v /data/dir/on/host:/var/lib/tarantool \\\n"
" tarantool/tarantool:1 tarantool /opt/tarantool/myapp.lua"
" tarantool/tarantool:latest tarantool /opt/tarantool/myapp.lua"

msgid "Here two resources on the host get mounted in the container:"
msgstr "Здесь два ресурса подключаются к серверу в контейнере:"
Expand Down