vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 434551e012f9f01fe279069eba1ff115651a7c8a
parent 69dcbdd3b26ba14d9d4327e75e2e3b97f2f2b7aa
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Tue,  4 Sep 2018 21:18:16 +0200

Merge pull request #171 from shauder/ws

Expose 3012 in docker build file for notifications
Diffstat:
MDockerfile | 1+
MDockerfile.alpine | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/Dockerfile b/Dockerfile @@ -76,6 +76,7 @@ RUN apt-get update && apt-get install -y\ RUN mkdir /data VOLUME /data EXPOSE 80 +EXPOSE 3012 # Copies the files from the context (env file and web-vault) # and the binary from the "build" stage to the current stage diff --git a/Dockerfile.alpine b/Dockerfile.alpine @@ -68,6 +68,7 @@ RUN apk add \ RUN mkdir /data VOLUME /data EXPOSE 80 +EXPOSE 3012 # Copies the files from the context (env file and web-vault) # and the binary from the "build" stage to the current stage