Files
ultima-ai/docker-compose.yml
Trez.One a67bb6d800
Gitea Branch PR & Docker Deployment / Check and Create PR (push) Successful in 1m15s
Gitea Branch PR & Docker Deployment / Generate list of added/modified/deleted services (push) Successful in 52s
Gitea Branch PR & Docker Deployment / Docker Compose Dry Run (push) Successful in 2m16s
Renovate PR Deployment / Renovate PR Deployment (pull_request) Has been skipped
Gitea Branch PR & Docker Deployment / PR Merge (push) Successful in 1m19s
Gitea Branch PR & Docker Deployment / Docker Compose Deployment (push) Successful in 1m36s
Envs for Gitea MCP.
2025-12-18 13:29:35 -05:00

186 lines
5.2 KiB
YAML

name: ultima
networks:
default:
name: ultima_default
services:
beszel-agent:
container_name: beszel-agent
environment:
PORT: 45876
# Do not remove quotes around the key
KEY: "${BESZEL_ULTIMA_AGENT_KEY}"
TOKEN: ${BESZEL_ULTIMA_TOKEN}
HUB_URL: http://192.168.1.254:22220
expose:
- 45876
image: henrygd/beszel-agent:0.17.0@sha256:730ac49d1a89d315b5a9424ad8cca2f586e981da7caf151c5ec2d599f474efad
network_mode: host
restart: unless-stopped
volumes:
- ${ULTIMA_DOCKER_DIR}/beszel-agent:/var/lib/beszel-agent
- /var/run/docker.sock:/var/run/docker.sock:ro
context7-mcp:
container_name: context7-mcp
expose:
- 8000
image: mcp/context7:latest
restart: unless-stopped
docker-socket-proxy:
container_name: dockerproxy
environment:
AUTH: 1
BUILD: 1
COMMIT: 1
CONFIGS: 1
CONTAINERS: 1
DISTRIBUTION: 1
EVENTS: 1
EXEC: 1
GPRC: 1
IMAGES: 1
INFO: 1
NETWORKS: 1
NODES: 1
POST: 1
PLUGINS: 1
SERVICES: 1
SESSION: 1
SYSTEM: 1
TASKS: 1
VOLUMES: 1
LOG_LEVEL: debug
image: ghcr.io/tecnativa/docker-socket-proxy:latest@sha256:1f3a6f303320723d199d2316a3e82b2e2685d86c275d5e3deeaf182573b47476
ports:
- 2375:2375
privileged: true
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
faster-whisper:
container_name: faster-whisper
environment:
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
WHISPER_MODEL: large
LOCAL_ONLY: #optional
WHISPER_BEAM: 1 #optional
WHISPER_LANG: en #optional
image: lscr.io/linuxserver/faster-whisper:latest
ports:
- "10300:10300"
restart: unless-stopped
volumes:
- ${ULTIMA_DOCKER_DIR}/faster-whisper/:/config
gitea-mcp:
container_name: gitea-mcp
environment:
GITEA_HOST: http://192.168.1.254:3013
GITEA_INSECURE: true
GITEA_ACCESS_TOKEN: ${GITEA_ROOT_TOKEN}
expose:
- 8000
image: gitea/gitea-mcp-server:0.5.0
restart: unless-stopped
meilisearch:
container_name: meilisearch
environment:
MEILI_HOST: http://meilisearch:7700
MEILI_NO_ANALYTICS: true
MEILI_MASTER_KEY: ${MEILISEARCH_MASTER_KEY}
image: getmeili/meilisearch:v1.27@sha256:22e82938463a532286bd6b2b902a5a3fa7a5017d46cc6a3cc3b4c6fc365e49f0
ports:
- 7700:7700
restart: always
user: ${PUID}:${PGID}
volumes:
- ${ULTIMA_DOCKER_DIR}/meilisearch:/meili_data
ollama:
container_name: ollama
image: ollama/ollama
ports:
- 11434:11434
restart: unless-stopped
volumes:
- ollama:/root/.ollama
piper:
container_name: piper
environment:
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
PIPER_VOICE: en_GB-jenny_dioco-medium
LOCAL_ONLY: #optional
PIPER_LENGTH: 1.0 #optional
PIPER_NOISE: 0.667 #optional
PIPER_NOISEW: 0.333 #optional
PIPER_SPEAKER: 0 #optional
NO_STREAMING: #optional
image: lscr.io/linuxserver/piper:latest
ports:
- 10200:10200
restart: unless-stopped
volumes:
- ${ULTIMA_DOCKER_DIR}/piper/:/config
portainer-agent:
container_name: portainer_agent
image: portainer/agent:latest@sha256:5b33e50ff131094e0b1b7272cc34205c970b6b25cecf4bbcf7c13298388a4832
volumes:
- /:/host
- /var/lib/docker/volumes:/var/lib/docker/volumes
- /var/run/docker.sock:/var/run/docker.sock
restart: always
ports:
- 9001:9001
searxng-mcp:
container_name: searxng-mcp
environment:
SEARXNG_URL: http://192.168.1.254:8095
image: isokoliuk/mcp-searxng:latest@sha256:3d4b4c537a847ff681b1b48ef2ed1d3b83f0bd10a6bfdbd913bb07ea7978f0ae
restart: unless-stopped
stdin_open: true
signoz-mcp:
container_name: signoz-mcp-server
image: signoz/signoz-mcp-server:v0.0.4
environment:
SIGNOZ_URL: http://192.168.1.254:36113
SIGNOZ_API_KEY: ${SIGNOZ_API_KEY}
TRANSPORT_MODE: http
MCP_SERVER_PORT: 8000
LOG_LEVEL: info
expose:
- 8000
restart: unless-stopped
stable-diffusion-webui:
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
PYTHONUNBUFFERED: "1"
TERM: "vt100"
SD_WEBUI_VARIANT: "default"
ports:
- 7860:7860
restart: unless-stopped
volumes:
- ${ULTIMA_DOCKER_DIR}/stable-diffusion-webui/data:/data
- ${ULTIMA_DOCKER_DIR}/stable-diffusion-webui/output:/output
webui-mcpo:
container_name: webui-mcpo
image: masterno12/webui-mcpo:latest
ports:
- 18003:8000
restart: unless-stopped
volumes:
- ${ULTIMA_DOCKER_DIR}/mcpo:/opt/mcpo
wyoming-openwakeword:
command: "--preload-model ok_nabu"
container_name: wyoming-openwakeword
image: rhasspy/wyoming-openwakeword
ports:
- 10400:10400
restart: unless-stopped
volumes:
ollama:
name: ollama