From 63d676364f63c23aa9a153f2ef3dc5e837fafeda Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 May 2023 14:34:35 -0400 Subject: [PATCH] chore(deps): update dullage/flatnotes docker tag to v3 (#469) * chore(deps): update dullage/flatnotes docker tag to v3 * Update app version * Update Path and Ports --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version Co-authored-by: DrMxrcy --- apps/flatnotes/config.json | 8 +++++--- apps/flatnotes/docker-compose.yml | 8 ++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/apps/flatnotes/config.json b/apps/flatnotes/config.json index ab00c9e8..e937bb4d 100644 --- a/apps/flatnotes/config.json +++ b/apps/flatnotes/config.json @@ -5,9 +5,11 @@ "exposable": true, "id": "flatnotes", "port": 8137, - "tipi_version": 2, - "version": "v2.2.0", - "categories": ["utilities"], + "tipi_version": 3, + "version": "3.0.0", + "categories": [ + "utilities" + ], "description": "A self-hosted, database-less note taking web app that utilises a flat folder of markdown files for storage.", "short_desc": "A self-hosted, database-less note taking web app", "author": "Dullage", diff --git a/apps/flatnotes/docker-compose.yml b/apps/flatnotes/docker-compose.yml index 15223215..9f3888a2 100644 --- a/apps/flatnotes/docker-compose.yml +++ b/apps/flatnotes/docker-compose.yml @@ -3,7 +3,7 @@ version: "3" services: flatnotes: container_name: flatnotes - image: dullage/flatnotes:v2.2.0 + image: dullage/flatnotes:v3.0.0 environment: FLATNOTES_AUTH_TYPE: ${FLATNOTES_AUTH_TYPE} FLATNOTES_USERNAME: ${FLATNOTES_USERNAME} @@ -11,11 +11,11 @@ services: FLATNOTES_SECRET_KEY: ${FLATNOTES_SECRET_KEY} FLATNOTES_TOTP_KEY: ${FLATNOTES_TOTP_KEY} volumes: - - "${APP_DATA_DIR}/data:/app/data" + - "${APP_DATA_DIR}/data:/data" # - "./index:/app/data/.flatnotes" # Optional. Allows you to save the search index in a different location. ports: - - ${APP_PORT}:80 + - ${APP_PORT}:8080 restart: unless-stopped networks: - tipi_main_network @@ -25,4 +25,4 @@ services: traefik.http.routers.flatnotes.entrypoints: websecure traefik.http.routers.flatnotes.service: flatnotes traefik.http.routers.flatnotes.tls.certresolver: myresolver - traefik.http.services.flatnotes.loadbalancer.server.port: 80 \ No newline at end of file + traefik.http.services.flatnotes.loadbalancer.server.port: 8080 \ No newline at end of file