diff --git a/apps/ghostfolio/config.json b/apps/ghostfolio/config.json index 13e6f92d..18b40ba0 100644 --- a/apps/ghostfolio/config.json +++ b/apps/ghostfolio/config.json @@ -1,45 +1,47 @@ { - "$schema": "../schema.json", - "name": "Ghostfolio", - "port": 3333, - "available": true, - "exposable": true, - "id": "ghostfolio", - "tipi_version": 1, - "version": "1.300.0", - "categories": ["finance"], - "description": "Ghostfolio is a privacy-first, open source dashboard for your personal finances.", - "short_desc": "Open Source Wealth Management Software.", - "author": "dtslvr", - "source": "https://github.com/ghostfolio/ghostfolio", - "form_fields": [ - { - "type": "random", - "min": 32, - "max": 32, - "label": "Access token salt", - "env_variable": "GHOSTFOLIO_ACCESS_TOKEN_SALT" - }, - { - "type": "random", - "min": 32, - "max": 32, - "label": "JSON Web Tokens secret key", - "env_variable": "GHOSTFOLIO_JWT_SECRET_KEY" - }, - { - "type": "random", - "min": 32, - "max": 32, - "label": "Database password", - "env_variable": "GHOSTFOLIO_DB_PASSWORD" - }, - { - "type": "random", - "min": 32, - "max": 32, - "label": "Redis password", - "env_variable": "GHOSTFOLIO_REDIS_PASSWORD" - } - ] - } + "$schema": "../schema.json", + "name": "Ghostfolio", + "port": 3333, + "available": true, + "exposable": true, + "id": "ghostfolio", + "tipi_version": 2, + "version": "1.301.0", + "categories": [ + "finance" + ], + "description": "Ghostfolio is a privacy-first, open source dashboard for your personal finances.", + "short_desc": "Open Source Wealth Management Software.", + "author": "dtslvr", + "source": "https://github.com/ghostfolio/ghostfolio", + "form_fields": [ + { + "type": "random", + "min": 32, + "max": 32, + "label": "Access token salt", + "env_variable": "GHOSTFOLIO_ACCESS_TOKEN_SALT" + }, + { + "type": "random", + "min": 32, + "max": 32, + "label": "JSON Web Tokens secret key", + "env_variable": "GHOSTFOLIO_JWT_SECRET_KEY" + }, + { + "type": "random", + "min": 32, + "max": 32, + "label": "Database password", + "env_variable": "GHOSTFOLIO_DB_PASSWORD" + }, + { + "type": "random", + "min": 32, + "max": 32, + "label": "Redis password", + "env_variable": "GHOSTFOLIO_REDIS_PASSWORD" + } + ] +} diff --git a/apps/ghostfolio/docker-compose.yml b/apps/ghostfolio/docker-compose.yml index 8ed12f8f..dd1aba6f 100644 --- a/apps/ghostfolio/docker-compose.yml +++ b/apps/ghostfolio/docker-compose.yml @@ -3,7 +3,7 @@ version: "3.9" services: ghostfolio: container_name: ghostfolio - image: ghostfolio/ghostfolio:1.300.0 + image: ghostfolio/ghostfolio:1.301.0 restart: unless-stopped ports: - ${APP_PORT}:3333