initial commit

This commit is contained in:
D. Scott Boggs 2023-10-05 06:15:44 -04:00
commit 876af2ffaf
6 changed files with 125 additions and 0 deletions

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM node
WORKDIR /project
ADD index.html index.js /project/
LABEL traefik.enable=true
LABEL traefik.http.routers.tws_links.rule=Host(`techwork.zone`)
LABEL traefik.http.routers.tws_links.tls.certresolver=letsencrypt
CMD [ "node", "index.js" ]