adding dockerfiles and compose file

This commit is contained in:
lza_menace
2020-09-28 23:16:26 -07:00
parent 43df09e3a6
commit b7c328369b
8 changed files with 654 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
FROM node:8
WORKDIR /opt/monerod_exporter
RUN git clone https://github.com/lalanza808/monerod_exporter.git --branch=docker --depth=1 .
RUN npm install
EXPOSE 8080
ENTRYPOINT ["node", "index.js"]