Skip to content

Docker container allowing you to self-host RawGraphs 1.0 locally. RawGraphs allows you to create beautiful visualizations of your data in various predefined chart templates.

hvalev/rawgraphs-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

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.

About

Docker container allowing you to self-host RawGraphs 1.0 locally. RawGraphs allows you to create beautiful visualizations of your data in various predefined chart templates.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 100.0%