diff options
author | Calvin Li <[email protected]> | 2024-07-10 12:40:29 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-07-10 18:40:29 +0200 |
commit | 6fedfceaa9d43f14a4c65695a42b42b095659b42 (patch) | |
tree | 760c6a1454b5afc7f63762b700fe3f5e5dc83851 /docker | |
parent | 8e8483481f61e0054bfad1670749d44345bf879e (diff) | |
download | vaultwarden-6fedfceaa9d43f14a4c65695a42b42b095659b42.tar.gz vaultwarden-6fedfceaa9d43f14a4c65695a42b42b095659b42.zip |
chore: Dockerfile to Remove port 3012 (#4725)
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile.alpine | 1 | ||||
-rw-r--r-- | docker/Dockerfile.debian | 1 | ||||
-rw-r--r-- | docker/Dockerfile.j2 | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/docker/Dockerfile.alpine b/docker/Dockerfile.alpine index e4a392f8..62381478 100644 --- a/docker/Dockerfile.alpine +++ b/docker/Dockerfile.alpine @@ -142,7 +142,6 @@ RUN mkdir /data && \ VOLUME /data EXPOSE 80 -EXPOSE 3012 # Copies the files from the context (Rocket.toml file and web-vault) # and the binary from the "build" stage to the current stage diff --git a/docker/Dockerfile.debian b/docker/Dockerfile.debian index 84ae6ff7..333b8e2a 100644 --- a/docker/Dockerfile.debian +++ b/docker/Dockerfile.debian @@ -185,7 +185,6 @@ RUN mkdir /data && \ VOLUME /data EXPOSE 80 -EXPOSE 3012 # Copies the files from the context (Rocket.toml file and web-vault) # and the binary from the "build" stage to the current stage diff --git a/docker/Dockerfile.j2 b/docker/Dockerfile.j2 index d71b4ccc..30c10c50 100644 --- a/docker/Dockerfile.j2 +++ b/docker/Dockerfile.j2 @@ -229,7 +229,6 @@ RUN mkdir /data && \ VOLUME /data EXPOSE 80 -EXPOSE 3012 # Copies the files from the context (Rocket.toml file and web-vault) # and the binary from the "build" stage to the current stage |