gitextract_2c29ts7k/ ├── .travis.yml ├── README.md ├── aria2/ │ ├── Dockerfile │ ├── README.md │ ├── config.json │ └── run.sh ├── armhf-grafana-debian/ │ ├── README.md │ └── config_deactivated.json ├── base_debian/ │ ├── Dockerfile │ ├── build.json │ ├── config.json │ ├── qemu-aarch64-static │ └── qemu-arm-static ├── build.sh ├── caddy_proxy/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ ├── mustache.py │ ├── run.sh │ └── vhost.mustache ├── calibreweb/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ └── run.sh ├── calibreweb_comics/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ └── run.sh ├── certbot/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ └── run.sh ├── create_all.sh ├── create_hassio_addon.sh ├── grafana/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ ├── qemu-arm-static │ └── run_addon.sh ├── influxdb/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ ├── influxdb.conf │ ├── qemu-aarch64-static │ ├── qemu-arm-static │ └── run.sh ├── kanboard/ │ ├── Dockerfile │ ├── config.json │ └── run.sh ├── mopidy/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ ├── mopidy.conf │ └── run.sh ├── mopidy_alpine/ │ └── config.json ├── mopidy_cast/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ ├── mopidy_cast.conf │ └── run.sh ├── nextcloud/ │ ├── Dockerfile │ ├── build.json │ ├── config.json │ ├── qemu-aarch64-static │ ├── qemu-arm-static │ └── run_addon.sh ├── nginx_proxy/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── commons.conf │ ├── config.json │ ├── mustache.py │ ├── run.sh │ └── vhost.mustache ├── owserver/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ ├── owfs.conf │ └── run.sh ├── passbolt/ │ ├── Dockerfile │ ├── LICENSE │ ├── bin/ │ │ └── docker-entrypoint.sh │ ├── conf/ │ │ └── passbolt.conf │ └── config.json ├── python_exec/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ └── run.sh ├── repository.json ├── snapcastclient/ │ ├── Dockerfile │ ├── README.md │ ├── build.json │ ├── config.json │ └── run.sh ├── snapcastserver/ │ ├── Dockerfile │ ├── config.json │ └── run.sh └── syncthing/ ├── Dockerfile ├── README.md ├── config.json └── run.sh