Docker container that powers the high scores page at nethack.jerryaldrichiii.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Jerry Aldrich 54f77dbb04 Fix TestParseDungeon 3 years ago
pkg/logparser Fix TestParseDungeon 3 years ago
templates Initial commit 5 years ago
Dockerfile Initial commit 5 years ago
README.md Initial commit 5 years ago
go.mod Initial commit 5 years ago
main.go Initial commit 5 years ago

README.md

NetHack High Scores

This is simple go app that renders NetHack high scores and serves them via a Golang based web server.

You can view it live at nethack.jerryaldrichiii.com

Running

Locally:

go run main.go /path/to/nethack/logfile

Docker:

docker build . -t yourorigin/nethack-high-scores:latest

docker run -it --rm \
           -v /path/to/nethack/logfile:/nethack/logfile \
           -p 8080:8080 \
           yourorigin/nethack-high-scores:latest