gitextract_paekjaim/ ├── .flake8 ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── app-request.yaml │ │ ├── bug-report.yaml │ │ └── enhancement-request.yaml │ ├── PULL_REQUEST_TEMPLATE/ │ │ └── app_addition.md │ ├── copilot-instructions.md │ ├── pull_request_template.md │ ├── renovate-config.js │ ├── renovate.json │ ├── scripts/ │ │ ├── changed_apps.py │ │ ├── ci.py │ │ ├── generate_metadata.py │ │ ├── message.py │ │ ├── port_validation.py │ │ └── renovate_bump.sh │ └── workflows/ │ ├── app-test-suite.yaml │ ├── dev_apps_validate.yml │ ├── library-tests.yaml │ ├── python-lint.yaml │ ├── renovate.yaml │ └── update_catalog.yaml ├── .gitignore ├── CONTRIBUTIONS.md ├── LICENSE ├── README.md ├── catalog.json ├── cspell.config.yaml ├── devbox.json ├── features_capability.json ├── ix-dev/ │ ├── community/ │ │ ├── actual-budget/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── hostnet-values.yaml │ │ │ └── https-values.yaml │ │ ├── adguard-home/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── dhcp-values.yaml │ │ ├── adventurelog/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── set_default_postgis_image │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── affine/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── aiostreams/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── anki-sync-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── rename_web_port │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── anything-llm/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── arcane/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── archisteamfarm/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── arti/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.py.jinja │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── audiobookshelf/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── remove_host_net │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── authelia/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── authentik/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── enable_deprecated_media │ │ │ │ ├── remove_deprecated_media │ │ │ │ └── remove_redis │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── autobrr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── automatic-ripping-machine/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── autoxpose/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── backrest/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── baserow/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── bazarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── bentopdf/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── beszel-hub/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── bichon/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── bitcoind/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── remove_max_orphan_txs │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.py.jinja │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── bitcoind-knots/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.py.jinja │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── bitmagnet/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── blinko/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── bookshelf/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── softcover-values.yaml │ │ ├── bookstack/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── borgwarehouse/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── boxarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── briefkasten/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── extra-values.yaml │ │ ├── byparr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── calibre/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── calibre-web/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── castopod/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── 2fa-values.yaml │ │ │ ├── basic-values.yaml │ │ │ └── redirect-values.yaml │ │ ├── change-detection/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── channels-dvr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── fix_run_as │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── nvidia-values.yaml │ │ ├── chatwoot/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── ce-values.yaml │ │ ├── chia/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── init.sh │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── farmer-values.yaml │ │ ├── clamav/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── milterd-values.yaml │ │ │ ├── no-clamd-values.yaml │ │ │ └── no-freshclamd-values.yaml │ │ ├── cleanuparr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── cloudbeaver/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── cloudflared/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── remove_proxy_mode │ │ │ │ └── remove_tunnel_dns_field │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── cloudreve/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── fts-values.yaml │ │ ├── cockpit-ws/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── code-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── set_deprecated_volumes │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── concourse/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── keys.sh │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── continuwuity/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── no-federation-values.yaml │ │ ├── convertx/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── coolify/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── copyparty/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── dj-values.yaml │ │ │ ├── https-values.yaml │ │ │ ├── im-values.yaml │ │ │ ├── iv-values.yaml │ │ │ └── min-values.yaml │ │ ├── crafty-4/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── dashy/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── init.sh │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── databasus/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── dawarich/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── insert_redis_password_field │ │ │ │ ├── remove_db_data_field │ │ │ │ ├── remove_distance_unit_field │ │ │ │ ├── set_default_postgis_image │ │ │ │ └── set_secret_key_base │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── ddns-updater/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ ├── provider_migration │ │ │ │ └── remove_host_field │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ ├── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── community/ │ │ │ │ └── ddns-updater/ │ │ │ │ └── v1_3_7/ │ │ │ │ ├── __init__.py │ │ │ │ └── config.py │ │ │ └── test_values/ │ │ │ ├── aliyun-values.yaml │ │ │ ├── allinkl-values.yaml │ │ │ ├── basic-values.yaml │ │ │ ├── changeip-values.yaml │ │ │ ├── cloudflare-values.yaml │ │ │ ├── dd24-values.yaml │ │ │ ├── ddnss-values.yaml │ │ │ ├── desec-values.yaml │ │ │ ├── digitalocean-values.yaml │ │ │ ├── dnsomatic-values.yaml │ │ │ ├── dnspod-values.yaml │ │ │ ├── domeneshop-values.yaml │ │ │ ├── dondominio-values.yaml │ │ │ ├── dreamhost-values.yaml │ │ │ ├── duckdns-values.yaml │ │ │ ├── dyn-values.yaml │ │ │ ├── dynu-values.yaml │ │ │ ├── dynv6-values.yaml │ │ │ ├── easydns-values.yaml │ │ │ ├── freedns-values.yaml │ │ │ ├── gandi-values.yaml │ │ │ ├── gcp-values.yaml │ │ │ ├── godaddy-values.yaml │ │ │ ├── goip-values.yaml │ │ │ ├── he-values.yaml │ │ │ ├── hetzner-values.yaml │ │ │ ├── infomaniak-values.yaml │ │ │ ├── inwx-values.yaml │ │ │ ├── ionos-values.yaml │ │ │ ├── linode-values.yaml │ │ │ ├── loopia-values.yaml │ │ │ ├── luadns-values.yaml │ │ │ ├── myaddr-values.yaml │ │ │ ├── namecheap-values.yaml │ │ │ ├── namecom-values.yaml │ │ │ ├── namesilo-values.yaml │ │ │ ├── netcup-values.yaml │ │ │ ├── njalla-values.yaml │ │ │ ├── noip-values.yaml │ │ │ ├── nowdns-values.yaml │ │ │ ├── opendns-values.yaml │ │ │ ├── ovh-values.yaml │ │ │ ├── porkbun-values.yaml │ │ │ ├── route53-values.yaml │ │ │ ├── selfhostde-values.yaml │ │ │ ├── servercow-values.yaml │ │ │ ├── spdyn-values.yaml │ │ │ ├── strato-values.yaml │ │ │ ├── variomedia-values.yaml │ │ │ ├── vultr-values.yaml │ │ │ └── zoneedit-values.yaml │ │ ├── deluge/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.py.jinja │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── hostnet-values.yaml │ │ ├── directus/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── dispatcharr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── distribution/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── auth-values.yaml │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── dockge/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── dockhand/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── dockpeek/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── docspell/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── domain-locker/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── domain-watchdog/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── donetick/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── dozzle/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── drawio/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── dropgate-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── duplicati/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── eclipse-mosquitto/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── mosquitto.conf.jinja │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── electrs/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── entrypoint.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── element-web/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── enclosed/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── esphome/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── root-user.yaml │ │ ├── evcc/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── host-network-values.yaml │ │ ├── excalidraw/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── factorio/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── filebrowser/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── script.sh │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── filebrowser-quantum/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── script.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── fileflows/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── filestash/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.py.jinja │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── firefly-iii/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── importer-values.yaml │ │ ├── fireshare/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── run_as_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── fladder/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── flame/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── flaresolverr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── flood/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── run_as_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── forgejo/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── config_storage_removal │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── forgejo-runner/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── config.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── freshrss/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── frigate/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── hailo_image_migration │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── fscrawler/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── job-values.yaml │ │ │ └── no-ocr-values.yaml │ │ ├── game-vault/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── garage/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.sh │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── high-replication-factor.yaml │ │ │ ├── no-web-values.yaml │ │ │ └── web-with-auth-values.yaml │ │ ├── gaseous-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── gatus/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── config.sh.j2 │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── gitea/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── run_as_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── gitea-act-runner/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── glances/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── globalping-probe/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── bridge-values.yaml │ │ ├── gotify/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── grafana/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── gramps-web/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── grimmory/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── grocy/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── handbrake/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── no-pass-values.yaml │ │ │ └── secure-values.yaml │ │ ├── handbrake-web/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── headscale/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── heimdall/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── homarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── homebox/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── homepage/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── homer/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── no-assets-values.yaml │ │ ├── hoppscotch/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── hyos/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── i2p/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── iconik-storage-gateway/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── immich/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ ├── old_storage_migration │ │ │ │ ├── remove_old_storage_migration │ │ │ │ ├── run_as_migration │ │ │ │ └── set_default_vectorchord_image │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── root-values.yaml │ │ ├── immich-kiosk/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── influxdb/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── invidious/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── use_new_companion │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── config.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── invoice-ninja/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── ipfs/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── init.sh.jinja │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── it-tools/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── jackett/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── jdownloader2/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── jellyfin/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── jellyseerr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── jellystat/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── jelu/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── jenkins/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── cert-setup.sh.jinja │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── joplin/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── kapowarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── karakeep/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── kasm-workspaces/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── kavita/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── kerberos-agent/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── config.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── keycloak/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── health.java │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── kimai/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── kitchenowl/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── kiwix-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── komga/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── komodo/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── remove_repo_cache_storage │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── lancache-monolithic/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── lazylibrarian/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── lens/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── init.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── librechat/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── lidarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── linkding/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── plus-values.yaml │ │ ├── linkwarden/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── listmonk/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── lldap/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── ldaps-only-values.yaml │ │ │ └── ldaps-values.yaml │ │ ├── llmspy/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── localai/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── logseq/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── nginx.conf.jinja │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── luanti/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── init.sh │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── with-release-values.yaml │ │ ├── lubelogger/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── lyrion-music-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── mail-archiver/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── remove_run_as_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── mailpit/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── maintainerr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── makemkv/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── many-notes/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── mariadb/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── v10-values.yaml │ │ ├── mattermost/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── mealie/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── media-manager/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── memcached/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── memos/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── mempool/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── meshcentral/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.jinja2 │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── metube/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── minecraft/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── auto_pause_migration │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── deprecated-java21-graalvm-vanila-values.yaml │ │ │ ├── deprecated-java25-graalvm-vanilla-values.yaml │ │ │ ├── java11-vanilla-values.yaml │ │ │ ├── java17-vanilla-values.yaml │ │ │ ├── java21-alpine-vanila-values.yaml │ │ │ ├── java21-vanila-values.yaml │ │ │ ├── java25-vanilla-values.yaml │ │ │ └── java8-vanilla-values.yaml │ │ ├── minecraft-bedrock/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── mineos/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── miniflux/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── minio-console/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── mitmproxy/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── mkfd/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── ssl-values.yaml │ │ ├── mkvtoolnix/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── monero-lws/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── entrypoint.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── monero-wallet-rpc/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── monerod/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── mongodb/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── v7-values.yaml │ │ ├── monitee-agent/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── mumble/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── music-assistant/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── config.sh.jinja │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── host-values.yaml │ │ ├── mydia/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── n8n/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── https-values.yaml │ │ │ └── no-runner-values.yaml │ │ ├── navidrome/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── netbird-client/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── userspace-values.yaml │ │ ├── netbird-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── config.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── netbootxyz/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── nevu/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── hostnet-values.yaml │ │ ├── newt/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── next-explorer/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── nextpvr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── nginx-proxy-manager/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── nocodb/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── node-red/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── node18-minimal-values.yaml │ │ │ ├── node18-values.yaml │ │ │ ├── node20-minimal-values.yaml │ │ │ ├── node20-values.yaml │ │ │ ├── node22-minimal-values.yaml │ │ │ └── node22-values.yaml │ │ ├── notifiarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── npmplus/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── no-http-values.yaml │ │ ├── ntfy/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── nzbget/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── octoprint/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── mjpg-streamer.yaml │ │ ├── odoo/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ ├── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── odoo.conf │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── extra-values.yaml │ │ │ └── to_keep_versions.yaml │ │ ├── ollama/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── omada-controller/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── omni-infra-provider-truenas/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── omni-tools/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── omnom/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── onepassword-connect/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── onlyoffice-document-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── open-speed-test/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── open-terminal/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── open-webui/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ ├── remove_host_net_migration │ │ │ │ ├── remove_run_as_migration │ │ │ │ ├── run_as_migration │ │ │ │ └── secret_and_redis_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── openarchiver/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── openclaw/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── opencloud/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── fix_collaboration_proof │ │ │ │ ├── fix_csp │ │ │ │ ├── fix_insecure_flag │ │ │ │ └── remove_host_net_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ ├── app_init.sh │ │ │ │ └── radicale_config.ini │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── https-values.yaml │ │ │ ├── no-radicale-values.yaml │ │ │ └── no-tika-values.yaml │ │ ├── openuem/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── configure.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── organizr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── outline/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── overseerr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── p2pool/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── entrypoint.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── pairdrop/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── palworld/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.sh.jinja │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── extra-values.yaml │ │ ├── paperless-ai/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── paperless-ngx/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── tika-gotenberg-values.yaml │ │ │ └── trash-values.yaml │ │ ├── papra/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── no-ingestion-values.yaml │ │ ├── passbolt/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── peanut/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── penpot/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── pgadmin/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── photoview/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── pigallery2/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── piped/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── piwigo/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── init.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── planka/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── run_as_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── migration.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── playwright/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── ui-values.yaml │ │ ├── plex-auto-languages/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── pocket-id/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── encryption_key_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── portainer/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── run_as_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── http-https-values.yaml │ │ │ └── https-values.yaml │ │ ├── portracker/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── postgres/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── pgvector-v16-values.yaml │ │ │ ├── pgvector-v17-values.yaml │ │ │ ├── pgverctor-v18-values.yaml │ │ │ ├── v16-values.yaml │ │ │ └── v18-values.yaml │ │ ├── profilarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── prowlarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── pterodactyl-panel/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── pulsarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── auth-required-values.yaml │ │ │ └── basic-values.yaml │ │ ├── qbittorrent/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── remove_image_selector │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── qdrant/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── qui/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── rackula/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── add_cors_origin │ │ │ │ └── remove_host_net │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── radarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── radicale/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── rdt-client/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── reactive-resume/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── recyclarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── redis/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── run_as_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── noauth-values.yaml │ │ ├── requestrr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── restic-rest-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── host-networking-true.yaml │ │ │ ├── https-values.yaml │ │ │ └── option-values.yaml │ │ ├── retrom/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── romm/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── roundcube/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── rsyncd/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── rsync_macros/ │ │ │ │ └── rsyncd.conf │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── hostnet-values.yaml │ │ ├── rust-desk/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ ├── remove_host_net │ │ │ │ └── remove_relay_container │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── rust-desk-relay/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── rustfs/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── snmd-values.yaml │ │ │ └── snsd-https-values.yaml │ │ ├── sabnzbd/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── satisfactory-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── scrutiny/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── remove_disks_config │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── scrypted/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── searxng/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── remove_host_network │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── limiter-values.yaml │ │ ├── seaweedfs/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── seerr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── sftpgo/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── https-values.yaml │ │ │ ├── nosftp-values.yaml │ │ │ └── plugins-values.yaml │ │ ├── shelfmark/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── shlink/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── shoko-server/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── sickgear/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── signal-cli-rest-api/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── slskd/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── sonarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── speedtest-tracker/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── split-pro/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── spottarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── stalwart/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── stash/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── stdapi-ai/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── steam-headless/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── stirling-pdf/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── sure/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tailscale/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tandoor-recipes/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tautulli/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tdarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tdarr-node/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── teamspeak/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── termix/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── remove_host_net │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── terraria/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── config_migration │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── password-values.yaml │ │ ├── terraria-tshock/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── password-values.yaml │ │ ├── teslamate/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── api-values.yaml │ │ │ └── basic-values.yaml │ │ ├── tftpd-hpa/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── create-values.yaml │ │ │ └── readonly-values.yaml │ │ ├── three-proxy/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tianji/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── timelinize/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── origin_env_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tiny-media-manager/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tinyauth/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── toparr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── traccar/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tracearr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── traefik/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── transmission/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── incomplete_dir_migration │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.sh │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── no-incomplete-values.yaml │ │ │ └── same-incomplete-values.yaml │ │ ├── trilium-notes/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── tubearchivist/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── app_url_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── tvheadend/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── twingate-connector/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── twofactor-auth/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── reverse-proxy-guard-values.yaml │ │ ├── umami/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── unifi-controller/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── v2_breaking │ │ │ ├── questions.yaml │ │ │ ├── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ └── to_keep_versions.yaml │ │ ├── unifi-protect-backup/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── unmanic/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── unpackerr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── uptime-kuma/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── urbackup/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── host-networking-true.yaml │ │ ├── vane/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── vaultwarden/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── https-values.yaml │ │ │ ├── no-admin-values.yaml │ │ │ └── no-ws-values.yaml │ │ ├── versitygw/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── admin-values.yaml │ │ │ ├── basic-values.yaml │ │ │ └── no-web-values.yaml │ │ ├── vikunja/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── vitransfer/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── add_share_token_secret │ │ │ │ └── remove_config_storage │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── warracker/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── webdav/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── test_values/ │ │ │ │ ├── extra-values.yaml │ │ │ │ ├── http-basicauth-other-user-values.yaml │ │ │ │ ├── http-basicauth-values.yaml │ │ │ │ ├── http-https-basicauth-other-user-values.yaml │ │ │ │ ├── http-https-basicauth-values.yaml │ │ │ │ ├── http-https-noauth-other-user-values.yaml │ │ │ │ ├── http-https-noauth-values.yaml │ │ │ │ ├── http-noauth-other-user-values.yaml │ │ │ │ ├── http-noauth-values.yaml │ │ │ │ ├── https-basicauth-other-user-values.yaml │ │ │ │ └── https-basicauth-values.yaml │ │ │ └── webdav_macros/ │ │ │ ├── httpd.conf │ │ │ ├── webdav_core.conf │ │ │ ├── webdav_http.conf │ │ │ └── webdav_https.conf │ │ ├── wger/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── nginx.conf │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── whoogle/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── wiki-js/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ ├── config.js │ │ │ │ └── config.sh │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── windmill/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── caddyfile.conf.jinja │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── docker-values.yaml │ │ │ └── report-worker-values.yaml │ │ ├── wizarr/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── woodpecker-ci/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── wordpress/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── wyze-bridge/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── noauth-values.yaml │ │ │ └── webrtc-values.yaml │ │ ├── xmrig/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── entrypoint.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── yamtrack/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── zabbix/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── zammad/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── zerobyte/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── app_secret_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── fuse-values.yaml │ │ ├── zerotier/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── no-host-values.yaml │ │ ├── zigbee2mqtt/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── zipline/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── remove_certificate │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── zoraxy/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── zerotier-values.yaml │ │ └── zwave-js-ui/ │ │ ├── README.md │ │ ├── app.yaml │ │ ├── item.yaml │ │ ├── ix_values.yaml │ │ ├── questions.yaml │ │ └── templates/ │ │ ├── docker-compose.yaml │ │ ├── library/ │ │ │ └── base_v2_3_4/ │ │ │ ├── __init__.py │ │ │ ├── configs.py │ │ │ ├── container.py │ │ │ ├── depends.py │ │ │ ├── deploy.py │ │ │ ├── deps.py │ │ │ ├── deps_cron.py │ │ │ ├── deps_elastic.py │ │ │ ├── deps_guacd.py │ │ │ ├── deps_mariadb.py │ │ │ ├── deps_meilisearch.py │ │ │ ├── deps_memcached.py │ │ │ ├── deps_mongodb.py │ │ │ ├── deps_perms.py │ │ │ ├── deps_postgres.py │ │ │ ├── deps_redis.py │ │ │ ├── deps_solr.py │ │ │ ├── deps_tika.py │ │ │ ├── device.py │ │ │ ├── device_cgroup_rules.py │ │ │ ├── devices.py │ │ │ ├── dns.py │ │ │ ├── docker_client.py │ │ │ ├── environment.py │ │ │ ├── error.py │ │ │ ├── expose.py │ │ │ ├── extra_hosts.py │ │ │ ├── formatter.py │ │ │ ├── functions.py │ │ │ ├── healthcheck.py │ │ │ ├── labels.py │ │ │ ├── networks.py │ │ │ ├── notes.py │ │ │ ├── portals.py │ │ │ ├── ports.py │ │ │ ├── render.py │ │ │ ├── resources.py │ │ │ ├── restart.py │ │ │ ├── security_opts.py │ │ │ ├── storage.py │ │ │ ├── sysctls.py │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_build_image.py │ │ │ │ ├── test_configs.py │ │ │ │ ├── test_container.py │ │ │ │ ├── test_depends.py │ │ │ │ ├── test_deps.py │ │ │ │ ├── test_device.py │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ ├── test_dns.py │ │ │ │ ├── test_environment.py │ │ │ │ ├── test_expose.py │ │ │ │ ├── test_extra_hosts.py │ │ │ │ ├── test_formatter.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_healthcheck.py │ │ │ │ ├── test_labels.py │ │ │ │ ├── test_networks.py │ │ │ │ ├── test_notes.py │ │ │ │ ├── test_portal.py │ │ │ │ ├── test_ports.py │ │ │ │ ├── test_render.py │ │ │ │ ├── test_resources.py │ │ │ │ ├── test_restart.py │ │ │ │ ├── test_security_opts.py │ │ │ │ ├── test_sysctls.py │ │ │ │ ├── test_truenas_client.py │ │ │ │ ├── test_validations.py │ │ │ │ └── test_volumes.py │ │ │ ├── tmpfs.py │ │ │ ├── truenas_client.py │ │ │ ├── validations.py │ │ │ ├── volume_mount.py │ │ │ ├── volume_mount_types.py │ │ │ ├── volume_sources.py │ │ │ ├── volume_types.py │ │ │ └── volumes.py │ │ ├── macros/ │ │ │ └── setup.js │ │ └── test_values/ │ │ ├── basic-values.yaml │ │ └── https-values.yaml │ ├── dev/ │ │ ├── docker-socket-proxy/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ └── truenas-webui/ │ │ ├── README.md │ │ ├── app.yaml │ │ ├── item.yaml │ │ ├── ix_values.yaml │ │ ├── questions.yaml │ │ └── templates/ │ │ ├── docker-compose.yaml │ │ ├── library/ │ │ │ └── base_v2_3_4/ │ │ │ ├── __init__.py │ │ │ ├── configs.py │ │ │ ├── container.py │ │ │ ├── depends.py │ │ │ ├── deploy.py │ │ │ ├── deps.py │ │ │ ├── deps_cron.py │ │ │ ├── deps_elastic.py │ │ │ ├── deps_guacd.py │ │ │ ├── deps_mariadb.py │ │ │ ├── deps_meilisearch.py │ │ │ ├── deps_memcached.py │ │ │ ├── deps_mongodb.py │ │ │ ├── deps_perms.py │ │ │ ├── deps_postgres.py │ │ │ ├── deps_redis.py │ │ │ ├── deps_solr.py │ │ │ ├── deps_tika.py │ │ │ ├── device.py │ │ │ ├── device_cgroup_rules.py │ │ │ ├── devices.py │ │ │ ├── dns.py │ │ │ ├── docker_client.py │ │ │ ├── environment.py │ │ │ ├── error.py │ │ │ ├── expose.py │ │ │ ├── extra_hosts.py │ │ │ ├── formatter.py │ │ │ ├── functions.py │ │ │ ├── healthcheck.py │ │ │ ├── labels.py │ │ │ ├── networks.py │ │ │ ├── notes.py │ │ │ ├── portals.py │ │ │ ├── ports.py │ │ │ ├── render.py │ │ │ ├── resources.py │ │ │ ├── restart.py │ │ │ ├── security_opts.py │ │ │ ├── storage.py │ │ │ ├── sysctls.py │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_build_image.py │ │ │ │ ├── test_configs.py │ │ │ │ ├── test_container.py │ │ │ │ ├── test_depends.py │ │ │ │ ├── test_deps.py │ │ │ │ ├── test_device.py │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ ├── test_dns.py │ │ │ │ ├── test_environment.py │ │ │ │ ├── test_expose.py │ │ │ │ ├── test_extra_hosts.py │ │ │ │ ├── test_formatter.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_healthcheck.py │ │ │ │ ├── test_labels.py │ │ │ │ ├── test_networks.py │ │ │ │ ├── test_notes.py │ │ │ │ ├── test_portal.py │ │ │ │ ├── test_ports.py │ │ │ │ ├── test_render.py │ │ │ │ ├── test_resources.py │ │ │ │ ├── test_restart.py │ │ │ │ ├── test_security_opts.py │ │ │ │ ├── test_sysctls.py │ │ │ │ ├── test_truenas_client.py │ │ │ │ ├── test_validations.py │ │ │ │ └── test_volumes.py │ │ │ ├── tmpfs.py │ │ │ ├── truenas_client.py │ │ │ ├── validations.py │ │ │ ├── volume_mount.py │ │ │ ├── volume_mount_types.py │ │ │ ├── volume_sources.py │ │ │ ├── volume_types.py │ │ │ └── volumes.py │ │ └── test_values/ │ │ └── basic-values.yaml │ ├── enterprise/ │ │ ├── asigra-ds-system/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── remove_gpu_key │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_1_77/ │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── haproxy_config.macro │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── cluster-values.yaml │ │ ├── ix-remote-assist/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_1_77/ │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── minio/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_1_77/ │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-multi-mode-values.yaml │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ └── syncthing/ │ │ ├── README.md │ │ ├── app.yaml │ │ ├── app_migrations.yaml │ │ ├── item.yaml │ │ ├── ix_values.yaml │ │ ├── migrations/ │ │ │ └── ip_port_migration │ │ ├── questions.yaml │ │ └── templates/ │ │ ├── docker-compose.yaml │ │ ├── library/ │ │ │ └── base_v2_1_77/ │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── configs.py │ │ │ ├── container.py │ │ │ ├── depends.py │ │ │ ├── deploy.py │ │ │ ├── deps.py │ │ │ ├── deps_elastic.py │ │ │ ├── deps_mariadb.py │ │ │ ├── deps_meilisearch.py │ │ │ ├── deps_mongodb.py │ │ │ ├── deps_perms.py │ │ │ ├── deps_postgres.py │ │ │ ├── deps_redis.py │ │ │ ├── deps_solr.py │ │ │ ├── deps_tika.py │ │ │ ├── device.py │ │ │ ├── device_cgroup_rules.py │ │ │ ├── devices.py │ │ │ ├── dns.py │ │ │ ├── environment.py │ │ │ ├── error.py │ │ │ ├── expose.py │ │ │ ├── extra_hosts.py │ │ │ ├── formatter.py │ │ │ ├── functions.py │ │ │ ├── healthcheck.py │ │ │ ├── labels.py │ │ │ ├── notes.py │ │ │ ├── portals.py │ │ │ ├── ports.py │ │ │ ├── render.py │ │ │ ├── resources.py │ │ │ ├── restart.py │ │ │ ├── security_opts.py │ │ │ ├── storage.py │ │ │ ├── sysctls.py │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_build_image.py │ │ │ │ ├── test_configs.py │ │ │ │ ├── test_container.py │ │ │ │ ├── test_depends.py │ │ │ │ ├── test_deps.py │ │ │ │ ├── test_device.py │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ ├── test_dns.py │ │ │ │ ├── test_environment.py │ │ │ │ ├── test_expose.py │ │ │ │ ├── test_extra_hosts.py │ │ │ │ ├── test_formatter.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_healthcheck.py │ │ │ │ ├── test_labels.py │ │ │ │ ├── test_notes.py │ │ │ │ ├── test_portal.py │ │ │ │ ├── test_ports.py │ │ │ │ ├── test_render.py │ │ │ │ ├── test_resources.py │ │ │ │ ├── test_restart.py │ │ │ │ ├── test_security_opts.py │ │ │ │ ├── test_sysctls.py │ │ │ │ ├── test_validations.py │ │ │ │ └── test_volumes.py │ │ │ ├── tmpfs.py │ │ │ ├── validations.py │ │ │ ├── volume_mount.py │ │ │ ├── volume_mount_types.py │ │ │ ├── volume_sources.py │ │ │ ├── volume_types.py │ │ │ └── volumes.py │ │ ├── macros/ │ │ │ └── setup.sh.jinja │ │ └── test_values/ │ │ ├── basic-values.yaml │ │ └── https-values.yaml │ ├── stable/ │ │ ├── aistor/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── collabora/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── nginx.conf.jinja │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── diskoverdata/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── data_crawl_migration │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── diskover_macros/ │ │ │ │ ├── crontab │ │ │ │ ├── fix-nginx.sh │ │ │ │ └── setup-cron.sh │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── elastic-search/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── emby/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── hostnet-values.yaml │ │ ├── home-assistant/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ ├── config.sh.jinja │ │ │ │ └── config.yaml.jinja │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── ix-app/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── minio/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── deprecations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ ├── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ └── to_keep_versions.yaml │ │ ├── netdata/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── nextcloud/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── ip_port_migration │ │ │ │ └── remove_same_storage_field │ │ │ ├── questions.yaml │ │ │ ├── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ ├── nc.jinja.conf │ │ │ │ │ └── nc.jinja.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ ├── imaginary-values.yaml │ │ │ │ └── no-cron-values.yaml │ │ │ └── to_keep_versions.yaml │ │ ├── photoprism/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── host-values.yaml │ │ │ ├── https-values.yaml │ │ │ └── pass-values.yaml │ │ ├── pihole/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── dhcp-values.yaml │ │ ├── plex/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── __init__.py │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── hostnet-values.yaml │ │ ├── prometheus/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── init.sh │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── hostnet-values.yaml │ │ ├── seaweedfs/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── s3-https-values.yaml │ │ ├── storj/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ ├── auth_token_rm_migration │ │ │ │ ├── domain_address_migration │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ ├── entrypoint.sh │ │ │ │ └── init.sh │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── syncthing/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── item.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── host-values.yaml │ │ │ └── https-values.yaml │ │ └── wg-easy/ │ │ ├── README.md │ │ ├── app.yaml │ │ ├── item.yaml │ │ ├── ix_values.yaml │ │ ├── questions.yaml │ │ └── templates/ │ │ ├── docker-compose.yaml │ │ ├── library/ │ │ │ └── base_v2_3_4/ │ │ │ ├── __init__.py │ │ │ ├── configs.py │ │ │ ├── container.py │ │ │ ├── depends.py │ │ │ ├── deploy.py │ │ │ ├── deps.py │ │ │ ├── deps_cron.py │ │ │ ├── deps_elastic.py │ │ │ ├── deps_guacd.py │ │ │ ├── deps_mariadb.py │ │ │ ├── deps_meilisearch.py │ │ │ ├── deps_memcached.py │ │ │ ├── deps_mongodb.py │ │ │ ├── deps_perms.py │ │ │ ├── deps_postgres.py │ │ │ ├── deps_redis.py │ │ │ ├── deps_solr.py │ │ │ ├── deps_tika.py │ │ │ ├── device.py │ │ │ ├── device_cgroup_rules.py │ │ │ ├── devices.py │ │ │ ├── dns.py │ │ │ ├── docker_client.py │ │ │ ├── environment.py │ │ │ ├── error.py │ │ │ ├── expose.py │ │ │ ├── extra_hosts.py │ │ │ ├── formatter.py │ │ │ ├── functions.py │ │ │ ├── healthcheck.py │ │ │ ├── labels.py │ │ │ ├── networks.py │ │ │ ├── notes.py │ │ │ ├── portals.py │ │ │ ├── ports.py │ │ │ ├── render.py │ │ │ ├── resources.py │ │ │ ├── restart.py │ │ │ ├── security_opts.py │ │ │ ├── storage.py │ │ │ ├── sysctls.py │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_build_image.py │ │ │ │ ├── test_configs.py │ │ │ │ ├── test_container.py │ │ │ │ ├── test_depends.py │ │ │ │ ├── test_deps.py │ │ │ │ ├── test_device.py │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ ├── test_dns.py │ │ │ │ ├── test_environment.py │ │ │ │ ├── test_expose.py │ │ │ │ ├── test_extra_hosts.py │ │ │ │ ├── test_formatter.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_healthcheck.py │ │ │ │ ├── test_labels.py │ │ │ │ ├── test_networks.py │ │ │ │ ├── test_notes.py │ │ │ │ ├── test_portal.py │ │ │ │ ├── test_ports.py │ │ │ │ ├── test_render.py │ │ │ │ ├── test_resources.py │ │ │ │ ├── test_restart.py │ │ │ │ ├── test_security_opts.py │ │ │ │ ├── test_sysctls.py │ │ │ │ ├── test_truenas_client.py │ │ │ │ ├── test_validations.py │ │ │ │ └── test_volumes.py │ │ │ ├── tmpfs.py │ │ │ ├── truenas_client.py │ │ │ ├── validations.py │ │ │ ├── volume_mount.py │ │ │ ├── volume_mount_types.py │ │ │ ├── volume_sources.py │ │ │ ├── volume_types.py │ │ │ └── volumes.py │ │ └── test_values/ │ │ ├── basic-values.yaml │ │ └── hostnet-values.yaml │ └── test/ │ ├── nextcloud/ │ │ ├── README.md │ │ ├── app.yaml │ │ ├── item.yaml │ │ ├── ix_values.yaml │ │ ├── questions.yaml │ │ └── templates/ │ │ ├── docker-compose.yaml │ │ ├── library/ │ │ │ └── base_v2_3_4/ │ │ │ ├── __init__.py │ │ │ ├── configs.py │ │ │ ├── container.py │ │ │ ├── depends.py │ │ │ ├── deploy.py │ │ │ ├── deps.py │ │ │ ├── deps_cron.py │ │ │ ├── deps_elastic.py │ │ │ ├── deps_guacd.py │ │ │ ├── deps_mariadb.py │ │ │ ├── deps_meilisearch.py │ │ │ ├── deps_memcached.py │ │ │ ├── deps_mongodb.py │ │ │ ├── deps_perms.py │ │ │ ├── deps_postgres.py │ │ │ ├── deps_redis.py │ │ │ ├── deps_solr.py │ │ │ ├── deps_tika.py │ │ │ ├── device.py │ │ │ ├── device_cgroup_rules.py │ │ │ ├── devices.py │ │ │ ├── dns.py │ │ │ ├── docker_client.py │ │ │ ├── environment.py │ │ │ ├── error.py │ │ │ ├── expose.py │ │ │ ├── extra_hosts.py │ │ │ ├── formatter.py │ │ │ ├── functions.py │ │ │ ├── healthcheck.py │ │ │ ├── labels.py │ │ │ ├── networks.py │ │ │ ├── notes.py │ │ │ ├── portals.py │ │ │ ├── ports.py │ │ │ ├── render.py │ │ │ ├── resources.py │ │ │ ├── restart.py │ │ │ ├── security_opts.py │ │ │ ├── storage.py │ │ │ ├── sysctls.py │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_build_image.py │ │ │ │ ├── test_configs.py │ │ │ │ ├── test_container.py │ │ │ │ ├── test_depends.py │ │ │ │ ├── test_deps.py │ │ │ │ ├── test_device.py │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ ├── test_dns.py │ │ │ │ ├── test_environment.py │ │ │ │ ├── test_expose.py │ │ │ │ ├── test_extra_hosts.py │ │ │ │ ├── test_formatter.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_healthcheck.py │ │ │ │ ├── test_labels.py │ │ │ │ ├── test_networks.py │ │ │ │ ├── test_notes.py │ │ │ │ ├── test_portal.py │ │ │ │ ├── test_ports.py │ │ │ │ ├── test_render.py │ │ │ │ ├── test_resources.py │ │ │ │ ├── test_restart.py │ │ │ │ ├── test_security_opts.py │ │ │ │ ├── test_sysctls.py │ │ │ │ ├── test_truenas_client.py │ │ │ │ ├── test_validations.py │ │ │ │ └── test_volumes.py │ │ │ ├── tmpfs.py │ │ │ ├── truenas_client.py │ │ │ ├── validations.py │ │ │ ├── volume_mount.py │ │ │ ├── volume_mount_types.py │ │ │ ├── volume_sources.py │ │ │ ├── volume_types.py │ │ │ └── volumes.py │ │ ├── macros/ │ │ │ ├── builder.jinja │ │ │ ├── crontasks │ │ │ ├── nginx.conf │ │ │ └── tune.ini │ │ └── test_values/ │ │ ├── basic-values.yaml │ │ ├── build-values.yaml │ │ └── https-values.yaml │ ├── nginx/ │ │ ├── README.md │ │ ├── app.yaml │ │ ├── item.yaml │ │ ├── questions.yaml │ │ ├── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v0_0_1/ │ │ │ │ ├── __init__.py │ │ │ │ └── test.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ └── to_keep_versions.yaml │ └── other-nginx/ │ ├── README.md │ ├── app.yaml │ ├── item.yaml │ ├── questions.yaml │ ├── templates/ │ │ ├── docker-compose.yaml │ │ ├── library/ │ │ │ └── base_v0_0_1/ │ │ │ ├── __init__.py │ │ │ └── test.py │ │ └── test_values/ │ │ └── basic-values.yaml │ └── to_keep_versions.yaml ├── library/ │ ├── 0.0.1/ │ │ ├── __init__.py │ │ └── test.py │ ├── 2.3.4/ │ │ ├── __init__.py │ │ ├── configs.py │ │ ├── container.py │ │ ├── depends.py │ │ ├── deploy.py │ │ ├── deps.py │ │ ├── deps_cron.py │ │ ├── deps_elastic.py │ │ ├── deps_guacd.py │ │ ├── deps_mariadb.py │ │ ├── deps_meilisearch.py │ │ ├── deps_memcached.py │ │ ├── deps_mongodb.py │ │ ├── deps_perms.py │ │ ├── deps_postgres.py │ │ ├── deps_redis.py │ │ ├── deps_solr.py │ │ ├── deps_tika.py │ │ ├── device.py │ │ ├── device_cgroup_rules.py │ │ ├── devices.py │ │ ├── dns.py │ │ ├── docker_client.py │ │ ├── environment.py │ │ ├── error.py │ │ ├── expose.py │ │ ├── extra_hosts.py │ │ ├── formatter.py │ │ ├── functions.py │ │ ├── healthcheck.py │ │ ├── labels.py │ │ ├── networks.py │ │ ├── notes.py │ │ ├── portals.py │ │ ├── ports.py │ │ ├── render.py │ │ ├── resources.py │ │ ├── restart.py │ │ ├── security_opts.py │ │ ├── storage.py │ │ ├── sysctls.py │ │ ├── tests/ │ │ │ ├── __init__.py │ │ │ ├── test_build_image.py │ │ │ ├── test_configs.py │ │ │ ├── test_container.py │ │ │ ├── test_depends.py │ │ │ ├── test_deps.py │ │ │ ├── test_device.py │ │ │ ├── test_device_cgroup_rules.py │ │ │ ├── test_dns.py │ │ │ ├── test_environment.py │ │ │ ├── test_expose.py │ │ │ ├── test_extra_hosts.py │ │ │ ├── test_formatter.py │ │ │ ├── test_functions.py │ │ │ ├── test_healthcheck.py │ │ │ ├── test_labels.py │ │ │ ├── test_networks.py │ │ │ ├── test_notes.py │ │ │ ├── test_portal.py │ │ │ ├── test_ports.py │ │ │ ├── test_render.py │ │ │ ├── test_resources.py │ │ │ ├── test_restart.py │ │ │ ├── test_security_opts.py │ │ │ ├── test_sysctls.py │ │ │ ├── test_truenas_client.py │ │ │ ├── test_validations.py │ │ │ └── test_volumes.py │ │ ├── tmpfs.py │ │ ├── truenas_client.py │ │ ├── validations.py │ │ ├── volume_mount.py │ │ ├── volume_mount_types.py │ │ ├── volume_sources.py │ │ ├── volume_types.py │ │ └── volumes.py │ └── hashes.yaml ├── pyproject.toml ├── trains/ │ ├── community/ │ │ ├── actual-budget/ │ │ │ ├── 1.4.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── hostnet-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── adguard-home/ │ │ │ ├── 1.3.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── dhcp-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── adventurelog/ │ │ │ ├── 1.3.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── set_default_postgis_image │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── affine/ │ │ │ ├── 1.2.18/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── aiostreams/ │ │ │ ├── 1.0.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── anki-sync-server/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── rename_web_port │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── anything-llm/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── arcane/ │ │ │ ├── 1.0.64/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── archisteamfarm/ │ │ │ ├── 1.1.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── arti/ │ │ │ ├── 1.3.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.py.jinja │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── audiobookshelf/ │ │ │ ├── 1.6.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── remove_host_net │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── authelia/ │ │ │ ├── 1.2.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── authentik/ │ │ │ ├── 1.3.18/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── enable_deprecated_media │ │ │ │ │ ├── remove_deprecated_media │ │ │ │ │ └── remove_redis │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── autobrr/ │ │ │ ├── 1.4.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── automatic-ripping-machine/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── autoxpose/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── backrest/ │ │ │ ├── 1.1.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── baserow/ │ │ │ ├── 1.2.22/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── bazarr/ │ │ │ ├── 1.3.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── bentopdf/ │ │ │ ├── 1.1.16/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── beszel-hub/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── bichon/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── bitcoind/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── remove_max_orphan_txs │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.py.jinja │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── bitcoind-knots/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.py.jinja │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── bitmagnet/ │ │ │ ├── 1.2.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── blinko/ │ │ │ ├── 1.0.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── bookshelf/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── softcover-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── bookstack/ │ │ │ ├── 1.2.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── borgwarehouse/ │ │ │ ├── 1.0.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── boxarr/ │ │ │ ├── 1.0.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── briefkasten/ │ │ │ ├── 1.6.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── extra-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── byparr/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── calibre/ │ │ │ ├── 1.2.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── calibre-web/ │ │ │ ├── 2.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── castopod/ │ │ │ ├── 1.4.4/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── 2fa-values.yaml │ │ │ │ ├── basic-values.yaml │ │ │ │ └── redirect-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── change-detection/ │ │ │ ├── 1.1.22/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── channels-dvr/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── fix_run_as │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── nvidia-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── chatwoot/ │ │ │ ├── 1.2.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── ce-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── chia/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── init.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── farmer-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── clamav/ │ │ │ ├── 1.4.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── milterd-values.yaml │ │ │ │ ├── no-clamd-values.yaml │ │ │ │ └── no-freshclamd-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── cleanuparr/ │ │ │ ├── 1.1.25/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── cloudbeaver/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── cloudflared/ │ │ │ ├── 2.0.4/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── remove_proxy_mode │ │ │ │ │ └── remove_tunnel_dns_field │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── cloudreve/ │ │ │ ├── 1.0.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── fts-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── cockpit-ws/ │ │ │ ├── 1.1.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── code-server/ │ │ │ ├── 1.1.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── set_deprecated_volumes │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── concourse/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── keys.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── continuwuity/ │ │ │ ├── 1.0.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── no-federation-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── convertx/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── coolify/ │ │ │ ├── 1.2.23/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── copyparty/ │ │ │ ├── 1.1.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── dj-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ ├── im-values.yaml │ │ │ │ ├── iv-values.yaml │ │ │ │ └── min-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── crafty-4/ │ │ │ ├── 1.1.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── dashy/ │ │ │ ├── 2.0.2/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── init.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── databasus/ │ │ │ ├── 1.0.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── dawarich/ │ │ │ ├── 1.4.23/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── insert_redis_password_field │ │ │ │ │ ├── remove_db_data_field │ │ │ │ │ ├── remove_distance_unit_field │ │ │ │ │ ├── set_default_postgis_image │ │ │ │ │ └── set_secret_key_base │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── ddns-updater/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ ├── provider_migration │ │ │ │ │ └── remove_host_field │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ ├── base_v2_3_4/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── configs.py │ │ │ │ │ │ ├── container.py │ │ │ │ │ │ ├── depends.py │ │ │ │ │ │ ├── deploy.py │ │ │ │ │ │ ├── deps.py │ │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ │ ├── device.py │ │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ │ ├── devices.py │ │ │ │ │ │ ├── dns.py │ │ │ │ │ │ ├── docker_client.py │ │ │ │ │ │ ├── environment.py │ │ │ │ │ │ ├── error.py │ │ │ │ │ │ ├── expose.py │ │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ │ ├── formatter.py │ │ │ │ │ │ ├── functions.py │ │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ │ ├── labels.py │ │ │ │ │ │ ├── networks.py │ │ │ │ │ │ ├── notes.py │ │ │ │ │ │ ├── portals.py │ │ │ │ │ │ ├── ports.py │ │ │ │ │ │ ├── render.py │ │ │ │ │ │ ├── resources.py │ │ │ │ │ │ ├── restart.py │ │ │ │ │ │ ├── security_opts.py │ │ │ │ │ │ ├── storage.py │ │ │ │ │ │ ├── sysctls.py │ │ │ │ │ │ ├── tests/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ │ ├── validations.py │ │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ │ ├── volume_types.py │ │ │ │ │ │ └── volumes.py │ │ │ │ │ └── community/ │ │ │ │ │ └── ddns-updater/ │ │ │ │ │ └── v1_3_7/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── config.py │ │ │ │ └── test_values/ │ │ │ │ ├── aliyun-values.yaml │ │ │ │ ├── allinkl-values.yaml │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── changeip-values.yaml │ │ │ │ ├── cloudflare-values.yaml │ │ │ │ ├── dd24-values.yaml │ │ │ │ ├── ddnss-values.yaml │ │ │ │ ├── desec-values.yaml │ │ │ │ ├── digitalocean-values.yaml │ │ │ │ ├── dnsomatic-values.yaml │ │ │ │ ├── dnspod-values.yaml │ │ │ │ ├── domeneshop-values.yaml │ │ │ │ ├── dondominio-values.yaml │ │ │ │ ├── dreamhost-values.yaml │ │ │ │ ├── duckdns-values.yaml │ │ │ │ ├── dyn-values.yaml │ │ │ │ ├── dynu-values.yaml │ │ │ │ ├── dynv6-values.yaml │ │ │ │ ├── easydns-values.yaml │ │ │ │ ├── freedns-values.yaml │ │ │ │ ├── gandi-values.yaml │ │ │ │ ├── gcp-values.yaml │ │ │ │ ├── godaddy-values.yaml │ │ │ │ ├── goip-values.yaml │ │ │ │ ├── he-values.yaml │ │ │ │ ├── hetzner-values.yaml │ │ │ │ ├── infomaniak-values.yaml │ │ │ │ ├── inwx-values.yaml │ │ │ │ ├── ionos-values.yaml │ │ │ │ ├── linode-values.yaml │ │ │ │ ├── loopia-values.yaml │ │ │ │ ├── luadns-values.yaml │ │ │ │ ├── myaddr-values.yaml │ │ │ │ ├── namecheap-values.yaml │ │ │ │ ├── namecom-values.yaml │ │ │ │ ├── namesilo-values.yaml │ │ │ │ ├── netcup-values.yaml │ │ │ │ ├── njalla-values.yaml │ │ │ │ ├── noip-values.yaml │ │ │ │ ├── nowdns-values.yaml │ │ │ │ ├── opendns-values.yaml │ │ │ │ ├── ovh-values.yaml │ │ │ │ ├── porkbun-values.yaml │ │ │ │ ├── route53-values.yaml │ │ │ │ ├── selfhostde-values.yaml │ │ │ │ ├── servercow-values.yaml │ │ │ │ ├── spdyn-values.yaml │ │ │ │ ├── strato-values.yaml │ │ │ │ ├── variomedia-values.yaml │ │ │ │ ├── vultr-values.yaml │ │ │ │ └── zoneedit-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── deluge/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.py.jinja │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── hostnet-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── directus/ │ │ │ ├── 1.2.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── dispatcharr/ │ │ │ ├── 1.2.20/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── distribution/ │ │ │ ├── 1.3.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── auth-values.yaml │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── dockge/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── dockhand/ │ │ │ ├── 1.1.14/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── dockpeek/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── docspell/ │ │ │ ├── 1.2.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── domain-locker/ │ │ │ ├── 1.0.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── domain-watchdog/ │ │ │ ├── 1.2.14/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── donetick/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── dozzle/ │ │ │ ├── 1.1.22/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── drawio/ │ │ │ ├── 1.4.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── dropgate-server/ │ │ │ ├── 1.0.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── duplicati/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── eclipse-mosquitto/ │ │ │ ├── 1.2.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── mosquitto.conf.jinja │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── electrs/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── entrypoint.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── element-web/ │ │ │ ├── 1.1.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── enclosed/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── esphome/ │ │ │ ├── 1.2.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── root-user.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── evcc/ │ │ │ ├── 1.0.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── host-network-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── excalidraw/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── factorio/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── filebrowser/ │ │ │ ├── 1.4.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── script.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── filebrowser-quantum/ │ │ │ ├── 1.1.14/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── script.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── fileflows/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── filestash/ │ │ │ ├── 1.2.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.py.jinja │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── firefly-iii/ │ │ │ ├── 1.9.24/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── importer-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── fireshare/ │ │ │ ├── 1.1.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── run_as_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── fladder/ │ │ │ ├── 1.0.4/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── flame/ │ │ │ ├── 1.3.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── flaresolverr/ │ │ │ ├── 1.2.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── flood/ │ │ │ ├── 1.2.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── run_as_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── forgejo/ │ │ │ ├── 1.2.16/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── config_storage_removal │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── forgejo-runner/ │ │ │ ├── 2.0.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── config.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── freshrss/ │ │ │ ├── 1.7.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── frigate/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── hailo_image_migration │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── fscrawler/ │ │ │ ├── 2.0.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── job-values.yaml │ │ │ │ └── no-ocr-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── game-vault/ │ │ │ ├── 1.0.0/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── garage/ │ │ │ ├── 1.2.4/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── high-replication-factor.yaml │ │ │ │ ├── no-web-values.yaml │ │ │ │ └── web-with-auth-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── gaseous-server/ │ │ │ ├── 1.3.3/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── gatus/ │ │ │ ├── 1.1.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── config.sh.j2 │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── gitea/ │ │ │ ├── 1.6.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── run_as_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── gitea-act-runner/ │ │ │ ├── 1.1.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── glances/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── globalping-probe/ │ │ │ ├── 1.1.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── bridge-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── gotify/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── grafana/ │ │ │ ├── 1.4.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── gramps-web/ │ │ │ ├── 1.3.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── grimmory/ │ │ │ ├── 1.0.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── grocy/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── handbrake/ │ │ │ ├── 2.3.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── no-pass-values.yaml │ │ │ │ └── secure-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── handbrake-web/ │ │ │ ├── 1.2.3/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── headscale/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── heimdall/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── homarr/ │ │ │ ├── 2.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── homebox/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── homepage/ │ │ │ ├── 1.3.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── homer/ │ │ │ ├── 2.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── no-assets-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── hoppscotch/ │ │ │ ├── 1.2.16/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── hyos/ │ │ │ ├── 1.0.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── i2p/ │ │ │ ├── 1.1.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── iconik-storage-gateway/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── immich/ │ │ │ ├── 1.14.16/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ ├── old_storage_migration │ │ │ │ │ ├── remove_old_storage_migration │ │ │ │ │ ├── run_as_migration │ │ │ │ │ └── set_default_vectorchord_image │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── root-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── immich-kiosk/ │ │ │ ├── 1.0.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── influxdb/ │ │ │ ├── 1.2.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── invidious/ │ │ │ ├── 1.7.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── use_new_companion │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── config.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── invoice-ninja/ │ │ │ ├── 1.2.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── ipfs/ │ │ │ ├── 1.3.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── init.sh.jinja │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── it-tools/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── jackett/ │ │ │ ├── 1.1.63/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── jdownloader2/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── jellyfin/ │ │ │ ├── 1.3.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── jellyseerr/ │ │ │ ├── 1.3.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── jellystat/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── jelu/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── jenkins/ │ │ │ ├── 1.3.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── cert-setup.sh.jinja │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── joplin/ │ │ │ ├── 1.7.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── kapowarr/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── karakeep/ │ │ │ ├── 1.2.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── kasm-workspaces/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── kavita/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── kerberos-agent/ │ │ │ ├── 1.1.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── config.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── keycloak/ │ │ │ ├── 1.2.18/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── health.java │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── kimai/ │ │ │ ├── 1.2.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── kitchenowl/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── kiwix-server/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── komga/ │ │ │ ├── 1.4.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── komodo/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── remove_repo_cache_storage │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── lancache-monolithic/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── lazylibrarian/ │ │ │ ├── 1.1.27/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── lens/ │ │ │ ├── 1.2.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── init.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── librechat/ │ │ │ ├── 1.2.27/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── lidarr/ │ │ │ ├── 1.4.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── linkding/ │ │ │ ├── 1.6.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── plus-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── linkwarden/ │ │ │ ├── 1.2.22/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── listmonk/ │ │ │ ├── 1.6.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── lldap/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── ldaps-only-values.yaml │ │ │ │ └── ldaps-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── llmspy/ │ │ │ ├── 1.1.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── localai/ │ │ │ ├── 1.1.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── logseq/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── nginx.conf.jinja │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── luanti/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── init.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── with-release-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── lubelogger/ │ │ │ ├── 1.3.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── lyrion-music-server/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mail-archiver/ │ │ │ ├── 1.2.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── remove_run_as_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mailpit/ │ │ │ ├── 1.1.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── maintainerr/ │ │ │ ├── 1.1.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── makemkv/ │ │ │ ├── 1.1.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── many-notes/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mariadb/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── v10-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mattermost/ │ │ │ ├── 1.2.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mealie/ │ │ │ ├── 1.8.18/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── media-manager/ │ │ │ ├── 1.2.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── memcached/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── memos/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mempool/ │ │ │ ├── 1.2.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── meshcentral/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.jinja2 │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── metube/ │ │ │ ├── 1.4.28/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── minecraft/ │ │ │ ├── 1.15.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── auto_pause_migration │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── deprecated-java21-graalvm-vanila-values.yaml │ │ │ │ ├── deprecated-java25-graalvm-vanilla-values.yaml │ │ │ │ ├── java11-vanilla-values.yaml │ │ │ │ ├── java17-vanilla-values.yaml │ │ │ │ ├── java21-alpine-vanila-values.yaml │ │ │ │ ├── java21-vanila-values.yaml │ │ │ │ ├── java25-vanilla-values.yaml │ │ │ │ └── java8-vanilla-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── minecraft-bedrock/ │ │ │ ├── 1.1.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mineos/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── miniflux/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── minio-console/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mitmproxy/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mkfd/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── ssl-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mkvtoolnix/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── monero-lws/ │ │ │ ├── 1.2.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── entrypoint.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── monero-wallet-rpc/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── monerod/ │ │ │ ├── 1.2.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mongodb/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── v7-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── monitee-agent/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mumble/ │ │ │ ├── 1.4.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── music-assistant/ │ │ │ ├── 1.1.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── config.sh.jinja │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── host-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── mydia/ │ │ │ ├── 1.2.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── n8n/ │ │ │ ├── 1.10.32/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ └── no-runner-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── navidrome/ │ │ │ ├── 1.3.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── netbird-client/ │ │ │ ├── 1.1.24/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── userspace-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── netbird-server/ │ │ │ ├── 1.0.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── config.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── netbootxyz/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── nevu/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── hostnet-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── newt/ │ │ │ ├── 1.1.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── next-explorer/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── nextpvr/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── nginx-proxy-manager/ │ │ │ ├── 1.3.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── nocodb/ │ │ │ ├── 1.2.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── node-red/ │ │ │ ├── 1.4.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── node18-minimal-values.yaml │ │ │ │ ├── node18-values.yaml │ │ │ │ ├── node20-minimal-values.yaml │ │ │ │ ├── node20-values.yaml │ │ │ │ ├── node22-minimal-values.yaml │ │ │ │ └── node22-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── notifiarr/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── npmplus/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── no-http-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── ntfy/ │ │ │ ├── 1.1.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── nzbget/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── octoprint/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── mjpg-streamer.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── odoo/ │ │ │ ├── 1.3.16/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_1_57/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── odoo.conf │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── extra-values.yaml │ │ │ ├── 1.6.14/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── odoo.conf │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── extra-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── ollama/ │ │ │ ├── 1.2.29/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── omada-controller/ │ │ │ ├── 1.4.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── omni-infra-provider-truenas/ │ │ │ ├── 1.0.1/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── omni-tools/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── omnom/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── onepassword-connect/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── onlyoffice-document-server/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── open-speed-test/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── open-terminal/ │ │ │ ├── 1.0.20/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── open-webui/ │ │ │ ├── 1.3.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ ├── remove_host_net_migration │ │ │ │ │ ├── remove_run_as_migration │ │ │ │ │ ├── run_as_migration │ │ │ │ │ └── secret_and_redis_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── openarchiver/ │ │ │ ├── 1.2.23/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── openclaw/ │ │ │ ├── 1.0.24/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── opencloud/ │ │ │ ├── 1.2.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── fix_collaboration_proof │ │ │ │ │ ├── fix_csp │ │ │ │ │ ├── fix_insecure_flag │ │ │ │ │ └── remove_host_net_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ ├── app_init.sh │ │ │ │ │ └── radicale_config.ini │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ ├── no-radicale-values.yaml │ │ │ │ └── no-tika-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── openuem/ │ │ │ ├── 1.0.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── configure.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── organizr/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── outline/ │ │ │ ├── 1.2.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── overseerr/ │ │ │ ├── 1.3.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── p2pool/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── entrypoint.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── pairdrop/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── palworld/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.sh.jinja │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── extra-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── paperless-ai/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── paperless-ngx/ │ │ │ ├── 1.6.20/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── tika-gotenberg-values.yaml │ │ │ │ └── trash-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── papra/ │ │ │ ├── 1.1.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── no-ingestion-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── passbolt/ │ │ │ ├── 1.4.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── peanut/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── penpot/ │ │ │ ├── 1.5.14/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── pgadmin/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── photoview/ │ │ │ ├── 1.2.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── pigallery2/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── piped/ │ │ │ ├── 1.2.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── piwigo/ │ │ │ ├── 1.4.4/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── init.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── planka/ │ │ │ ├── 2.3.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── run_as_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── migration.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── playwright/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── ui-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── plex-auto-languages/ │ │ │ ├── 1.4.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── pocket-id/ │ │ │ ├── 1.1.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── encryption_key_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── portainer/ │ │ │ ├── 1.7.3/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── run_as_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── http-https-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── portracker/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── postgres/ │ │ │ ├── 1.5.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── pgvector-v16-values.yaml │ │ │ │ ├── pgvector-v17-values.yaml │ │ │ │ ├── pgverctor-v18-values.yaml │ │ │ │ ├── v16-values.yaml │ │ │ │ └── v18-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── profilarr/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── prowlarr/ │ │ │ ├── 1.5.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── pterodactyl-panel/ │ │ │ ├── 1.2.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── pulsarr/ │ │ │ ├── 1.0.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── auth-required-values.yaml │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── qbittorrent/ │ │ │ ├── 1.4.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── remove_image_selector │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── qdrant/ │ │ │ ├── 1.0.2/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── qui/ │ │ │ ├── 1.1.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── rackula/ │ │ │ ├── 1.2.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── add_cors_origin │ │ │ │ │ └── remove_host_net │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── radarr/ │ │ │ ├── 1.4.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── radicale/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── rdt-client/ │ │ │ ├── 1.1.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── reactive-resume/ │ │ │ ├── 1.0.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── readarr/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_1_57/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── recyclarr/ │ │ │ ├── 1.3.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── redis/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── run_as_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── noauth-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── requestrr/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── restic-rest-server/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── host-networking-true.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ └── option-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── retrom/ │ │ │ ├── 1.1.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── romm/ │ │ │ ├── 1.2.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── roundcube/ │ │ │ ├── 1.6.12/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── rsyncd/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── rsync_macros/ │ │ │ │ │ └── rsyncd.conf │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── hostnet-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── rust-desk/ │ │ │ ├── 1.7.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ ├── remove_host_net │ │ │ │ │ └── remove_relay_container │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── rust-desk-relay/ │ │ │ ├── 1.0.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── rustfs/ │ │ │ ├── 1.1.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── snmd-values.yaml │ │ │ │ └── snsd-https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── sabnzbd/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── satisfactory-server/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── scrutiny/ │ │ │ ├── 1.3.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── remove_disks_config │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── scrypted/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── searxng/ │ │ │ ├── 1.4.37/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── remove_host_network │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── limiter-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── seaweedfs/ │ │ │ ├── 1.1.14/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── seerr/ │ │ │ ├── 1.0.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── sftpgo/ │ │ │ ├── 1.3.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ ├── nosftp-values.yaml │ │ │ │ └── plugins-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── shelfmark/ │ │ │ ├── 1.0.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── shlink/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── shoko-server/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── sickgear/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── signal-cli-rest-api/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── slskd/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── sonarr/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── speedtest-tracker/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── split-pro/ │ │ │ ├── 1.0.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── spottarr/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── stalwart/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── stash/ │ │ │ ├── 1.1.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── stdapi-ai/ │ │ │ ├── 1.0.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── steam-headless/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── stirling-pdf/ │ │ │ ├── 1.1.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── sure/ │ │ │ ├── 1.0.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tailscale/ │ │ │ ├── 1.4.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tandoor-recipes/ │ │ │ ├── 1.2.22/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tautulli/ │ │ │ ├── 1.3.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tdarr/ │ │ │ ├── 1.3.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tdarr-node/ │ │ │ ├── 1.1.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── teamspeak/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── termix/ │ │ │ ├── 1.2.4/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── remove_host_net │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── terraria/ │ │ │ ├── 1.4.3/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── config_migration │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── password-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── terraria-tshock/ │ │ │ ├── 1.0.4/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── password-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── teslamate/ │ │ │ ├── 1.0.4/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── api-values.yaml │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tftpd-hpa/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── create-values.yaml │ │ │ │ └── readonly-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── three-proxy/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tianji/ │ │ │ ├── 1.2.23/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── timelinize/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── origin_env_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tiny-media-manager/ │ │ │ ├── 1.3.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tinyauth/ │ │ │ ├── 1.1.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── toparr/ │ │ │ ├── 1.0.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── traccar/ │ │ │ ├── 1.2.15/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tracearr/ │ │ │ ├── 1.2.22/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── traefik/ │ │ │ ├── 1.0.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── transmission/ │ │ │ ├── 1.3.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── incomplete_dir_migration │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── setup.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── no-incomplete-values.yaml │ │ │ │ └── same-incomplete-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── trilium-notes/ │ │ │ ├── 1.1.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tubearchivist/ │ │ │ ├── 1.2.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── app_url_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── tvheadend/ │ │ │ ├── 1.1.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── twingate-connector/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── twofactor-auth/ │ │ │ ├── 1.3.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── reverse-proxy-guard-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── umami/ │ │ │ ├── 1.2.14/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── unifi-controller/ │ │ │ ├── 1.4.19/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_1_65/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── 2.1.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── v2_breaking │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── unifi-protect-backup/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── unmanic/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── unpackerr/ │ │ │ ├── 1.1.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── uptime-kuma/ │ │ │ ├── 1.2.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── urbackup/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── host-networking-true.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── vane/ │ │ │ ├── 1.0.0/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── vaultwarden/ │ │ │ ├── 1.6.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ ├── no-admin-values.yaml │ │ │ │ └── no-ws-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── versitygw/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── admin-values.yaml │ │ │ │ ├── basic-values.yaml │ │ │ │ └── no-web-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── vikunja/ │ │ │ ├── 2.0.28/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── vitransfer/ │ │ │ ├── 1.2.23/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── add_share_token_secret │ │ │ │ │ └── remove_config_storage │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── warracker/ │ │ │ ├── 1.2.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── webdav/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── test_values/ │ │ │ │ │ ├── extra-values.yaml │ │ │ │ │ ├── http-basicauth-other-user-values.yaml │ │ │ │ │ ├── http-basicauth-values.yaml │ │ │ │ │ ├── http-https-basicauth-other-user-values.yaml │ │ │ │ │ ├── http-https-basicauth-values.yaml │ │ │ │ │ ├── http-https-noauth-other-user-values.yaml │ │ │ │ │ ├── http-https-noauth-values.yaml │ │ │ │ │ ├── http-noauth-other-user-values.yaml │ │ │ │ │ ├── http-noauth-values.yaml │ │ │ │ │ ├── https-basicauth-other-user-values.yaml │ │ │ │ │ └── https-basicauth-values.yaml │ │ │ │ └── webdav_macros/ │ │ │ │ ├── httpd.conf │ │ │ │ ├── webdav_core.conf │ │ │ │ ├── webdav_http.conf │ │ │ │ └── webdav_https.conf │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── wger/ │ │ │ ├── 1.2.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── nginx.conf │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── whoogle/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── wiki-js/ │ │ │ ├── 1.2.14/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ ├── config.js │ │ │ │ │ └── config.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── windmill/ │ │ │ ├── 1.2.50/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── caddyfile.conf.jinja │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── docker-values.yaml │ │ │ │ └── report-worker-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── wizarr/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── woodpecker-ci/ │ │ │ ├── 1.2.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── wordpress/ │ │ │ ├── 1.4.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── wyze-bridge/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── noauth-values.yaml │ │ │ │ └── webrtc-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── xmrig/ │ │ │ ├── 1.0.4/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── entrypoint.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── yamtrack/ │ │ │ ├── 1.2.16/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── zabbix/ │ │ │ ├── 1.0.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── zammad/ │ │ │ ├── 1.2.14/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── zerobyte/ │ │ │ ├── 1.1.21/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── app_secret_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── fuse-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── zerotier/ │ │ │ ├── 1.3.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── no-host-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── zigbee2mqtt/ │ │ │ ├── 1.1.9/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── zipline/ │ │ │ ├── 1.2.16/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── remove_certificate │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── zoraxy/ │ │ │ ├── 1.1.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── zerotier-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ └── zwave-js-ui/ │ │ ├── 1.1.13/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.js │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── app_versions.json │ │ └── item.yaml │ ├── dev/ │ │ ├── docker-socket-proxy/ │ │ │ ├── 1.1.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ └── truenas-webui/ │ │ ├── 1.1.5/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── app_versions.json │ │ └── item.yaml │ ├── enterprise/ │ │ ├── asigra-ds-system/ │ │ │ ├── 1.1.41/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── remove_gpu_key │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_1_77/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── haproxy_config.macro │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── cluster-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── ix-remote-assist/ │ │ │ ├── 1.0.42/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_1_77/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── minio/ │ │ │ ├── 1.3.17/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_1_77/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-multi-mode-values.yaml │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ └── syncthing/ │ │ ├── 2.0.2/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── app_migrations.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── migrations/ │ │ │ │ └── ip_port_migration │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_1_77/ │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ └── setup.sh.jinja │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── https-values.yaml │ │ ├── app_versions.json │ │ └── item.yaml │ ├── stable/ │ │ ├── aistor/ │ │ │ ├── 1.1.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── collabora/ │ │ │ ├── 1.5.11/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── nginx.conf.jinja │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── diskoverdata/ │ │ │ ├── 1.8.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── data_crawl_migration │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── diskover_macros/ │ │ │ │ │ ├── crontab │ │ │ │ │ ├── fix-nginx.sh │ │ │ │ │ └── setup-cron.sh │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── elastic-search/ │ │ │ ├── 1.4.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── emby/ │ │ │ ├── 1.4.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── hostnet-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── home-assistant/ │ │ │ ├── 1.8.24/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ ├── config.sh.jinja │ │ │ │ │ └── config.yaml.jinja │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── ix-app/ │ │ │ ├── 1.4.3/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── minio/ │ │ │ ├── 1.2.23/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── migrate_from_kubernetes │ │ │ │ │ └── migration_helpers/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cpu.py │ │ │ │ │ ├── dns_config.py │ │ │ │ │ ├── kubernetes_secrets.py │ │ │ │ │ ├── memory.py │ │ │ │ │ ├── resources.py │ │ │ │ │ └── storage.py │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_1_16/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portal.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── 1.4.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── netdata/ │ │ │ ├── 1.4.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── nextcloud/ │ │ │ ├── 2.0.33/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── remove_same_storage_field │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_1_53/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ ├── nc.jinja.conf │ │ │ │ │ └── nc.jinja.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ ├── imaginary-values.yaml │ │ │ │ └── no-cron-values.yaml │ │ │ ├── 2.3.0/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── remove_same_storage_field │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_2_2/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ ├── nc.jinja.conf │ │ │ │ │ └── nc.jinja.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ ├── imaginary-values.yaml │ │ │ │ └── no-cron-values.yaml │ │ │ ├── 2.3.22/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── ip_port_migration │ │ │ │ │ └── remove_same_storage_field │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ ├── nc.jinja.conf │ │ │ │ │ └── nc.jinja.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ ├── imaginary-values.yaml │ │ │ │ └── no-cron-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── photoprism/ │ │ │ ├── 1.4.6/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── host-values.yaml │ │ │ │ ├── https-values.yaml │ │ │ │ └── pass-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── pihole/ │ │ │ ├── 1.4.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── dhcp-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── plex/ │ │ │ ├── 1.3.8/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── hostnet-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── prometheus/ │ │ │ ├── 1.4.10/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ └── init.sh │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── hostnet-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── seaweedfs/ │ │ │ ├── 1.2.13/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ └── s3-https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── storj/ │ │ │ ├── 1.4.5/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ ├── auth_token_rm_migration │ │ │ │ │ ├── domain_address_migration │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ ├── macros/ │ │ │ │ │ ├── entrypoint.sh │ │ │ │ │ └── init.sh │ │ │ │ └── test_values/ │ │ │ │ └── basic-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ ├── syncthing/ │ │ │ ├── 1.3.7/ │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ ├── app_migrations.yaml │ │ │ │ ├── ix_values.yaml │ │ │ │ ├── migrations/ │ │ │ │ │ └── ip_port_migration │ │ │ │ ├── questions.yaml │ │ │ │ └── templates/ │ │ │ │ ├── docker-compose.yaml │ │ │ │ ├── library/ │ │ │ │ │ └── base_v2_3_4/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── container.py │ │ │ │ │ ├── depends.py │ │ │ │ │ ├── deploy.py │ │ │ │ │ ├── deps.py │ │ │ │ │ ├── deps_cron.py │ │ │ │ │ ├── deps_elastic.py │ │ │ │ │ ├── deps_guacd.py │ │ │ │ │ ├── deps_mariadb.py │ │ │ │ │ ├── deps_meilisearch.py │ │ │ │ │ ├── deps_memcached.py │ │ │ │ │ ├── deps_mongodb.py │ │ │ │ │ ├── deps_perms.py │ │ │ │ │ ├── deps_postgres.py │ │ │ │ │ ├── deps_redis.py │ │ │ │ │ ├── deps_solr.py │ │ │ │ │ ├── deps_tika.py │ │ │ │ │ ├── device.py │ │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ │ ├── devices.py │ │ │ │ │ ├── dns.py │ │ │ │ │ ├── docker_client.py │ │ │ │ │ ├── environment.py │ │ │ │ │ ├── error.py │ │ │ │ │ ├── expose.py │ │ │ │ │ ├── extra_hosts.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── functions.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── networks.py │ │ │ │ │ ├── notes.py │ │ │ │ │ ├── portals.py │ │ │ │ │ ├── ports.py │ │ │ │ │ ├── render.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── restart.py │ │ │ │ │ ├── security_opts.py │ │ │ │ │ ├── storage.py │ │ │ │ │ ├── sysctls.py │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ │ ├── test_configs.py │ │ │ │ │ │ ├── test_container.py │ │ │ │ │ │ ├── test_depends.py │ │ │ │ │ │ ├── test_deps.py │ │ │ │ │ │ ├── test_device.py │ │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ │ ├── test_dns.py │ │ │ │ │ │ ├── test_environment.py │ │ │ │ │ │ ├── test_expose.py │ │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ │ ├── test_functions.py │ │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ │ ├── test_labels.py │ │ │ │ │ │ ├── test_networks.py │ │ │ │ │ │ ├── test_notes.py │ │ │ │ │ │ ├── test_portal.py │ │ │ │ │ │ ├── test_ports.py │ │ │ │ │ │ ├── test_render.py │ │ │ │ │ │ ├── test_resources.py │ │ │ │ │ │ ├── test_restart.py │ │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ │ ├── test_validations.py │ │ │ │ │ │ └── test_volumes.py │ │ │ │ │ ├── tmpfs.py │ │ │ │ │ ├── truenas_client.py │ │ │ │ │ ├── validations.py │ │ │ │ │ ├── volume_mount.py │ │ │ │ │ ├── volume_mount_types.py │ │ │ │ │ ├── volume_sources.py │ │ │ │ │ ├── volume_types.py │ │ │ │ │ └── volumes.py │ │ │ │ └── test_values/ │ │ │ │ ├── basic-values.yaml │ │ │ │ ├── host-values.yaml │ │ │ │ └── https-values.yaml │ │ │ ├── app_versions.json │ │ │ └── item.yaml │ │ └── wg-easy/ │ │ ├── 2.1.5/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ └── hostnet-values.yaml │ │ ├── app_versions.json │ │ └── item.yaml │ └── test/ │ ├── nextcloud/ │ │ ├── 1.3.5/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── ix_values.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v2_3_4/ │ │ │ │ ├── __init__.py │ │ │ │ ├── configs.py │ │ │ │ ├── container.py │ │ │ │ ├── depends.py │ │ │ │ ├── deploy.py │ │ │ │ ├── deps.py │ │ │ │ ├── deps_cron.py │ │ │ │ ├── deps_elastic.py │ │ │ │ ├── deps_guacd.py │ │ │ │ ├── deps_mariadb.py │ │ │ │ ├── deps_meilisearch.py │ │ │ │ ├── deps_memcached.py │ │ │ │ ├── deps_mongodb.py │ │ │ │ ├── deps_perms.py │ │ │ │ ├── deps_postgres.py │ │ │ │ ├── deps_redis.py │ │ │ │ ├── deps_solr.py │ │ │ │ ├── deps_tika.py │ │ │ │ ├── device.py │ │ │ │ ├── device_cgroup_rules.py │ │ │ │ ├── devices.py │ │ │ │ ├── dns.py │ │ │ │ ├── docker_client.py │ │ │ │ ├── environment.py │ │ │ │ ├── error.py │ │ │ │ ├── expose.py │ │ │ │ ├── extra_hosts.py │ │ │ │ ├── formatter.py │ │ │ │ ├── functions.py │ │ │ │ ├── healthcheck.py │ │ │ │ ├── labels.py │ │ │ │ ├── networks.py │ │ │ │ ├── notes.py │ │ │ │ ├── portals.py │ │ │ │ ├── ports.py │ │ │ │ ├── render.py │ │ │ │ ├── resources.py │ │ │ │ ├── restart.py │ │ │ │ ├── security_opts.py │ │ │ │ ├── storage.py │ │ │ │ ├── sysctls.py │ │ │ │ ├── tests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_build_image.py │ │ │ │ │ ├── test_configs.py │ │ │ │ │ ├── test_container.py │ │ │ │ │ ├── test_depends.py │ │ │ │ │ ├── test_deps.py │ │ │ │ │ ├── test_device.py │ │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ │ ├── test_dns.py │ │ │ │ │ ├── test_environment.py │ │ │ │ │ ├── test_expose.py │ │ │ │ │ ├── test_extra_hosts.py │ │ │ │ │ ├── test_formatter.py │ │ │ │ │ ├── test_functions.py │ │ │ │ │ ├── test_healthcheck.py │ │ │ │ │ ├── test_labels.py │ │ │ │ │ ├── test_networks.py │ │ │ │ │ ├── test_notes.py │ │ │ │ │ ├── test_portal.py │ │ │ │ │ ├── test_ports.py │ │ │ │ │ ├── test_render.py │ │ │ │ │ ├── test_resources.py │ │ │ │ │ ├── test_restart.py │ │ │ │ │ ├── test_security_opts.py │ │ │ │ │ ├── test_sysctls.py │ │ │ │ │ ├── test_truenas_client.py │ │ │ │ │ ├── test_validations.py │ │ │ │ │ └── test_volumes.py │ │ │ │ ├── tmpfs.py │ │ │ │ ├── truenas_client.py │ │ │ │ ├── validations.py │ │ │ │ ├── volume_mount.py │ │ │ │ ├── volume_mount_types.py │ │ │ │ ├── volume_sources.py │ │ │ │ ├── volume_types.py │ │ │ │ └── volumes.py │ │ │ ├── macros/ │ │ │ │ ├── builder.jinja │ │ │ │ ├── crontasks │ │ │ │ ├── nginx.conf │ │ │ │ └── tune.ini │ │ │ └── test_values/ │ │ │ ├── basic-values.yaml │ │ │ ├── build-values.yaml │ │ │ └── https-values.yaml │ │ ├── app_versions.json │ │ └── item.yaml │ ├── nginx/ │ │ ├── 1.0.3/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v0_0_1/ │ │ │ │ ├── __init__.py │ │ │ │ └── test.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── 1.0.4/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v0_0_1/ │ │ │ │ ├── __init__.py │ │ │ │ └── test.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── 1.0.5/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v0_0_1/ │ │ │ │ ├── __init__.py │ │ │ │ └── test.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── 1.0.9/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v0_0_1/ │ │ │ │ ├── __init__.py │ │ │ │ └── test.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── app_versions.json │ │ └── item.yaml │ ├── other-nginx/ │ │ ├── 1.0.0/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v0_0_1/ │ │ │ │ ├── __init__.py │ │ │ │ └── test.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── 1.0.4/ │ │ │ ├── README.md │ │ │ ├── app.yaml │ │ │ ├── questions.yaml │ │ │ └── templates/ │ │ │ ├── docker-compose.yaml │ │ │ ├── library/ │ │ │ │ └── base_v0_0_1/ │ │ │ │ ├── __init__.py │ │ │ │ └── test.py │ │ │ └── test_values/ │ │ │ └── basic-values.yaml │ │ ├── app_versions.json │ │ └── item.yaml │ └── seaweedfs/ │ ├── 1.0.7/ │ │ ├── README.md │ │ ├── app.yaml │ │ ├── ix_values.yaml │ │ ├── questions.yaml │ │ └── templates/ │ │ ├── docker-compose.yaml │ │ ├── library/ │ │ │ └── base_v2_1_65/ │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── configs.py │ │ │ ├── container.py │ │ │ ├── depends.py │ │ │ ├── deploy.py │ │ │ ├── deps.py │ │ │ ├── deps_elastic.py │ │ │ ├── deps_mariadb.py │ │ │ ├── deps_meilisearch.py │ │ │ ├── deps_mongodb.py │ │ │ ├── deps_perms.py │ │ │ ├── deps_postgres.py │ │ │ ├── deps_redis.py │ │ │ ├── deps_solr.py │ │ │ ├── deps_tika.py │ │ │ ├── device.py │ │ │ ├── device_cgroup_rules.py │ │ │ ├── devices.py │ │ │ ├── dns.py │ │ │ ├── environment.py │ │ │ ├── error.py │ │ │ ├── expose.py │ │ │ ├── extra_hosts.py │ │ │ ├── formatter.py │ │ │ ├── functions.py │ │ │ ├── healthcheck.py │ │ │ ├── labels.py │ │ │ ├── notes.py │ │ │ ├── portals.py │ │ │ ├── ports.py │ │ │ ├── render.py │ │ │ ├── resources.py │ │ │ ├── restart.py │ │ │ ├── security_opts.py │ │ │ ├── storage.py │ │ │ ├── sysctls.py │ │ │ ├── tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_build_image.py │ │ │ │ ├── test_configs.py │ │ │ │ ├── test_container.py │ │ │ │ ├── test_depends.py │ │ │ │ ├── test_deps.py │ │ │ │ ├── test_device.py │ │ │ │ ├── test_device_cgroup_rules.py │ │ │ │ ├── test_dns.py │ │ │ │ ├── test_environment.py │ │ │ │ ├── test_expose.py │ │ │ │ ├── test_extra_hosts.py │ │ │ │ ├── test_formatter.py │ │ │ │ ├── test_functions.py │ │ │ │ ├── test_healthcheck.py │ │ │ │ ├── test_labels.py │ │ │ │ ├── test_notes.py │ │ │ │ ├── test_portal.py │ │ │ │ ├── test_ports.py │ │ │ │ ├── test_render.py │ │ │ │ ├── test_resources.py │ │ │ │ ├── test_restart.py │ │ │ │ ├── test_security_opts.py │ │ │ │ ├── test_sysctls.py │ │ │ │ ├── test_validations.py │ │ │ │ └── test_volumes.py │ │ │ ├── tmpfs.py │ │ │ ├── validations.py │ │ │ ├── volume_mount.py │ │ │ ├── volume_mount_types.py │ │ │ ├── volume_sources.py │ │ │ ├── volume_types.py │ │ │ └── volumes.py │ │ └── test_values/ │ │ ├── basic-values.yaml │ │ └── s3-https-values.yaml │ ├── app_versions.json │ └── item.yaml └── zz.py