add container names to llm and password manager stacks

This commit is contained in:
2026-01-23 14:45:05 +01:00
parent 04878036db
commit 0d77c1f228
3 changed files with 6 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ services:
net.unraid.docker.icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/ollama.png' net.unraid.docker.icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/ollama.png'
net.unraid.docker.webui: '' net.unraid.docker.webui: ''
net.unraid.docker.shell: 'bash' net.unraid.docker.shell: 'bash'
openwebui: open-webui:
labels: labels:
net.unraid.docker.managed: 'composeman' net.unraid.docker.managed: 'composeman'
net.unraid.docker.icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/open-webui.png' net.unraid.docker.icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/open-webui.png'

View File

@@ -1,6 +1,7 @@
services: services:
ollama: ollama:
image: ollama/ollama:latest image: ollama/ollama:latest
container_name: ollama
tty: true tty: true
ports: ports:
- "11434:11434" # Ollama API - "11434:11434" # Ollama API
@@ -15,8 +16,9 @@ services:
net.unraid.docker.shell: bash net.unraid.docker.shell: bash
folder.view2: "Services" folder.view2: "Services"
openwebui: open-webui:
image: ghcr.io/open-webui/open-webui:main-slim image: ghcr.io/open-webui/open-webui:main-slim
container_name: open-webui
depends_on: depends_on:
- ollama - ollama
ports: ports:

View File

@@ -1,6 +1,7 @@
services: services:
vaultwarden: vaultwarden:
image: vaultwarden/server:latest image: vaultwarden/server:latest
container_name: vaultwarden
networks: networks:
- pangolin - pangolin
environment: environment:
@@ -10,7 +11,7 @@ services:
- /mnt/user/appdata/vaultwarden/data:/data/ - /mnt/user/appdata/vaultwarden/data:/data/
labels: labels:
net.unraid.docker.icon: "https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/bitwarden.png" net.unraid.docker.icon: "https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/bitwarden.png"
net.unraid.docker.webui: "https://vw.homecube.org/" net.unraid.docker.webui: "${DOMAIN}"
folder.view2: "Services" folder.view2: "Services"
networks: networks: