From 053aa25d2c8abe71f9cb0d65ee6346414154b3bd Mon Sep 17 00:00:00 2001 From: mraf Date: Thu, 25 Jan 2024 12:27:41 +0100 Subject: [PATCH] fix: add env variables for wordpress template without database --- templates/compose/wordpress-without-database.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/compose/wordpress-without-database.yaml b/templates/compose/wordpress-without-database.yaml index 0891e6c11..c25a6f702 100644 --- a/templates/compose/wordpress-without-database.yaml +++ b/templates/compose/wordpress-without-database.yaml @@ -9,3 +9,7 @@ services: - wordpress-files:/var/www/html environment: SERVICE_FQDN: + WORDPRESS_DB_HOST: $SERVICE_DB_HOST_WORDPRESS + WORDPRESS_DB_USER: $SERVICE_USER_WORDPRESS + WORDPRESS_DB_PASSWORD: $SERVICE_PASSWORD_WORDPRESS + WORDPRESS_DB_NAME: $SERVICE_DB_NAME_WORDPRESS