Multistage Dockerfile (FrankenPHP + Octane + Horizon + Reverb) with
docker-compose wiring 6 services: app, mariadb, qdrant, ollama, redis,
traefik. All data mounts to .core/vm/mnt/{config,data,log}. Traefik
routes *.lthn.sh with self-signed TLS. Setup script handles first-run
bootstrap including cert generation and embedding model pull.
Co-Authored-By: Virgil <virgil@lethean.io>
10 lines
341 B
YAML
10 lines
341 B
YAML
# Traefik TLS — local dev (self-signed via mkcert)
|
|
tls:
|
|
certificates:
|
|
- certFile: /etc/traefik/config/certs/lthn.sh.crt
|
|
keyFile: /etc/traefik/config/certs/lthn.sh.key
|
|
stores:
|
|
default:
|
|
defaultCertificate:
|
|
certFile: /etc/traefik/config/certs/lthn.sh.crt
|
|
keyFile: /etc/traefik/config/certs/lthn.sh.key
|