Rawgraphs in a docker container! You can use this container to run rawgraphs locally and generate beautiful visualizations of your data for your projects. To see some sample visualization of what is possible, you can visit the rawgraphs gallery.
As a docker run command use the following docker run -d -p 8080:4000 --name rawgraphs hvalev/rawgraphs
and then navigate to http://your-ip:8080/
. As a docker-compose script, use the following snippet:
version: "3.8"
services:
rawgraphs:
image: hvalev/rawgraphs:latest
container_name: rawgraphs
ports:
- 8080:4000
restart: always
git clone https://github.com/hvalev/rawgraphs-docker.git/
cd rawgraphs-docker
docker build -t raw-graphs .
docker run -p 8080:4000 raw-graphs
Used a multi-stage build to decrease the size of the final image by a factor of 10! and upgraded it to use python3.
To rawgraphs for making this incredible library and to the original repository.