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