Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.42 KB

README.md

File metadata and controls

33 lines (28 loc) · 1.42 KB

Rawgraphs for docker

build Docker Pulls Docker Image Size (latest by date)

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.

How to run this

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

Build it yourself

git clone https://github.com/hvalev/rawgraphs-docker.git/
cd rawgraphs-docker
docker build -t raw-graphs .
docker run -p 8080:4000 raw-graphs

Improvements

Used a multi-stage build to decrease the size of the final image by a factor of 10! and upgraded it to use python3.

Aknowledgements

To rawgraphs for making this incredible library and to the original repository.