mirror of
https://github.com/ditkrg/db-backup-s3.git
synced 2026-01-22 22:06:45 +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
|
|
|