Using Multiple Docker Containers to Setup Nginx, Flask and Postgres

1 ยท Haseeb Majid ยท Nov. 19, 2018, midnight
Summary
Terminology Docker Image: Is a file used to execute code in a Docker container, built from a set of instructions. Docker Container: Is a Docker image that is being executed or run. Docker ๐Ÿณ is a relatively new and exciting technology, Docker is a containerisation tool. The main benefits of using Docker is that you can use the same environment for development, testing and production. Since Docker environments are consistent this means if the application works in the testing environment it will al...