mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-16 11:25:25 +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>
37 lines
966 B
YAML
37 lines
966 B
YAML
version: "3.8"
|
|
services:
|
|
leantime:
|
|
image: leantime/leantime:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080
|
|
environment:
|
|
- LEAN_APP_URL=${LEAN_APP_URL}
|
|
- LEAN_SESSION_PASSWORD=${LEAN_SESSION_PASSWORD}
|
|
- LEAN_DB_HOST=db
|
|
- LEAN_DB_USER=${LEAN_DB_USER}
|
|
- LEAN_DB_PASSWORD=${LEAN_DB_PASSWORD}
|
|
- LEAN_DB_DATABASE=${LEAN_DB_DATABASE}
|
|
volumes:
|
|
- leantime-files:/var/www/html/userfiles
|
|
- leantime-public:/var/www/html/public/userfiles
|
|
depends_on:
|
|
- db
|
|
|
|
db:
|
|
image: mariadb:11
|
|
restart: unless-stopped
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
|
|
- MYSQL_DATABASE=${LEAN_DB_DATABASE}
|
|
- MYSQL_USER=${LEAN_DB_USER}
|
|
- MYSQL_PASSWORD=${LEAN_DB_PASSWORD}
|
|
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
|
|
volumes:
|
|
- db-data:/var/lib/mysql
|
|
|
|
volumes:
|
|
leantime-files: {}
|
|
leantime-public: {}
|
|
db-data: {}
|