mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 00:18:27 +00:00
4 lines
162 B
Bash
Executable file
4 lines
162 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
docker run --rm --network fleet_default mysql:5.7 bash -c 'mysqldump -hmysql -uroot -ptoor fleet | gzip -' > backup.sql.gz
|