Tools, FAQ, Tutorials:
"docker container create image_name" Command
How to create a new container from an image with "docker container create image_name" command?
✍: FYIcenter.com
You can create a new container from an image with "docker container create image_name" command
by giving the image name.
1. Get the image name with the "docker image list" command.
fyicenter$ docker image list | grep hello-world hello-world latest fce289e99eb9 4 months ago 1.84kB
2. Create a new container with the image name.
fyicenter$ docker container create hello-world 9561c6fa283a5933987582405212cbfcc27fa3c1149c687e99e53a963ceebd2d
3. Check for the latest containers.
fyicenter$ docker container list --latest CONTAINER ID IMAGE COMMAND CREATED STATUS NAMES 9561c6fa283a hello-world "/hello" 16 seconds ago Created naughty_chaum
4. Start for the container by its name.
fyicenter$ docker container start naughty_chaum naughty_chaum fyicenter$ docker container list --latest CONTAINER ID IMAGE COMMAND STATUS NAMES 9561c6fa283a hello-world "/hello" Exited (0) 17 seconds ago naughty_chaum
As you can see, we have created a new container and started it on the Docker Engine. The container stopped by itself without any error.
⇒ "docker container create --name" - Name Container
⇐ "docker container create" - Create Container Command
2019-04-06, 1356🔥, 0💬
Popular Posts:
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...
Where Is the Submitted Form Data Stored in PHP? When a user submit a form on your Web server, user e...
How To Protect Special Characters in Query String in PHP? If you want to include special characters ...
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...