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

Instalar Docker-compose en ARM64v8

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute To install Docker Compose on ARM64, you need to install it using pip. sudo pip3 install docker-compose If pip is not installed, you can install it with the following command: sudo apt install python3-pip If you need to install Docker, you can follow this step: https://devcodelight.com/desplegar-servidor-web-apache-con-docker-compose/ DevCodeLightdevcodelight.com

Monitor your website with Uptime Kuma

Monitor your website with Uptime Kuma

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today I bring you a service integrated in a Docker called Uptime Kuma. Uptime Kuma is a powerful web monitor that allows us to know the status of our website. It allows us to configure alerts for when our website goes down or even when the SSL certificate is about to … Read more

Creating a Docker Container for Python

Creating a Docker Container for Python

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today I’m going to show you how to create a Docker container for Python: Creating a Docker container for Python is an easy way to isolate your Python application and its dependencies in a controlled environment. This way, you can run your application anywhere Docker is installed without worrying about environment … Read more

Basic Concepts of Docker

Basic Concepts of Docker

Tiempo de lectura: 3 minutos Reading Time: 2 minutes Hello, today I will talk to you about the basics of Docker. Docker is a container tool that allows us to package applications and their dependencies into a container that can be run on any machine with Docker installed. This enables us to develop and distribute applications more easily and consistently. … Read more

Add SSL (https) using Docker container (cerbot) Let’s Encrypt with Apache or Nginx with your domain or subdomain

Add SSL (https) using Docker container (cerbot) Let’s Encrypt with Apache or Nginx with your domain or subdomain

Tiempo de lectura: 3 minutos Reading time: 3 minutes Continuing with the tutorials on Docker (https://devcodelight.com/category/docker) and building upon the last post Creating a Docker Compose Container with Apache + PHP + MySQL (XAMPP with Docker) We can add a Docker container that allows us to add SSL using Certbot (https://hub.docker.com/r/certbot/certbot/), which is also compatible with Apache or Nginx (independent … Read more

Executing a Command in a Docker Compose Container Using the Ubuntu Console

Executing a Command in a Docker Compose Container Using the Ubuntu Console

Tiempo de lectura: 2 minutos Reading time: 2 minutes Continuing with the Docker tutorials, I will explain how we can execute a command inside a Docker container using the Ubuntu console. If we have this example Docker Compose taken from the tutorial Deploying Apache Web Server with PHP using Docker Compose version: “3” # Indicate the Docker Compose version we … Read more