Sync workspace with Gitea: merge June/July session docs
- README + siklos-docker-services: add authentik/searxng/beszel rows, photos VM section, 2026-06-24 cleanup notes, 2026-07-03 Portainer conversion note (jgpc naming preserved) - Add: authentik setup docs, frigate docs/config, OCIS migration docs, AdventureLog bug report, install-native-apps.sh, workstation-disk-analysis.md - Remove obsolete: cgitta-nextcloud-zip-analysis.md, kopia-restore-guide.md - .gitignore: ocis-credentials.md (secrets stay local), *.bak
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
services:
|
||||
frigate:
|
||||
container_name: frigate
|
||||
image: ghcr.io/blakeblackshear/frigate:stable-tensorrt
|
||||
privileged: true
|
||||
shm_size: "1024mb"
|
||||
restart: always
|
||||
runtime: nvidia
|
||||
environment:
|
||||
- NVIDIA_VISIBLE_DEVICES=all
|
||||
- NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
|
||||
- FRIGATE_RTSP_PASSWORD=restreampass
|
||||
secrets:
|
||||
- frigate_jwt_secret
|
||||
deploy:
|
||||
resources:
|
||||
reservations:
|
||||
devices:
|
||||
- driver: nvidia
|
||||
count: 1
|
||||
capabilities: [gpu, compute, video]
|
||||
volumes:
|
||||
- /srv/docker/frigate/config:/config
|
||||
- /mnt/14TB-HD/frigate/media:/media/frigate
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
ports:
|
||||
- "5000:5000"
|
||||
- "8971:8971"
|
||||
- "8554:8554"
|
||||
- "8555:8555/tcp"
|
||||
- "8555:8555/udp"
|
||||
|
||||
secrets:
|
||||
frigate_jwt_secret:
|
||||
file: /srv/docker/frigate/config/jwt_secret
|
||||
@@ -0,0 +1,25 @@
|
||||
services:
|
||||
open-webui:
|
||||
image: ghcr.io/open-webui/open-webui:main
|
||||
container_name: open-webui
|
||||
network_mode: host
|
||||
restart: always
|
||||
volumes:
|
||||
- open-webui:/app/backend/data
|
||||
environment:
|
||||
- OLLAMA_BASE_URL=http://127.0.0.1:11434
|
||||
- PORT=8080
|
||||
- SCARF_NO_ANALYTICS=true
|
||||
- DO_NOT_TRACK=true
|
||||
- ANONYMIZED_TELEMETRY=false
|
||||
- WHISPER_MODEL=base
|
||||
- DOCKER=true
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "curl --silent --fail http://localhost:8080/health || exit 1"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
|
||||
volumes:
|
||||
open-webui:
|
||||
external: true
|
||||
@@ -0,0 +1,18 @@
|
||||
services:
|
||||
stirling-pdf:
|
||||
image: stirlingtools/stirling-pdf:latest
|
||||
container_name: stirling-pdf
|
||||
ports:
|
||||
- "8081:8080"
|
||||
volumes:
|
||||
- /srv/docker/stirling-pdf/trainingData:/usr/share/tessdata
|
||||
- /srv/docker/stirling-pdf/configs:/configs
|
||||
- /srv/docker/stirling-pdf/customFiles:/customFiles
|
||||
- /srv/docker/stirling-pdf/logs:/logs
|
||||
environment:
|
||||
- DOCKER_ENABLE_SECURITY=false
|
||||
- INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false
|
||||
- LANGS=en_GB
|
||||
- SECURITY_INITIALLOGIN_USERNAME=admin
|
||||
- SECURITY_INITIALLOGIN_PASSWORD=stirling
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user