mirror of
https://github.com/garraflavatra/docker-volume-s3-backup.git
synced 2025-05-17 13:14:38 +00:00
18 lines
206 B
Bash
18 lines
206 B
Bash
#! /bin/sh
|
|
|
|
# exit if a command fails
|
|
set -e
|
|
|
|
apk update
|
|
|
|
# install pg_dump
|
|
apk add postgresql
|
|
|
|
# install s3 tools
|
|
apk add python py-pip
|
|
pip install awscli
|
|
apk del py-pip
|
|
|
|
# cleanup
|
|
rm -rf /var/cache/apk/*
|