Code Monkey home page Code Monkey logo

docker-mysql-backup's Introduction

docker-mysql-backup

This compose file uses databack/mysql-backup to create preiodically backups from mysql service.

I keep all the environment variables in an .env file like example.env. It's well commented and gives the feeling of a config file.

---
version: '3.1'

services:

  db-backup:
    image: databack/mysql-backup
    container_name: app_db_backup
    env_file:
      - ./example.env
    environment:
      DB_PASS_FILE: /run/secrets/database_password
    secrets:
      - database_password
    volumes:
      - ./backup/database/:/backup
    depends_on:
      - db

Note

The ./backup/database/ path should be owned by user 1005, otherwise the container is not able to copy the files to the backup target.

You can create a user and change the ownership of the directory:

$ sudo useradd --uid 1005 backup_user
$ sudo chown backup_user: ./backup/database/

docker-mysql-backup's People

Contributors

ravexina avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.