Using Kubernetes with Docker

Using Kubernetes with Docker

Tiempo de lectura: 3 minutos Reading Time: 2 minutes Here’s a step-by-step tutorial on how to use Kubernetes with Docker. Step 1: Install Docker and Kubernetes The first thing you need to do is install Docker and Kubernetes on your machine. You can download Docker from its official website and follow the installation instructions for your operating system. To install … Read more

How to Add Security to Docker Containers or Docker Compose. Prepare a Secure Environment for Your Apps.

How to Add Security to Docker Containers or Docker Compose. Prepare a Secure Environment for Your Apps.

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Adding security to Docker containers is crucial for protecting data and systems within them. Here is a step-by-step tutorial on how to add security to Docker containers and Docker Compose. Use a secure base image: The first security measure is to use a secure base image. A good practice is to … Read more

Create a Docker Container with Node.js, MongoDB, Adminer, and NGINX Proxy Manager for SSL using Docker Compose.

Create a Docker Container with Node.js, MongoDB, Adminer, and NGINX Proxy Manager for SSL using Docker Compose.

Tiempo de lectura: 3 minutos Reading time: 3 minutes In this tutorial, you will learn how to create a Docker container that includes Node.js, MongoDB, Adminer, and NGINX Proxy Manager for SSL using Docker Compose. Step 1: Create the docker-compose.yml file First, create a new directory on your computer for the project, and then create a docker-compose.yml file in the … Read more

Docker Compose: NGINX PROXY MANAGER + PHPMYADMIN + MYSQL + FASTAPI (with Python) REST Service

Docker Compose: NGINX PROXY MANAGER + PHPMYADMIN + MYSQL + FASTAPI (with Python) REST Service

Tiempo de lectura: 2 minutos Reading time: 3 minutes In this tutorial, we will show you how to create a Docker container with NGINX Proxy Manager, phpMyAdmin, MySQL, and FastAPI (with Python) using Docker Compose. This will allow you to have a complete stack for web development and API in a single container. Prerequisites Before getting started, you will need … Read more

Docker compose: FastAPI with MySQL, along with PHPMyAdmin control panel and Traefik proxy manager

Docker compose: FastAPI with MySQL, along with PHPMyAdmin control panel and Traefik proxy manager

Tiempo de lectura: 2 minutos Reading Time: 4 minutes In this tutorial, I will show you how to use Docker Compose to create a FastAPI application with MySQL, along with PHPMyAdmin and the Traefik proxy manager. Docker Compose is a tool that allows you to define and run multi-container Docker applications. Step 1: Install Docker and Docker Compose To use … Read more

Docker Compose: Create a Python Application with MongoDB

Docker Compose: Create a Python Application with MongoDB

Tiempo de lectura: 2 minutos Reading time: 2 minutes In this tutorial, I will show you how to use Docker Compose to create a Python application with MongoDB. Docker Compose is a tool that allows you to define and run multi-container Docker applications. Step 1: Install Docker and Docker Compose To use Docker Compose, you first need to have Docker … Read more

Docker: Create an Application with Python and MongoDB

Docker: Create an Application with Python and MongoDB

Tiempo de lectura: 2 minutos Reading time: 2 minutes Docker is a software platform that allows developers to create and run applications in containers. Containers are software units that contain everything needed to run an application, including the code, libraries, and dependencies. In this tutorial, I will show you how to use Docker to create a Python application with MongoDB. … Read more

Adding Local Addresses in Nginx Proxy Manager Using Docker Container Domains in Docker Compose

Adding Local Addresses in Nginx Proxy Manager Using Docker Container Domains in Docker Compose

Tiempo de lectura: 2 minutos Reading time: 2 minutes When implementing Nginx Proxy Manager in Docker or Docker Compose, it is important to ensure that it accesses the implemented containers/services using a local address to avoid going through the public network if the connection is not SSL internally. This way, we prevent unencrypted traffic from going outside. The first thing … Read more

SSL Certificates (Let’s Encrypt) in Docker using Nginx Proxy Manager

SSL Certificates (Let’s Encrypt) in Docker using Nginx Proxy Manager

Tiempo de lectura: 3 minutos Reading Time: 3 minutes Today I’m going to show you how to add SSL certificates for HTTPS with Let’s Encrypt (Dovecot) in Docker or Docker Compose using Nginx Proxy Manager. It’s a straightforward process that allows you to add the certificate in a matter of minutes. It also automatically renews without any manual intervention. The … Read more