Adding Scriberr.
Gitea Branch PR & Docker Deployment / Check and Create PR (push) Successful in 50s
Gitea Branch PR & Docker Deployment / Generate list of added/modified/deleted services (push) Successful in 44s
Gitea Branch PR & Docker Deployment / Docker Compose Dry Run (push) Failing after 1m57s
Gitea Branch PR & Docker Deployment / Docker Compose Deployment (push) Has been skipped
Gitea Branch PR & Docker Deployment / PR Merge (push) Has been skipped
Gitea Branch PR & Docker Deployment / Check and Create PR (push) Successful in 50s
Gitea Branch PR & Docker Deployment / Generate list of added/modified/deleted services (push) Successful in 44s
Gitea Branch PR & Docker Deployment / Docker Compose Dry Run (push) Failing after 1m57s
Gitea Branch PR & Docker Deployment / Docker Compose Deployment (push) Has been skipped
Gitea Branch PR & Docker Deployment / PR Merge (push) Has been skipped
This commit is contained in:
+19
-3
@@ -213,6 +213,20 @@ services:
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${ULTIMA_DOCKER_DIR}/scanopy:/data
|
||||
scriberr:
|
||||
container_name: scriberr
|
||||
hostname: scriberr
|
||||
image: ghcr.io/rishikanthc/scriberr:v1.2.0
|
||||
environment:
|
||||
PUID: ${PUID}
|
||||
PGID: ${PGID}
|
||||
APP_ENV: production # DO NOT CHANGE THIS
|
||||
ports:
|
||||
- 8080:8080
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- scriberr_data:/app/data # volume for data
|
||||
- scriberr_env_data:/app/whisperx-env # volume for models and python envs
|
||||
searxng-mcp:
|
||||
container_name: searxng-mcp
|
||||
environment:
|
||||
@@ -250,11 +264,11 @@ services:
|
||||
image: ghcr.io/speaches-ai/speaches:latest-cpu@sha256:21e3df06d842fb7802ab470dd77c25f0e8c0d22950e8d8c6ae886e851af53ef8
|
||||
environment:
|
||||
LOG_LEVEL: debug
|
||||
ALLOW_ORIGINS: '["*"]'
|
||||
ALLOW_ORIGINS: "[\"*\"]"
|
||||
ENABLE_UI: true
|
||||
CHAT_COMPLETION_BASE_URL: "http://ollama:11434/v1"
|
||||
CHAT_COMPLETION_API_KEY: "this-is-a-place-holder"
|
||||
PRELOAD_MODELS: '["Systran/faster-whisper-large-v3"]'
|
||||
PRELOAD_MODELS: "[\"Systran/faster-whisper-large-v3\"]"
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl", "--fail", "http://0.0.0.0:8000/health" ] # TODO: won't work if a user changes the port
|
||||
interval: 30s
|
||||
@@ -270,7 +284,9 @@ services:
|
||||
container_name: stable-diffusion-webui
|
||||
image: ghcr.io/neggles/sd-webui-docker:latest@sha256:1795fe796e1dad0d8d3baa9ef7c38a255b69c0878b76869feecc617bfd015e53
|
||||
environment:
|
||||
CLI_ARGS: "--api --use-cpu all --precision full --no-half --skip-torch-cuda-test --ckpt /empty.pt --do-not-download-clip --disable-nan-check --disable-opt-split-attention" # will have to be changed for new hardware
|
||||
CLI_ARGS: "--api --use-cpu all --precision full --no-half --skip-torch-cuda-test
|
||||
--ckpt /empty.pt --do-not-download-clip --disable-nan-check
|
||||
--disable-opt-split-attention" # will have to be changed for new hardware
|
||||
PYTHONUNBUFFERED: "1"
|
||||
TERM: "vt100"
|
||||
SD_WEBUI_VARIANT: "default"
|
||||
|
||||
Reference in New Issue
Block a user