fixed broken video link in markdown. merged @neda CI

This commit is contained in:
msnie
2025-01-31 12:19:29 +01:00
parent 4b0cf74421
commit 1042158470
+15 -7
View File
@@ -1,4 +1,4 @@
version: '3' version: "3"
services: services:
db: db:
restart: unless-stopped restart: unless-stopped
@@ -7,11 +7,11 @@ services:
networks: networks:
- default - default
healthcheck: healthcheck:
test: ['CMD', 'pg_isready', '-U', 'postgres'] test: ["CMD", "pg_isready", "-U", "postgres"]
volumes: volumes:
- ./postgres14:/var/lib/postgresql/data - ./postgres14:/var/lib/postgresql/data
environment: environment:
- 'POSTGRES_HOST_AUTH_METHOD=trust' - "POSTGRES_HOST_AUTH_METHOD=trust"
redis: redis:
restart: unless-stopped restart: unless-stopped
@@ -19,7 +19,7 @@ services:
networks: networks:
- default - default
healthcheck: healthcheck:
test: ['CMD', 'redis-cli', 'ping'] test: ["CMD", "redis-cli", "ping"]
volumes: volumes:
- /srv/mastodon/redis:/data - /srv/mastodon/redis:/data
@@ -32,7 +32,11 @@ services:
- traefik - traefik
- default - default
healthcheck: 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: depends_on:
- db - db
- redis - redis
@@ -57,7 +61,11 @@ services:
- default - default
- traefik - traefik
healthcheck: 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: depends_on:
- db - db
- redis - redis
@@ -84,7 +92,7 @@ services:
volumes: volumes:
- /srv/mastodon/sidekiq:/mastodon/public/system - /srv/mastodon/sidekiq:/mastodon/public/system
healthcheck: healthcheck:
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"] test: ["CMD-SHELL", "ps aux | grep '[s]idekiq\ 6' || false"]
networks: networks:
traefik: traefik: