How to Install Docker Desktop on Kali Linux  [draft]

Prerequisites Check the requirements for installing Docker Desktop before you can proceed. 1. Update your system packages sudo apt update 2. Install required packages sudo apt -y install apt-transport-https ca-certificates curl software-properties-common 3. Download Docker GPG Key curl -fsSL https://download.docker.com/linux/debian/gpg | \ sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/docker-archive-keyring.gpg 4. Add Docker Repository echo \ "deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable" | \ sudo tee /etc/apt/sources.list.d/docker.list 5. Update your system packages again sudo apt update 6....

November 6, 2023 · Marcin M

How to Install Mariadb + Phpmyadmin With Docker-Compose  [draft]

How to install mariadb + phpmyadmin with docker-compose Running web applications, such as Django , requires the use of a database management system. While many Django tutorials recommend using PostgreSQL , I have found that using the combination of MariaDB and phpMyAdmin is very user-friendly for managing your database. Although there are many tutorials available, some of them are outdated. Therefore, I have put together a quick guide to help you get started....

March 24, 2023 · Marcin M