2020-05-10 04:21:41 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pg_dump --column-inserts \
|
|
|
|
--data-only \
|
2020-05-15 04:49:45 +00:00
|
|
|
--file "backup_20200515" \
|
2020-05-10 04:21:41 +00:00
|
|
|
--host "$PG_ETATLIBRE_IP" \
|
|
|
|
--port "5432" \
|
|
|
|
--username "etatdulibre" \
|
|
|
|
--blobs "etatdulibre"
|