├── .gitignore ├── Dockerfile ├── LICENCE.md ├── README.md ├── backup.sh ├── common.sh ├── entrypoint.sh └── restore.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennetimo/ghost-backup/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennetimo/ghost-backup/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennetimo/ghost-backup/HEAD/README.md -------------------------------------------------------------------------------- /backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennetimo/ghost-backup/HEAD/backup.sh -------------------------------------------------------------------------------- /common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennetimo/ghost-backup/HEAD/common.sh -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennetimo/ghost-backup/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennetimo/ghost-backup/HEAD/restore.sh --------------------------------------------------------------------------------