Vertaling van "docker run" in Spaans
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.
Then run a container with the image docker run -it rakudo-star
Y ejecuta un contenedor con la imagen docker run -it rakudo-star
All we have to do is to create a new container with docker run.
Todo lo que tenemos que hacer es crear un nuevo contenedor con docker run.
The run command has created a persistent container in your host server, you should execute docker run just one time.
El comando run ha creado un contenedor persistente en su servidor host, debe ejecutar docker run solo una vez.
I installed docker.io using apt-get and did a quick "docker run" test using my httpd image, and it worked.
Instalé docker.io usando apt-get y realicé una prueba rápida "docker run" usando mi imagen httpd, y funcionó.
As soon as we have the image, we can launch a container with the docker run command
Tan pronto como tengamos la imagen podemos lanzar un contenedor con el comando docker run
In addition, the docker run command can be combined with other commands that are run as soon as the container starts.
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.
docker run -it imagen (you can put -it so that it runs in iteration mode)
docker run -it imagen(se puede poner el -it para que corra de modo iterativo)
To start a container from your newly created image, use the command line directive sudo docker run in combination with the name of the image
Para iniciar un contenedor desde la imagen recién creada usa el comando sudo docker run junto con el nombre de la imagen
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.
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.
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.
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.
The command docker run instructs the Docker daemon to search for and start a container with the name hello-world.
El comando docker run le ordena al daemon de Docker que busque e inicie un contenedor con el nombre hello-world.
You can use this solution in Docker itself by using the - init option of the docker run command.
Puedes utilizar esta solución en Docker mediante la opción - init del comando docker run.
To start a Docker image, use the command docker run according to the following pattern
Para iniciar una imagen de Docker, utiliza el comando docker run con la siguiente estructura base