arches.sh 261 B

123456789101112131415
  1. #!/usr/bin/env bash
  2. # The default Debian-based images support these arches for all database backends.
  3. arches=(
  4. amd64
  5. armv6
  6. armv7
  7. arm64
  8. )
  9. export arches
  10. if [[ "${DOCKER_TAG}" == *alpine ]]; then
  11. distro_suffix=.alpine
  12. fi
  13. export distro_suffix