14 lines
439 B
Plaintext
14 lines
439 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
$sql_dump_dir="/srv/store/common/sql"
|
||
|
$postgres_dump_file="/srv/common/sql/postgres_$(host).sql"
|
||
|
$postgres_password="5H4bsfAVXGFQFYfpPzDtcYpUXB8vjQUT"
|
||
|
|
||
|
mkdir -p $sql_dump_dir
|
||
|
|
||
|
say "Photoprism: Importing media..."
|
||
|
podman exec -it photoprism import
|
||
|
|
||
|
say "Postgres: Dumping database to '$postgres_dump_file'..."
|
||
|
podman exec -i -e PGPASSWORD=$postgres_password postgres /usr/local/bin/pg_dumpall -U postgres > $postgres_dump_file
|