Ed25519 ssh keys
| |

Ed25519 ssh keys

What are Ed25519 ssh keys? Ed25519 SSH keys are a type of public-key cryptography used for secure communication over a network. They are based on the Ed25519 elliptic curve algorithm, which is a variant of the elliptic curve algorithm used for digital signatures. The Ed25519 algorithm was designed to be faster and more secure than…

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…

How to install Docker rootless
| |

How to install Docker rootless

Rootless Docker allows you to run Docker containers without requiring root access, improving security and compliance, simplifying management, and enhancing portability. Running Docker as a regular user reduces the risk of security vulnerabilities and enables compliance with policies. Rootless Docker is also easier to integrate into workflows and makes it simpler to move containers between different environments.

Install docker on Ubuntu/Debian
| |

Install docker on Ubuntu/Debian

Docker is a popular platform for creating, deploying, and managing applications in containers. Containers provide a lightweight and portable way to package applications with their dependencies, making it easier to move them between environments and ensuring consistency across different platforms. Docker simplifies the process of building, shipping, and running applications, making it easier to develop, test, and deploy software in a fast and efficient way. It is widely used by developers, IT professionals, and organizations of all sizes to improve the efficiency, scalability, and portability of their applications.