https://github.com/l-lin/termgraph-docker
Docker wrapper to https://github.com/mkaz/termgraph
https://github.com/l-lin/termgraph-docker
Last synced: about 2 months ago
JSON representation
Docker wrapper to https://github.com/mkaz/termgraph
- Host: GitHub
- URL: https://github.com/l-lin/termgraph-docker
- Owner: l-lin
- License: mit
- Created: 2023-07-16T10:07:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-16T10:14:22.000Z (almost 2 years ago)
- Last Synced: 2025-01-20T15:17:10.714Z (3 months ago)
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# termgraph
Docker wrapper to use [termgraph](https://github.com/mkaz/termgraph) (because I do not like pip binary distribution).
```bash
$ cat < ex1.dat
# Example Data Set 1
2007,183.32
2008,231.23
2009,16.43
2010,50.21
2011,508.97
2012,212.05
2014,1.0
EOF$ docker run -it --rm \
--volume "$(pwd):/data" \
--user $(id -u):$(id -g) \
ghcr.io/l-lin/termgraph:main \
ex1.dat2007: ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 183.32
2008: ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 231.23
2009: ▇ 16.43
2010: ▇▇▇▇ 50.21
2011: ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 508.97
2012: ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 212.05
2014: ▏ 1.00
```