WordPress on PHP-FPM & Caddy in Docker
|

WordPress on PHP-FPM & Caddy in Docker

WordPress is a popular content management system (CMS) used to create and manage websites. It allows users to easily create and publish content using a user-friendly interface. Running WordPress in a Docker container allows for easier management, scalability, and portability of the WordPress installation. It provides a consistent environment for running WordPress, simplifies deployment, and allows for easy testing and experimentation with different configurations.

Docker Compose useful commands
|

Docker Compose useful commands

Docker Compose is a tool for defining and running multi-container Docker applications. It allows you to define the services, networks, and volumes required for your application in a single YAML file, making it easy to spin up and manage complex applications with multiple containers. Using Docker Compose, you can start and stop multiple containers with a single command, and easily scale your application up or down as needed. It simplifies the process of setting up and managing a multi-container application, making it a popular tool for development and testing environments.

How to install NextCloud via Docker
|

How to install NextCloud via Docker

Nextcloud is an open-source platform for file-sharing and collaboration services. It provides a self-hosted and secure environment for managing files, calendars, contacts, tasks, and collaborating on documents. With Nextcloud, users can have control over their data and avoid relying on third-party cloud services. It offers strong security and privacy features, such as end-to-end encryption and two-factor authentication. Nextcloud is highly customizable with plugins and integrations and can be used for personal or enterprise-level collaboration.

Install a php script in PHP-FPM & Caddy via Docker
| | |

Install a php script in PHP-FPM & Caddy via Docker

Install docker Either regular docker install or rootless. Create a new directory Create a new directory where you will store your Docker Compose file and PHP/html etc files. For example, you can create a directory called “phpapp” in your home directory: write a docker compose file paste the below code in a new file called…