0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-05-16 20:03:51 +02:00
bitwarden_rs/hooks/arches.sh

26 lines
501 B
Bash
Raw Normal View History

2020-06-10 11:01:41 +02:00
# The default Debian-based SQLite images support these arches.
#
# Other images (Alpine-based, or with other database backends) currently
# support only a subset of these.
arches=(
amd64
arm32v6
arm32v7
arm64v8
)
case "${DOCKER_REPO}" in
*-mysql)
arches=(amd64)
;;
*-postgresql)
arches=(amd64)
;;
esac
if [[ "${DOCKER_TAG}" == *alpine ]]; then
# The Alpine build currently only works for amd64.
os_suffix=.alpine
arches=(amd64)
fi