fix yamllint errors

This commit is contained in:
2026-01-02 19:28:29 +03:00
parent 19ae4632ea
commit af5b00d62d

View File

@@ -32,7 +32,7 @@ services:
- OAUTH2_USER_CREATION=1 - OAUTH2_USER_CREATION=1
- METRICS_COLLECTOR=1 - METRICS_COLLECTOR=1
- METRICS_ALLOWED_NETWORKS=0.0.0.0/0 - METRICS_ALLOWED_NETWORKS=0.0.0.0/0
miniflux_postgres: miniflux_postgres:
image: postgres:16.3-bookworm image: postgres:16.3-bookworm
container_name: miniflux_postgres container_name: miniflux_postgres
@@ -50,7 +50,12 @@ services:
- "{{ secrets_dir }}:/secrets:ro" - "{{ secrets_dir }}:/secrets:ro"
- "{{ postgres_data_dir }}:/var/lib/postgresql/data" - "{{ postgres_data_dir }}:/var/lib/postgresql/data"
healthcheck: healthcheck:
test: ["CMD", "pg_isready", "--username={{ miniflux_postgres_user }}", "--dbname={{ miniflux_postgres_database }}"] test: [
"CMD",
"pg_isready",
"--username={{ miniflux_postgres_user }}",
"--dbname={{ miniflux_postgres_database }}",
]
interval: 10s interval: 10s
start_period: 30s start_period: 30s