Files
app-catalog-felhom.eu/templates/outline/docker-compose.yml
T
admin 4ce7beea9e outline: set PGSSLMODE=disable (1.x defaults to SSL; the sidecar Postgres has none)
outline 1.9.1 crash-looped (15 restarts in 420s) on a fresh deploy:

  SequelizeConnectionError: The server does not support SSL connections
  Set the PGSSLMODE environment variable to 'disable' or enable SSL on your
  database server.

The stack's own Postgres sidecar is on the app-internal network and does not
serve SSL, so the correct answer is to disable it client-side. Env var proven
wrong by the deploy.

Campaign 7 catalog sweep.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Nn3VgQk9iwEGgyx6QJ2NvE
2026-07-19 00:42:28 +02:00

113 lines
3.3 KiB
YAML

# Outline - Modern csapat tudásbázis Markdown támogatással
# Domain: ${SUBDOMAIN}.${DOMAIN}
# Database: postgres
# RAM: ~200M (mem_limit: 768M) | Pi-compatible: No
#
# Environment variables:
# DOMAIN - Your domain (e.g., demo-felhom.eu)
# SECRET_KEY - Titkosítási kulcs (auto-generated)
# UTILS_SECRET - Segédprogram kulcs (auto-generated)
# DB_PASSWORD - Adatbázis jelszó (auto-generated)
services:
outline:
image: outlinewiki/outline:1.9.1
container_name: outline
restart: unless-stopped
depends_on:
outline-postgres:
condition: service_healthy
outline-redis:
condition: service_healthy
environment:
- NODE_ENV=production
- SECRET_KEY=${SECRET_KEY}
- UTILS_SECRET=${UTILS_SECRET}
- DATABASE_URL=postgres://outline:${DB_PASSWORD}@outline-postgres:5432/outline
# Az Outline 1.x alapértelmezésben SSL-t vár a Postgrestől. A stackben futó
# sidecar Postgres nem beszél SSL-t (belső hálózat), ezért enélkül az app
# indulási hurokba kerül: "The server does not support SSL connections".
- PGSSLMODE=disable
- REDIS_URL=redis://outline-redis:6379
- URL=https://${SUBDOMAIN}.${DOMAIN}
- PORT=3000
- FILE_STORAGE=local
- FILE_STORAGE_LOCAL_ROOT_DIR=/var/lib/outline/data
volumes:
- outline_data:/var/lib/outline/data
networks:
- traefik-public
- outline-internal
deploy:
resources:
limits:
memory: 768M
healthcheck:
test: ["CMD", "node", "-e", "const http = require('http'); http.get('http://127.0.0.1:3000/_health', (r) => { process.exit(r.statusCode === 200 ? 0 : 1) }).on('error', () => process.exit(1))"]
interval: 30s
timeout: 5s
retries: 3
start_period: 30s
labels:
- "traefik.enable=true"
- "traefik.http.routers.outline.rule=Host(`${SUBDOMAIN}.${DOMAIN}`)"
- "traefik.http.routers.outline.entrypoints=websecure"
- "traefik.http.routers.outline.tls=true"
- "traefik.http.routers.outline.tls.certresolver=letsencrypt"
- "traefik.http.services.outline.loadbalancer.server.port=3000"
outline-postgres:
image: postgres:16-alpine
container_name: outline-postgres
restart: unless-stopped
environment:
- POSTGRES_USER=outline
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=outline
- TZ=Europe/Budapest
volumes:
- outline_postgres_data:/var/lib/postgresql/data
networks:
- outline-internal
deploy:
resources:
limits:
memory: 256M
healthcheck:
test: ["CMD-SHELL", "pg_isready -U outline -d outline"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
outline-redis:
image: redis:7-alpine
container_name: outline-redis
restart: unless-stopped
environment:
- TZ=Europe/Budapest
volumes:
- outline_redis_data:/data
networks:
- outline-internal
deploy:
resources:
limits:
memory: 128M
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
volumes:
outline_data:
outline_postgres_data:
outline_redis_data:
networks:
traefik-public:
external: true
outline-internal: