From c3594c4022a1cfa00b584303a65506a66a19437e Mon Sep 17 00:00:00 2001 From: DrMxrcy <58747968+DrMxrcy@users.noreply.github.com> Date: Tue, 4 Jul 2023 12:26:01 -0400 Subject: [PATCH] Mastodon Healthcheck Fix (#804) --- apps/mastodon/config.json | 2 +- apps/mastodon/docker-compose.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/mastodon/config.json b/apps/mastodon/config.json index 1bf2f8dc..9eebc01c 100644 --- a/apps/mastodon/config.json +++ b/apps/mastodon/config.json @@ -7,7 +7,7 @@ "force_expose": true, "generate_vapid_keys": true, "id": "mastodon", - "tipi_version": 1, + "tipi_version": 2, "version": "4.1.2", "categories": ["social"], "description": "Your self-hosted, globally interconnected microblogging community", diff --git a/apps/mastodon/docker-compose.yml b/apps/mastodon/docker-compose.yml index d2006e38..f6963248 100644 --- a/apps/mastodon/docker-compose.yml +++ b/apps/mastodon/docker-compose.yml @@ -79,7 +79,7 @@ services: networks: - tipi_main_network healthcheck: - test: ['CMD', 'pg_isready', '-U', 'postgres'] + test: ['CMD', 'pg_isready', '-U', 'tipi'] volumes: - ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data @@ -93,4 +93,4 @@ services: healthcheck: test: ['CMD', 'redis-cli', 'ping'] volumes: - - ${APP_DATA_DIR}/data/redis:/data \ No newline at end of file + - ${APP_DATA_DIR}/data/redis:/data