-
Docker Multiple Containers
Once you learn how to get a container up and running in Docker, you can then move on to running and managing multiple containers in the same docker engine for your environment. Much like anything else, practicing setting up containers, interacting with them, and tearing them down once done will get you comfortable with the […]
-
How To Run MongoDB In A Docker Container
MongoDB is a document-based NoSQL database that is good for high volume data storage. Rather than using tables and rows like traditional relational databases, MongoDB makes use of Collections and Documents. The documents consist of key-value pairs which are the basic unit of data in MongoDB. In this tutorial, we’ll use Docker to launch a […]
-
How To Run Nginx Using Docker
NGINX is a popular open-source software used for web serving, reverse proxying, caching, load balancing, media streaming, and more. It can also function as a proxy server for email (IMAP, POP3, and SMTP) and a reverse proxy and load balancer for HTTP, TCP, and UDP servers. Nginx is quite popular and used on many high […]
-
Docker Quick Tutorial
Docker is a collection of platform as a service (PaaS) products that use operating-system-level virtualization to deliver software in packages called containers. Containers are fully isolated from each other and are a standard unit of software that packages up code and all of its dependencies so the application runs quickly and reliably from one computing […]