Updated web vault to 2023.1.1 and rust dependencies

This commit is contained in:
Daniel García
2023-01-24 20:39:09 +01:00
parent 4fab4c74ff
commit 50fc22966c
19 changed files with 185 additions and 178 deletions

161
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -66,14 +66,14 @@ dashmap = "5.4.0"
# Async futures
futures = "0.3.25"
tokio = { version = "1.24.1", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal"] }
tokio = { version = "1.24.2", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal"] }
# A generic serialization/deserialization framework
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
# A safe, extensible ORM and Query builder
diesel = { version = "2.0.2", features = ["chrono", "r2d2"] }
diesel = { version = "2.0.3", features = ["chrono", "r2d2"] }
diesel_migrations = "2.0.0"
diesel_logger = { version = "0.2.0", optional = true }
@ -122,7 +122,7 @@ email_address = "0.2.4"
handlebars = { version = "4.3.6", features = ["dir_source"] }
# HTTP client
reqwest = { version = "0.11.13", features = ["stream", "json", "gzip", "brotli", "socks", "cookies", "trust-dns"] }
reqwest = { version = "0.11.14", features = ["stream", "json", "gzip", "brotli", "socks", "cookies", "trust-dns"] }
# For favicon extraction from main website
html5gum = "0.5.2"

View File

@ -59,8 +59,8 @@
# https://docs.docker.com/develop/develop-images/multistage-build/
# https://whitfin.io/speeding-up-rust-docker-builds/
####################### VAULT BUILD IMAGE #######################
{% set vault_version = "v2023.1.0" %}
{% set vault_image_digest = "sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f" %}
{% set vault_version = "v2023.1.1" %}
{% set vault_image_digest = "sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a" %}
# The web-vault digest specifies a particular web-vault build on Docker Hub.
# 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

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM rust:1.66-bullseye as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM blackdex/rust-musl:x86_64-musl-stable-1.66.1 as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM rust:1.66-bullseye as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM blackdex/rust-musl:x86_64-musl-stable-1.66.1 as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM rust:1.66-bullseye as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM blackdex/rust-musl:aarch64-musl-stable-1.66.1 as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM rust:1.66-bullseye as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM blackdex/rust-musl:aarch64-musl-stable-1.66.1 as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM rust:1.66-bullseye as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM blackdex/rust-musl:arm-musleabi-stable-1.66.1 as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM rust:1.66-bullseye as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM blackdex/rust-musl:arm-musleabi-stable-1.66.1 as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM rust:1.66-bullseye as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM blackdex/rust-musl:armv7-musleabihf-stable-1.66.1 as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM rust:1.66-bullseye as build

View File

@ -16,15 +16,15 @@
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
# click the tag name to view the digest of the image it currently points to.
# - From the command line:
# $ docker pull vaultwarden/web-vault:v2023.1.0
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.0
# [vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f]
# $ docker pull vaultwarden/web-vault:v2023.1.1
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2023.1.1
# [vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a]
#
# - Conversely, to get the tag name from the digest:
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f
# [vaultwarden/web-vault:v2023.1.0]
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a
# [vaultwarden/web-vault:v2023.1.1]
#
FROM vaultwarden/web-vault@sha256:c95973cf3b8bf3dee2d751a9ccd5a8dbde5442ae52b38824b660bc2e8538df4f as vault
FROM vaultwarden/web-vault@sha256:d5f71fb05c4b87935bf51d84140db0f8716cabfe2974fbee6c0c5ee8cf7dab5a as vault
########################## BUILD IMAGE ##########################
FROM blackdex/rust-musl:armv7-musleabihf-stable-1.66.1 as build