mirror of
https://github.com/LemmyNet/lemmy.git
synced 2026-04-24 09:19:51 -05: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
|