0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2025-01-20 19:31:56 +01:00
bitwarden_rs/hooks/arches.sh

17 lines
322 B
Bash
Raw Normal View History

# The default Debian-based images support these arches for all database backends.
2020-06-10 02:01:41 -07:00
arches=(
amd64
armv6
armv7
arm64
2020-06-10 02:01:41 -07:00
)
if [[ "${DOCKER_TAG}" == *alpine ]]; then
# The Alpine image build currently only works for certain arches.
distro_suffix=.alpine
2020-09-26 14:02:47 -06:00
arches=(
amd64
armv7
2020-09-26 14:02:47 -06:00
)
2020-06-10 02:01:41 -07:00
fi