mirror of
https://github.com/garraflavatra/docker-volume-s3-backup.git
synced 2025-05-17 13:14:38 +00:00
13 lines
237 B
Bash
Executable File
13 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
source ./hooks/versions.sh
|
|
|
|
for pg_version in ${!VERSIONS[@]}; do
|
|
docker build \
|
|
--build-arg "ALPINE_VERSION=${VERSIONS[$pg_version]}" \
|
|
--tag "postgres-backup-s3:$pg_version" \
|
|
.
|
|
done
|
|
|