-
๐ณ Docker Compose
I use ๐ฎ OrbStack.
-
๐ Clone this Repository
git clone https://github.com/5ouma/homelab.git
-
๐๏ธ Copy the
.env.tmpl
file to.env
and Edit itName Value AWS_ACCESS_KEY_ID
Cloudflare R2 Access Key ID AWS_SECRET_ACCESS_KEY
Cloudflare R2 Secret Access Key AWS_ENDPOINT
Cloudflare R2 Endpoint Domain -
๐ Follow the instructions below
-
๐๏ธ Decrypt the Data
# Your database password gpg -o ./backup.tar.gz -d /path/to/backup.tar.gz.gpg tar -xzf ./backup.tar.gz
-
๐ Copy the Database
docker compose create docker compose start database docker compose cp ./backup/service.sql database:/tmp/backup.sql docker compose exec database bash -c 'psql -d "$POSTGRES_DB" -U "$POSTGRES_USER" -f /tmp/backup.sql'