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 422f7ccfa825509f7e80fc8c58b96ac2807ca27b
parent d8e5e532737b5245254b28e31bb61cc9f7e8562e
Author: Shane A. Faulkner <contact@shanefaulkner.com>
Date:   Tue,  4 Sep 2018 10:22:17 -0500

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