Using docker
What you'll need
- Make sure that you have Docker or Docker compose installed.
Deployment via Docker image
👉 Step #1 - Pull the latest Docker image for PerForge from Docker Hub:
docker pull perforge/perforge-app:latest
👉 Step #2 - Once the image is pulled, you can create a volume and run PerForge using the following Docker command:
docker volume create perforge-data
docker run -d -p 7878:7878 -v perforge-data:/app/app/data perforge/perforge-app:latest
👉 Step #3 - Following this, open your app by browsing to 'your_ip:7878'. Register new user and enjoy!
Deployment via Docker Compose
👉 Step #1 - Firstly, get docker-compose file from our Git repo:
👉 Step #2 - To start PerForge with InfluxDB and Grafana execute the following command:
docker-compose up -d
If you are only interested in running PerForge without including InfluxDB and Grafana, employ the command below:
docker-compose up -d perforge
👉 Step #3 - Following this, open your app by browsing to 'your_ip:7878'. Register new user and enjoy!