├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md └── remote-backup ├── Dockerfile ├── config.json └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | local_build.sh 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overkill32/hassio-remote-backup/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overkill32/hassio-remote-backup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overkill32/hassio-remote-backup/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overkill32/hassio-remote-backup/HEAD/README.md -------------------------------------------------------------------------------- /remote-backup/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overkill32/hassio-remote-backup/HEAD/remote-backup/Dockerfile -------------------------------------------------------------------------------- /remote-backup/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overkill32/hassio-remote-backup/HEAD/remote-backup/config.json -------------------------------------------------------------------------------- /remote-backup/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overkill32/hassio-remote-backup/HEAD/remote-backup/run.sh --------------------------------------------------------------------------------