Vertaling van "docker run" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Y ejecuta un contenedor con la imagen docker run -it rakudo-star
Then run a container with the image docker run -it rakudo-star
Todo lo que tenemos que hacer es crear un nuevo contenedor con docker run.
All we have to do is to create a new container with docker run.
El comando run ha creado un contenedor persistente en su servidor host, debe ejecutar docker run solo una vez.
The run command has created a persistent container in your host server, you should execute docker run just one time.
Instalé docker.io usando apt-get y realicé una prueba rápida "docker run" usando mi imagen httpd, y funcionó.
I installed docker.io using apt-get and did a quick "docker run" test using my httpd image, and it worked.
Tan pronto como tengamos la imagen podemos lanzar un contenedor con el comando docker run
As soon as we have the image, we can launch a container with the docker run command
Además, es posible combinar el comando docker run con otros comandos que se ejecutan en el momento en el que se inicia el contenedor.
In addition, the docker run command can be combined with other commands that are run as soon as the container starts.
docker run -it imagen(se puede poner el -it para que corra de modo iterativo)
docker run -it imagen (you can put -it so that it runs in iteration mode)
Cuando se le ordena al daemon iniciar un contenedor con la orden docker run, el programa comprueba primero si la imagen requerida está almacenada de forma local.
If the Docker daemon is instructed via docker run to launch a container, the background programme checks whether or not the corresponding container image is locally available.
La salida de la imagen se interpreta de la siguiente forma: para ejecutar el comando docker run hello-world, el daemon busca primero la imagen del contenedor correspondiente en los archivos locales del sistema.
This terminal output is interpreted as follows: To run the command docker run hello-world, the Docker daemon searches the local files of your system for the corresponding container image.
Una vez que hayas visto una respuesta exitosa, puedes cerrar el contenedor presionando Ctrl + C en la pestaña donde se ejecuta el comando docker run.
Once you've seen a successful response, you can shut down the container by pressing Ctrl+C in the tab where docker run command is running.
Cualquier comando que indiquemos al final de la instrucción docker run sustituirá a lo que esté definido en CMD
If we specify a command at the end of docker run will replace the one defined by CMD
El comando docker run le ordena al daemon de Docker que busque e inicie un contenedor con el nombre hello-world.
The command docker run instructs the Docker daemon to search for and start a container with the name hello-world.
Puedes utilizar esta solución en Docker mediante la opción - init del comando docker run.
You can use this solution in Docker itself by using the - init option of the docker run command.