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:
+24
-8
@@ -73,7 +73,7 @@ services:
|
||||
volumes:
|
||||
- ${ULTIMA_DOCKER_DIR}/faster-whisper/:/config
|
||||
gitea-mcp:
|
||||
command: ["/app/gitea-mcp", "-t", "http", "--port", "8080", "-d"]
|
||||
command: [ "/app/gitea-mcp", "-t", "http", "--port", "8080", "-d" ]
|
||||
container_name: gitea-mcp
|
||||
environment:
|
||||
GITEA_INSTANCE_URL: http://192.168.1.254:3013
|
||||
@@ -160,7 +160,7 @@ services:
|
||||
SCANOPY_NAME: scanopy-daemon-tar-valon
|
||||
SCANOPY_MODE: daemon_poll
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "curl -f http://localhost:60073/api/health || exit 1"]
|
||||
test: [ "CMD-SHELL", "curl -f http://localhost:60073/api/health || exit 1" ]
|
||||
interval: 5s
|
||||
timeout: 3s
|
||||
retries: 15
|
||||
@@ -180,7 +180,7 @@ services:
|
||||
expose:
|
||||
- 5432
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U scanopy"]
|
||||
test: [ "CMD-SHELL", "pg_isready -U scanopy" ]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
@@ -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,13 +264,13 @@ 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
|
||||
test: [ "CMD", "curl", "--fail", "http://0.0.0.0:8000/health" ] # TODO: won't work if a user changes the port
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
@@ -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"
|
||||
@@ -289,7 +305,7 @@ services:
|
||||
volumes:
|
||||
- ${ULTIMA_DOCKER_DIR}/mcpo:/opt/mcpo
|
||||
wikipedia-mcp:
|
||||
command: ["--transport", "sse", "--country", "US", "--enable-cache"]
|
||||
command: [ "--transport", "sse", "--country", "US", "--enable-cache" ]
|
||||
container_name: wikipedia-mcp
|
||||
expose:
|
||||
- 8000
|
||||
|
||||
Reference in New Issue
Block a user