mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
5 lines
118 B
Bash
Executable File
5 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
pushd dev
|
|
docker-compose exec postgres pg_dumpall -c -U lemmy > dump_`date +%Y-%m-%d"_"%H_%M_%S`.sql
|
|
popd
|