-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.user.yml
More file actions
40 lines (38 loc) · 1.01 KB
/
Copy pathdocker-compose.user.yml
File metadata and controls
40 lines (38 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
services:
qdrant:
image: qdrant/qdrant:v1.17.0
ports:
- "6333:6333"
- "6334:6334"
volumes:
- mnemoforge_qdrant_data:/qdrant/storage
environment:
QDRANT_LOG_LEVEL: warn
restart: unless-stopped
sloplesscode:
image: caveboy/sloplesscode:latest
ports:
- "${MNEMOFORGE_HTTP_PORT:-8000}:8000"
depends_on:
- qdrant
env_file:
- ${MNEMOFORGE_USER_ENV_FILE:-.env.user}
environment:
SLOPLESSCODE_DATA_DIR: /app/system_data
MNEMOFORGE_RUNTIME_KIND: docker
MNEMOFORGE_DOCKER_SERVICE: sloplesscode
AUTO_BOOTSTRAP_SELF_PROJECT_LAWS: "0"
PROJECT_CAPABILITIES: ""
QDRANT_HOST: qdrant
QDRANT_PORT: 6333
SERVER_HOST: 0.0.0.0
SERVER_PORT: 8000
OLLAMA_BASE_URL: http://host.docker.internal:11434
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- sloplesscode_system_data:/app/system_data
restart: unless-stopped
volumes:
mnemoforge_qdrant_data:
sloplesscode_system_data: