added docker files

This commit is contained in:
gideonwolfe 2020-08-24 14:58:33 -07:00
parent d2b80fd1eb
commit 2f28ed3063
2 changed files with 15 additions and 0 deletions

BIN
docker/data/Hack.ttf Normal file

Binary file not shown.

View File

@ -0,0 +1,15 @@
version: '3'
services:
StartTree:
image: nginx
volumes:
- $HOME/.cache/wal/colors.css:/usr/share/nginx/html/colors.css # This needs to be changed depending on theme
- ./data/index.html:/usr/share/nginx/html/index.html
- ./data/style.css:/usr/share/nginx/html/style.css
- ./data/Hack.ttf:/usr/share/nginx/html/Hack.ttf
ports:
- "9876:80"
environment:
- NGINX_PORT=80
restart: unless-stopped