From a5ab5227e699a9774cca9710b89f5b7b3a6e86f7 Mon Sep 17 00:00:00 2001 From: Daniel Luiz Alves Date: Sun, 22 Jun 2025 14:10:03 -0300 Subject: [PATCH] fix(palmr): update docker-compose to use right environment variable (#188) --- blueprints/palmr/docker-compose.yml | 2 +- blueprints/palmr/template.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprints/palmr/docker-compose.yml b/blueprints/palmr/docker-compose.yml index 9a49b607..5000310e 100644 --- a/blueprints/palmr/docker-compose.yml +++ b/blueprints/palmr/docker-compose.yml @@ -3,7 +3,7 @@ services: image: kyantech/palmr:latest environment: - ENABLE_S3=false - - ENCRYPTION_KEY=${encryption_key} + - ENCRYPTION_KEY=${ENCRYPTION_KEY} ports: - "5487" - "3333" diff --git a/blueprints/palmr/template.toml b/blueprints/palmr/template.toml index 02986819..ca953375 100644 --- a/blueprints/palmr/template.toml +++ b/blueprints/palmr/template.toml @@ -1,6 +1,5 @@ [variables] main_domain = "${domain}" -encryption_key = "${password:32}" [config] [[config.domains]] @@ -9,5 +8,6 @@ port = 5487 host = "${main_domain}" [config.env] +ENCRYPTION_KEY = "" [[config.mounts]] \ No newline at end of file