💿 Prerequisites
Whether you have purchased a self-hosted licence, or whether you'd like to install a trial version of Retrospected locally, you will need to have the following prerequisites before doing the actual installation.
Docker
Only basic knowledge of the Linux command line and Docker is necessary to follow the instructions below.
Docker
In order to run Retrospected, you will need to install both Docker and Docker Compose on your system.
Use Linux!
In order to install Docker on Linux (Ubuntu / Debian / Mint), please run the following commands:
sudo apt-get update
sudo apt-get install docker.io
sudo apt-get install docker-compose
You also might want to create a docker group to allow Docker to run without sudo:
sudo groupadd docker
sudo usermod -aG docker $USER