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

Docker Compose Container with Apache + PHP + MySQL + PHPMyAdmin + Python (XAMP with PHPMyAdmin with Docker)

Docker Compose Container with Apache + PHP + MySQL + PHPMyAdmin + Python (XAMP with PHPMyAdmin with Docker)

Tiempo de lectura: 3 minutos Reading time: 3 minutes Continuing the tutorial series on Creating a Docker Compose Container with Apache + PHP + MySQL (XAMP with Docker), I’m going to show you how to create a Docker Compose file that includes Apache2, PHP, MySQL, Python, and PHPMyAdmin. Remember that you can use this code and containers for your projects, … Read more

Create a Docker Compose Container with Apache + PHP + MySQL (XAMPP with Docker)

Create a Docker Compose Container with Apache + PHP + MySQL (XAMPP with Docker)

Tiempo de lectura: 4 minutos Reading time: 4 minutes Continuing with the series of tutorials on Docker Compose and based on the latest Associating a Docker file to have a customized image (Apache + PHP + Python) within Docker Compose, we are going to create an XAMPP or LAMPP service that includes Apache2, PHP, and MySQL, leveraging Docker containers and … Read more

Associate a Docker file to have a custom image (Apache + PHP + Python) inside Docker Compose

Associate a Docker file to have a custom image (Apache + PHP + Python) inside Docker Compose

Tiempo de lectura: 3 minutos Reading time: 3 minutes Continuing with the post Deploy Apache Web Server with PHP using Docker Compose, we are going to learn how to associate a Dockerfile with a container defined in Docker Compose. A Dockerfile allows us to have a customized image by including commands within a Docker image. This allows us, for example, … Read more