Fix backup commands

This commit is contained in:
Varakh 2019-12-19 01:07:00 +01:00
parent 31a808d36a
commit 1c3bc60563

View file

@ -120,7 +120,7 @@ If you're using the provided `docker-compose.yml` file you probably can do somet
```
docker exec filebin_db bash -c "/usr/bin/pg_dumpall -U fb|gzip -c > /filebin_db.sql.gz";
docker cp filebin_db/:/var:/filebin_db.sql.gz /tmp/;
docker cp filebin_db:/filebin_db.sql.gz /tmp/;
docker exec filebin_db bash -c "rm /filebin_db.sql.gz";
```