fixed broken video link in markdown. merged @neda CI
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user