3 Commits
Author SHA1 Message Date
tobbbs 4082c7513f Update compose.yaml 2026-06-15 14:06:38 +02:00
tobbbs 56adfde7dd Update compose.yaml 2026-06-15 13:56:01 +02:00
tobbbs fb67719bb7 Add compose.yaml 2026-06-15 12:18:27 +02:00
+18 -57
View File
@@ -1,70 +1,31 @@
services:
SnapOtter:
image: snapotter/snapotter:latest # or ghcr.io/snapotter-hq/snapotter:latest
container_name: snapotter
# ports:
# - "1349:1349"
networks:
- bragi-local
volumes:
- /opt/10_images/snapotter:/data
environment:
- AUTH_ENABLED=true
- DEFAULT_USERNAME=admin
- DEFAULT_PASSWORD=admin
- DATABASE_URL=postgres://snapotter:snapotter@postgres:5432/snapotter
- REDIS_URL=redis://redis:6379
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
restart: unless-stopped
open-webui:
# ports:
# - 3000:8080
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
postgres:
image: postgres:17-alpine
container_name: snapotter_postgres
environment:
POSTGRES_USER: snapotter
POSTGRES_PASSWORD: snapotter
POSTGRES_DB: snapotter
count: all
capabilities:
- gpu
volumes:
- /opt/09_ki/ollama:/root/.ollama
- /opt/09_ki/open-webui:/app/backend/data
container_name: open-webui
restart: always
image: ghcr.io/open-webui/open-webui:ollama
networks:
- bragi-local
volumes:
- /opt/10_images/postgresql:/var/lib/postgresql/data
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -U snapotter"]
interval: 10s
timeout: 5s
retries: 12
redis:
container_name: snapotter_redis
networks:
- bragi-local
image: redis:8-alpine
command: ["redis-server", "--maxmemory-policy", "noeviction", "--appendonly", "yes"]
volumes:
- /opt/10_images/redis:/data
restart: unless-stopped
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 12
volumes:
SnapOtter-data:
SnapOtter-pgdata:
SnapOtter-redisdata:
ollama:
external: true
name: ollama
open-webui:
external: true
name: open-webui
networks:
bragi-local: