Fix Tandoor Recipes service port

This commit is contained in:
Rohit Mulani
2026-07-07 23:23:40 +04:00
parent 721fd4ee88
commit 52f765898e
2 changed files with 6 additions and 2 deletions

View File

@@ -22,11 +22,13 @@ services:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
ALLOWED_HOSTS: ${ALLOWED_HOSTS}
CSRF_TRUSTED_ORIGINS: ${CSRF_TRUSTED_ORIGINS}
volumes:
- tandoor_staticfiles:/opt/recipes/staticfiles
- tandoor_mediafiles:/opt/recipes/mediafiles
ports:
- "8080"
- "80"
volumes:
tandoor_db_data:

View File

@@ -8,11 +8,13 @@ mounts = []
[[config.domains]]
serviceName = "tandoor-recipes"
port = 8080
port = 80
host = "${main_domain}"
[config.env]
SECRET_KEY = "${secret_key}"
ALLOWED_HOSTS = "${main_domain}"
CSRF_TRUSTED_ORIGINS = "https://${main_domain}"
POSTGRES_PASSWORD = "${postgres_password}"
POSTGRES_USER = "tandoor"
POSTGRES_DB = "tandoor"