diff --git a/ollama/compose.yml b/ollama/compose.yml index ad4ff5b..986adb6 100644 --- a/ollama/compose.yml +++ b/ollama/compose.yml @@ -16,6 +16,8 @@ services: - ollama ports: - ${OPEN_WEBUI_PORT-3001}:8080 + extra_hosts: + - host.docker.internal:host-gateway volumes: - open-webui:/app/backend/data container_name: open-webui @@ -27,6 +29,9 @@ services: - 'WEBUI_SECRET_KEY=' - 'RAG_EMBEDDING_ENGINE=ollama' - 'AUDIO_STT_ENGINE=openai' + # comfy + - COMFYUI_BASE_URL=http://host.docker.internal:8188/ + - ENABLE_IMAGE_GENERATION=True volumes: open-webui: external: true diff --git a/tzylo/README.md b/tzylo/README.md deleted file mode 100644 index bc0c956..0000000 --- a/tzylo/README.md +++ /dev/null @@ -1,2 +0,0 @@ -https://docs.tzylo.com/auth/ce/docs/deploy/docker -https://github.com/tzylo/tzylo-auth-ce \ No newline at end of file diff --git a/tzylo/compose.yml b/tzylo/compose.yml deleted file mode 100644 index dbb4b77..0000000 --- a/tzylo/compose.yml +++ /dev/null @@ -1,31 +0,0 @@ -services: - auth: - image: tzylo/auth-ce:latest - ports: - - "7200:7200" - environment: - JWT_SECRET: supersecret - DATABASE_URL: postgresql://auth:auth@db:5432/authdb - REDIS_URL: redis://redis:6379 - NODE_ENV: production - depends_on: - - db - - redis - - db: - image: postgres:15 - environment: - POSTGRES_DB: authdb - POSTGRES_USER: auth - POSTGRES_PASSWORD: auth - volumes: - - auth-db:/var/lib/postgresql/data - - redis: - image: redis:7 - volumes: - - auth-redis:/data - -volumes: - auth-db: - auth-redis: \ No newline at end of file