sudo apt update && sudo apt install docker
sudo pacman -Sy docker
Visit: https://docs.docker.com/engine/install/
docker pull alexminor/parrot-dev:latest
git clone https://github.com/AlexMinor/parrot-dev.git
cd parrot-dev
docker build --tag parrot-dev .
Important: All Files saved in the docker container will get deleted everytime the container recreates, so create a volume to save your stuff in!
cd <where-you-want> && mkdir <name>
cd <name> && pwd
# put this path in the next command
docker run -it --name parrot-dev -v <path>:/home/parrot/ --net=host --privileged -e "TERM=xterm-256color" --add-host 'parrot-dev:127.0.1.1' --add-host 'anafi-ai.local:192.168.42.1' -h parrot-dev --user parrot parrot-dev:latest /bin/zsh
docker start parrot-dev
docker exex --user parrot -it parrot-dev /bin/zsh