2020-10-06 18:04:53 +02:00
|
|
|
# The default Debian-based images support these arches for all database connections
|
2020-06-10 11:01:41 +02:00
|
|
|
#
|
2020-10-06 18:04:53 +02:00
|
|
|
# Other images (Alpine-based) currently
|
2020-06-10 11:01:41 +02:00
|
|
|
# support only a subset of these.
|
|
|
|
arches=(
|
|
|
|
amd64
|
|
|
|
arm32v6
|
|
|
|
arm32v7
|
|
|
|
arm64v8
|
|
|
|
)
|
|
|
|
|
|
|
|
if [[ "${DOCKER_TAG}" == *alpine ]]; then
|
|
|
|
# The Alpine build currently only works for amd64.
|
|
|
|
os_suffix=.alpine
|
2020-09-26 22:02:47 +02:00
|
|
|
arches=(
|
|
|
|
amd64
|
|
|
|
arm32v7
|
|
|
|
)
|
2020-06-10 11:01:41 +02:00
|
|
|
fi
|