Files
Docker-Compose/AI_Containers/scriberr/compose.yaml
T

34 lines
1.2 KiB
YAML
Raw Normal View History

2026-01-24 01:54:15 +00:00
services:
scriberr:
image: ghcr.io/rishikanthc/scriberr:latest
container_name: scriberr
ports:
- "8091:8080"
volumes:
- /srv/docker/scriberr/scriberr_data:/app/data
- /srv/docker/scriberr/scriberr_whisperx:/app/whisperx-env
environment:
- PUID=1000 # change to your host user's UID if different
- PGID=1000 # change to your host user's GID if different
- SECURE_COOKIES=false # required if accessing HTTP only
- TRUST_PROXY_HEADERS=false # required if accessing HTTP only
- PUBLIC_AUDIO_URL=/audio
2026-02-07 18:13:17 +00:00
- OLLAMA_BASE_URL=http://ollama:11434
networks:
2026-02-07 18:36:29 +00:00
- ollama_network
2026-02-07 18:37:55 +00:00
- traefik_network
2026-01-24 01:54:15 +00:00
labels:
- flame.type=application # "app" works too
2026-02-08 01:55:28 +00:00
- flame.name=${SERVICE_NAME}
- flame.url=http://${SERVICE_NAME}.${DOMAIN_NAME} #Adjust to your domain or IP
2026-01-24 01:54:15 +00:00
- flame.icon=transcribe # optional, default is "docker"
2026-02-07 18:26:56 +00:00
- traefik.enable=true
2026-02-08 01:59:01 +00:00
- traefik.docker.network=traefik_network
2026-02-08 01:55:28 +00:00
- traefik.http.routers.${SERVICE_NAME}.rule=Host(`${SERVICE_NAME}.${DOMAIN_NAME}`)
- traefik.http.routers.${SERVICE_NAME}.entrypoints=web
2026-02-07 18:26:56 +00:00
restart: unless-stopped
2026-02-07 18:13:17 +00:00
networks:
2026-02-07 18:36:29 +00:00
ollama_network:
2026-02-07 18:26:56 +00:00
external: true
2026-02-07 18:37:55 +00:00
traefik_network:
2026-02-07 18:26:56 +00:00
external: true