From 1042158470a11c1c279acdeb0c77bab39479fbf6 Mon Sep 17 00:00:00 2001 From: msnie Date: Fri, 31 Jan 2025 12:19:29 +0100 Subject: [PATCH] fixed broken video link in markdown. merged @neda CI --- mastodon/docker-compose.traefik.yml | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/mastodon/docker-compose.traefik.yml b/mastodon/docker-compose.traefik.yml index a27ebba..476ed2a 100644 --- a/mastodon/docker-compose.traefik.yml +++ b/mastodon/docker-compose.traefik.yml @@ -1,4 +1,4 @@ -version: '3' +version: "3" services: db: restart: unless-stopped @@ -7,11 +7,11 @@ services: networks: - default healthcheck: - test: ['CMD', 'pg_isready', '-U', 'postgres'] + test: ["CMD", "pg_isready", "-U", "postgres"] volumes: - ./postgres14:/var/lib/postgresql/data environment: - - 'POSTGRES_HOST_AUTH_METHOD=trust' + - "POSTGRES_HOST_AUTH_METHOD=trust" redis: restart: unless-stopped @@ -19,7 +19,7 @@ services: networks: - default healthcheck: - test: ['CMD', 'redis-cli', 'ping'] + test: ["CMD", "redis-cli", "ping"] volumes: - /srv/mastodon/redis:/data @@ -32,7 +32,11 @@ services: - traefik - default healthcheck: - test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:3000/health || exit 1'] + test: + [ + "CMD-SHELL", + "wget -q --spider --proxy=off localhost:3000/health || exit 1", + ] depends_on: - db - redis @@ -57,7 +61,11 @@ services: - default - traefik healthcheck: - test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1'] + test: + [ + "CMD-SHELL", + "wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1", + ] depends_on: - db - redis @@ -84,7 +92,7 @@ services: volumes: - /srv/mastodon/sidekiq:/mastodon/public/system healthcheck: - test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"] + test: ["CMD-SHELL", "ps aux | grep '[s]idekiq\ 6' || false"] networks: traefik: