fix(dailytxt): config and update logo

This commit is contained in:
Nicolas Meienberger 2023-03-20 21:53:46 +01:00
parent b76d3bcb70
commit 800a8076c2
3 changed files with 7 additions and 8 deletions

View File

@ -7,7 +7,7 @@
"id": "dailytxt", "id": "dailytxt",
"tipi_version": 1, "tipi_version": 1,
"version": "1.0.12", "version": "1.0.12",
"categories": ["development"], "categories": ["utilities"],
"description": "DailyTxT is an encrypted Diary Web-App to write down your stories of the day and to find them again easily.", "description": "DailyTxT is an encrypted Diary Web-App to write down your stories of the day and to find them again easily.",
"short_desc": "Encrypted Diary Web-App", "short_desc": "Encrypted Diary Web-App",
"author": "PhiTux", "author": "PhiTux",
@ -22,8 +22,8 @@
{ {
"type": "text", "type": "text",
"label": "Allow User Registrastion", "label": "Allow User Registrastion",
"hint": "Set it to False to disallow registration of new users.", "hint": "Set it to false to disallow registration of new users.",
"placeholder": "True", "placeholder": "true",
"required": true, "required": true,
"env_variable": "DAILYTXT_ALLOW_REGISTRATION" "env_variable": "DAILYTXT_ALLOW_REGISTRATION"
} }

View File

@ -1,10 +1,10 @@
version: "3" version: '3.7'
services: services:
dailytxt: dailytxt:
image: phitux/dailytxt:1.0.12 image: phitux/dailytxt:1.0.12
container_name: dailytxt container_name: dailytxt
restart: restart: unless-stopped
environment: environment:
- PORT=8765 - PORT=8765
- SECRET_KEY=${DAILYTXT_SECRET_KEY} - SECRET_KEY=${DAILYTXT_SECRET_KEY}
@ -13,9 +13,9 @@ services:
- JWT_EXP_DAYS=60 - JWT_EXP_DAYS=60
- ENABLE_UPDATE_CHECK=True - ENABLE_UPDATE_CHECK=True
ports: ports:
- ${APP_PORT}:8765" - ${APP_PORT}:8765
volumes: volumes:
- "${APP_DATA_DIR}/data/dailytxt:/app/data/" - '${APP_DATA_DIR}/data/dailytxt:/app/data/'
networks: networks:
- tipi_main_network - tipi_main_network
labels: labels:
@ -25,4 +25,3 @@ services:
traefik.http.routers.dailytxt.service: dailytxt traefik.http.routers.dailytxt.service: dailytxt
traefik.http.routers.dailytxt.tls.certresolver: myresolver traefik.http.routers.dailytxt.tls.certresolver: myresolver
traefik.http.services.dailytxt.loadbalancer.server.port: 8765 traefik.http.services.dailytxt.loadbalancer.server.port: 8765

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB