Docker Run - Accessing Containers
This is the interesting part! Here, we will run the containers from pulled images.
We'll cover the following...
Till now, we have only created one container: hello world. Now, we are going to run the containers which can provide the same environment as the host machine or one the application needs. Also, the environment will never change.
Docker Run
If you haven’t pulled the Python image in the last chapter, pull it now using $sudo docker pull python:3.5
.
Python is a general-purpose programming language. It is very simple and self-explanatory. We chose Python for demo purposes because any newbie ...