17 lines
531 B
Bash
17 lines
531 B
Bash
#!/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
|
|
touch $postgres_dump_file
|
|
chmod -R 660 $sql_dump_dir
|
|
chown -R root:root $sql_dump_dir
|
|
|
|
say "Photoprism: Importing media..."
|
|
podman exec -it photoprism 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
|