chore: use latest tag for tandoor build

This commit is contained in:
Alexandre
2025-08-02 20:27:08 +02:00
parent 8907889e41
commit 92d274bcad
5 changed files with 14 additions and 18 deletions

View File

@@ -7,9 +7,7 @@ Required :
"ALLOWED_HOSTS": "your system url", # You need to input your homeassistant urls (comma separated, without space) to allow ingress to work
"DB_TYPE": "list(sqlite|postgresql_external)" # Type of database to use.
"SECRET_KEY": "str", # Your secret key
"PORT": 9928 # By default, the webui is available on http://HAurl:9928. If you ever need to change the port, you should never do it within the app, but only through this option
"Environment": 0|1 # 1 is debug mode, 0 is normal mode. You should run in normal mode unless actively developing.
"GUNICORN_MEDIA": 0|1 # 1 enables gunicorn media hosting. This is not recommended. You should use an nginx server to host your media - see docs.
Optional :
"POSTGRES_HOST": "str?", # Needed for postgresql_external
"POSTGRES_PORT": "str?", # Needed for postgresql_external
@@ -18,6 +16,8 @@ Optional :
"POSTGRES_DB": "str?" # Needed for postgresql_external
"externalfiles_folder": "str?" # a folder that you want to map in to tandoor. Not needed as /share/ and /media/ are mapped. This folder will be created if it doesn't already exist.
```
This add-on now uses Tandoor's integrated Nginx server and exposes port 80 (mapped to 9928 by default).
### Mariadb
Mariadb is a popular addon in the home assistant community, however it is not supported by the Tandoor Recipes application.
@@ -29,11 +29,6 @@ This is the "Environment" setting.
### Authentication
using external authentication. Tandoor Recipes supports this, but it is not implemented yet.
### Gunicorn Media
Disabling gunicorn media is a good idea, but needs a webserver running to host the media files. The webserver should map `/media/`.
See https://docs.tandoor.dev/install/docker/#nginx-vs-gunicorn for more information on this.
0 is gunicorn DISABLED - media won't work without an nginx webserver.
1 is gunicorn enabled - mesia will be hosted using gunicorn which is not recommended.
### External Recipe files