登录 注册
当前位置:主页 > 资源下载 > 21 > 使用pg-dump工具创建postgres数据库的备份快照

使用pg-dump工具创建postgres数据库的备份快照

  • 更新:2024-11-15 13:30:50
  • 大小:6KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

运行生成一个备份 ... steps : - uses : actions/checkout@v2 - name : Postgres Dump Backup uses : tj-actions/pg-dump@v1 with : database_url : " postgres://test_user:test_user_password@localhost:5432/testdb " path : " backups/backup.sql " options : " -O " 笔记: :warning: 确保备份输出文件已经存在。 例子 steps : - uses : actions/checkout@v2 - name : Cr