Files
mysql-bkup/docs/how-tos/restore.md
2024-09-30 00:40:35 +02:00

1006 B

title, layout, parent, nav_order
title layout parent nav_order
Restore database default How Tos 5

Restore database

To restore the database, you need to add restore command and specify the file to restore by adding --file store_20231219_022941.sql.gz.

{: .note } It supports .sql and .sql.gz compressed file.

Restore

services:
  mysql-bkup:
    # In production, it is advised to lock your image tag to a proper
    # release version instead of using `latest`.
    # Check https://github.com/jkaninda/mysql-bkup/releases
    # for a list of available releases.
    image: jkaninda/mysql-bkup
    container_name: mysql-bkup
    command: restore -d database -f store_20231219_022941.sql.gz
    volumes:
      - ./backup:/backup
    environment:
      - DB_PORT=3306
      - DB_HOST=mysql
      - DB_NAME=database
      - DB_USERNAME=username
      - DB_PASSWORD=password
    # mysql-bkup container must be connected to the same network with your database
    networks:
      - web
networks:
  web: