add vault and mongo db with postgres in comments

This commit is contained in:
iamBadgers
2025-06-06 18:07:24 -07:00
parent 273cbf1558
commit 02007ffc94
11 changed files with 7851 additions and 3 deletions

15
vault/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:22.16
WORKDIR /srv/vault
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
EXPOSE 8080
CMD ["node", "./dist/app.js"]