Skip to content

alexmnr/parrot-dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Installation

1. Install docker

On debian-based systems (Ubuntu,...):

sudo apt update && sudo apt install docker

On arch-based systems:

sudo pacman -Sy docker

On everything else:

Visit: https://docs.docker.com/engine/install/

2. Get Image

From docker-hub (recomended):

docker pull alexminor/parrot-dev:latest

Build yourself(might take a long time):

git clone https://github.com/AlexMinor/parrot-dev.git
cd parrot-dev
docker build --tag parrot-dev .

3. Start the container for the first time

Important: All Files saved in the docker container will get deleted everytime the container recreates, so create a volume to save your stuff in!

Create folder to save work

cd <where-you-want> && mkdir <name>
cd <name> && pwd
# put this path in the next command

Start container

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

4. To open the container after this

docker start parrot-dev
docker exex --user parrot -it parrot-dev /bin/zsh

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published