mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-12 01:15:24 +02:00
- gel: allow plain HTTP for the reverse proxy (GEL_SERVER_HTTP_ENDPOINT_SECURITY=optional), enable admin UI and point the domain at /ui - keydb: remove HTTP domain and published port — pure Redis-protocol DB reachable via internal network - leantime: image serves on 8080 (non-root nginx), add required LEAN_APP_URL and LEAN_SESSION_PASSWORD, use utf8mb4 - matomo: removed from this PR, already fixed in #765 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
19 lines
442 B
YAML
19 lines
442 B
YAML
version: "3.8"
|
|
services:
|
|
gel:
|
|
image: geldata/gel:6
|
|
restart: unless-stopped
|
|
ports:
|
|
- 5656
|
|
environment:
|
|
- GEL_SERVER_SECURITY=${GEL_SERVER_SECURITY}
|
|
- GEL_SERVER_PASSWORD=${GEL_SERVER_PASSWORD}
|
|
- GEL_SERVER_TLS_CERT_MODE=generate_self_signed
|
|
- GEL_SERVER_HTTP_ENDPOINT_SECURITY=optional
|
|
- GEL_SERVER_ADMIN_UI=enabled
|
|
volumes:
|
|
- gel-data:/var/lib/gel/data
|
|
|
|
volumes:
|
|
gel-data: {}
|