Studying docker
1Dockerize BOTH apps - the Python and the Node app.
2
31) Create appropriate images for both apps (two separate images!).
4HINT: Have a brief look at the app code to configure your images correctly!
5
62) Launch a container for each created image, making sure,
7that the app inside the container works correctly and is usable.
8
93) Re-create both containers and assign names to both containers.
10Use these names to stop and restart both containers.
11
124) Clean up (remove) all stopped (and running) containers,
13clean up all created images.
14
155) Re-build the images - this time with names and tags assigned to them.
16
176) Run new containers based on the re-built images, ensuring that the containers
18are removed automatically when stopped.