Home

Awesome

topolograph-docker

Quickstart

Install Docker Desktop for Windows/Mac To get Topolograph Docker up and running run the following commands.

git clone https://github.com/Vadims06/topolograph-docker.git
cd topolograph-docker
docker-compose pull
docker-compose up -d

The Topolograph site will be available after a few minutes. Open the URL http://localhost:8080/ in a web-browser.

Variables

The application's variables are grouped in .env file

TOPOLOGRAPH_PORT=8099 <-- whatever you want, and then open the URL http://localhost:8099/ after re-runing docker-compose up -d

Default credentials

In order to create the user with password from .env file and add your networks in allow list (authorised networks) from TOPOLOGRAPH_WEB_API_AUTHORISED_NETWORKS variable - run this request

#python3
import requests
res = requests.post('http://localhost:8088/create-default-credentials')
res.json()
{'errors': '', 'status': 'ok'}

To test that it works - Open http://localhost:8080/ in a web-browser, go to Login/Local login, use TOPOLOGRAPH_WEB_API_USERNAME_EMAIL and TOPOLOGRAPH_WEB_API_PASSWORD to login. API/Authorised source IP ranges Tab should list your IP ranges.

About

You can find more info about Topolograph here: https://github.com/Vadims06/topolograph