chore: fix wrong env name

This commit is contained in:
Nicolas Meienberger 2024-04-27 23:24:51 +02:00
parent bc91c10931
commit 3e8b94a7d3
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ ARCHITECTURE=arm64
TIPI_VERSION=1.5.2
JWT_SECRET=secret
ROOT_FOLDER_HOST=/path/to/runtipi
STORAGE_PATH=/path/to/runtipi
RUNTIPI_APP_DATA_PATH=/path/to/runtipi
NGINX_PORT=7000
NGINX_PORT_SSL=443
DOMAIN=tipi.localhost

View File

@ -156,7 +156,7 @@ export const generateSystemEnvFile = async () => {
envMap.set('DOMAIN', data.domain || envMap.get('DOMAIN') || 'example.com');
envMap.set(
'RUNTIPI_APP_DATA_PATH',
data.appDataPath || envMap.get('APP_DATA_PATH') || rootFolderHost,
data.appDataPath || envMap.get('RUNTIPI_APP_DATA_PATH') || rootFolderHost,
);
envMap.set('POSTGRES_HOST', 'runtipi-db');
envMap.set('POSTGRES_DBNAME', 'tipi');