mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-10 04:52:40 +01:00
Update web vault to 2.18.0
This commit is contained in:
parent
2b6383d243
commit
580c1bbc7d
@ -44,8 +44,8 @@
|
|||||||
# https://docs.docker.com/develop/develop-images/multistage-build/
|
# https://docs.docker.com/develop/develop-images/multistage-build/
|
||||||
# https://whitfin.io/speeding-up-rust-docker-builds/
|
# https://whitfin.io/speeding-up-rust-docker-builds/
|
||||||
####################### VAULT BUILD IMAGE #######################
|
####################### VAULT BUILD IMAGE #######################
|
||||||
{% set vault_version = "2.17.1" %}
|
{% set vault_version = "2.18.0" %}
|
||||||
{% set vault_image_digest = "sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0" %}
|
{% set vault_image_digest = "sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c" %}
|
||||||
# The web-vault digest specifies a particular web-vault build on Docker Hub.
|
# The web-vault digest specifies a particular web-vault build on Docker Hub.
|
||||||
# Using the digest instead of the tag name provides better security,
|
# Using the digest instead of the tag name provides better security,
|
||||||
# as the digest of an image is immutable, whereas a tag name can later
|
# as the digest of an image is immutable, whereas a tag name can later
|
||||||
|
@ -14,15 +14,15 @@
|
|||||||
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
||||||
# click the tag name to view the digest of the image it currently points to.
|
# click the tag name to view the digest of the image it currently points to.
|
||||||
# - From the command line:
|
# - From the command line:
|
||||||
# $ docker pull bitwardenrs/web-vault:v2.17.1
|
# $ docker pull bitwardenrs/web-vault:v2.18.0
|
||||||
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.17.1
|
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.18.0
|
||||||
# [bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0]
|
# [bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c]
|
||||||
#
|
#
|
||||||
# - Conversely, to get the tag name from the digest:
|
# - Conversely, to get the tag name from the digest:
|
||||||
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0
|
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c
|
||||||
# [bitwardenrs/web-vault:v2.17.1]
|
# [bitwardenrs/web-vault:v2.18.0]
|
||||||
#
|
#
|
||||||
FROM bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0 as vault
|
FROM bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c as vault
|
||||||
|
|
||||||
########################## BUILD IMAGE ##########################
|
########################## BUILD IMAGE ##########################
|
||||||
FROM rust:1.48 as build
|
FROM rust:1.48 as build
|
||||||
|
@ -14,15 +14,15 @@
|
|||||||
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
||||||
# click the tag name to view the digest of the image it currently points to.
|
# click the tag name to view the digest of the image it currently points to.
|
||||||
# - From the command line:
|
# - From the command line:
|
||||||
# $ docker pull bitwardenrs/web-vault:v2.17.1
|
# $ docker pull bitwardenrs/web-vault:v2.18.0
|
||||||
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.17.1
|
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.18.0
|
||||||
# [bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0]
|
# [bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c]
|
||||||
#
|
#
|
||||||
# - Conversely, to get the tag name from the digest:
|
# - Conversely, to get the tag name from the digest:
|
||||||
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0
|
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c
|
||||||
# [bitwardenrs/web-vault:v2.17.1]
|
# [bitwardenrs/web-vault:v2.18.0]
|
||||||
#
|
#
|
||||||
FROM bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0 as vault
|
FROM bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c as vault
|
||||||
|
|
||||||
########################## BUILD IMAGE ##########################
|
########################## BUILD IMAGE ##########################
|
||||||
FROM clux/muslrust:nightly-2020-11-22 as build
|
FROM clux/muslrust:nightly-2020-11-22 as build
|
||||||
|
@ -14,15 +14,15 @@
|
|||||||
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
||||||
# click the tag name to view the digest of the image it currently points to.
|
# click the tag name to view the digest of the image it currently points to.
|
||||||
# - From the command line:
|
# - From the command line:
|
||||||
# $ docker pull bitwardenrs/web-vault:v2.17.1
|
# $ docker pull bitwardenrs/web-vault:v2.18.0
|
||||||
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.17.1
|
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.18.0
|
||||||
# [bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0]
|
# [bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c]
|
||||||
#
|
#
|
||||||
# - Conversely, to get the tag name from the digest:
|
# - Conversely, to get the tag name from the digest:
|
||||||
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0
|
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c
|
||||||
# [bitwardenrs/web-vault:v2.17.1]
|
# [bitwardenrs/web-vault:v2.18.0]
|
||||||
#
|
#
|
||||||
FROM bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0 as vault
|
FROM bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c as vault
|
||||||
|
|
||||||
########################## BUILD IMAGE ##########################
|
########################## BUILD IMAGE ##########################
|
||||||
FROM rust:1.48 as build
|
FROM rust:1.48 as build
|
||||||
|
@ -14,15 +14,15 @@
|
|||||||
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
||||||
# click the tag name to view the digest of the image it currently points to.
|
# click the tag name to view the digest of the image it currently points to.
|
||||||
# - From the command line:
|
# - From the command line:
|
||||||
# $ docker pull bitwardenrs/web-vault:v2.17.1
|
# $ docker pull bitwardenrs/web-vault:v2.18.0
|
||||||
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.17.1
|
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.18.0
|
||||||
# [bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0]
|
# [bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c]
|
||||||
#
|
#
|
||||||
# - Conversely, to get the tag name from the digest:
|
# - Conversely, to get the tag name from the digest:
|
||||||
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0
|
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c
|
||||||
# [bitwardenrs/web-vault:v2.17.1]
|
# [bitwardenrs/web-vault:v2.18.0]
|
||||||
#
|
#
|
||||||
FROM bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0 as vault
|
FROM bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c as vault
|
||||||
|
|
||||||
########################## BUILD IMAGE ##########################
|
########################## BUILD IMAGE ##########################
|
||||||
FROM rust:1.48 as build
|
FROM rust:1.48 as build
|
||||||
|
@ -14,15 +14,15 @@
|
|||||||
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
||||||
# click the tag name to view the digest of the image it currently points to.
|
# click the tag name to view the digest of the image it currently points to.
|
||||||
# - From the command line:
|
# - From the command line:
|
||||||
# $ docker pull bitwardenrs/web-vault:v2.17.1
|
# $ docker pull bitwardenrs/web-vault:v2.18.0
|
||||||
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.17.1
|
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.18.0
|
||||||
# [bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0]
|
# [bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c]
|
||||||
#
|
#
|
||||||
# - Conversely, to get the tag name from the digest:
|
# - Conversely, to get the tag name from the digest:
|
||||||
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0
|
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c
|
||||||
# [bitwardenrs/web-vault:v2.17.1]
|
# [bitwardenrs/web-vault:v2.18.0]
|
||||||
#
|
#
|
||||||
FROM bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0 as vault
|
FROM bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c as vault
|
||||||
|
|
||||||
########################## BUILD IMAGE ##########################
|
########################## BUILD IMAGE ##########################
|
||||||
FROM rust:1.48 as build
|
FROM rust:1.48 as build
|
||||||
|
@ -14,15 +14,15 @@
|
|||||||
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
||||||
# click the tag name to view the digest of the image it currently points to.
|
# click the tag name to view the digest of the image it currently points to.
|
||||||
# - From the command line:
|
# - From the command line:
|
||||||
# $ docker pull bitwardenrs/web-vault:v2.17.1
|
# $ docker pull bitwardenrs/web-vault:v2.18.0
|
||||||
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.17.1
|
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.18.0
|
||||||
# [bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0]
|
# [bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c]
|
||||||
#
|
#
|
||||||
# - Conversely, to get the tag name from the digest:
|
# - Conversely, to get the tag name from the digest:
|
||||||
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0
|
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c
|
||||||
# [bitwardenrs/web-vault:v2.17.1]
|
# [bitwardenrs/web-vault:v2.18.0]
|
||||||
#
|
#
|
||||||
FROM bitwardenrs/web-vault@sha256:dcb7884dc5845b3842ff2204fe77482000b771495c6c359297ec3c03330d65e0 as vault
|
FROM bitwardenrs/web-vault@sha256:b4454a3525ee6928ea85074f5e126858954c08b8cd7794150393ba83a6dd502c as vault
|
||||||
|
|
||||||
########################## BUILD IMAGE ##########################
|
########################## BUILD IMAGE ##########################
|
||||||
FROM messense/rust-musl-cross:armv7-musleabihf as build
|
FROM messense/rust-musl-cross:armv7-musleabihf as build
|
||||||
|
Loading…
Reference in New Issue
Block a user