This guide will walk you through the steps to try out Operately on your local machine.
Running Operately locally is a great way to get a feel for the application and explore its features. For a production installation, see the Single Host Installation guide.
Operately is a set of Docker containers orchestrated by Docker Compose. To install Docker and Docker Compose, follow the instructions for your operating system:
First, create a directory for Operately and navigate to it:
mkdir ~/operately
cd ~/operatelyNext, download the latest release of Operately:
curl -L https://github.com/opera/operately/releases/latest/download/operately.tar.gz
tar -xvf operately.tar.gzOperately uses environment variables to configure the application. Edit the operately.env and
fill in the required values:
OPERATELY_HOST="localhost:4000"Start Operately with Docker Compose:
docker-compose up -dOperately should now be running on your local machine. You can access it by navigating to
http://localhost:4000.