mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
5 lines
168 B
Bash
Executable file
5 lines
168 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
docker run --rm -i --network fleet_default mysql:5.7 bash -c 'gzip -kdc - | mysql -hmysql -uroot -ptoor fleet' < backup.sql.gz
|
|
|