-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (51 loc) · 1.22 KB
/
docker-compose.yml
File metadata and controls
54 lines (51 loc) · 1.22 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
services:
fuseki:
image: stain/jena-fuseki
container_name: devkg-fuseki
ports:
- "3030:3030"
environment:
- ADMIN_PASSWORD=admin
- FUSEKI_DATASET_1=devkg
volumes:
- fuseki-data:/fuseki
rabbitmq:
image: rabbitmq:3-management
container_name: devkg-rabbitmq
ports:
- "5672:5672"
- "15672:15672"
environment:
- RABBITMQ_DEFAULT_USER=devkg
- RABBITMQ_DEFAULT_PASS=devkg
volumes:
- rabbitmq-data:/var/lib/rabbitmq
healthcheck:
test: ["CMD", "rabbitmq-diagnostics", "-q", "ping"]
interval: 10s
timeout: 5s
retries: 5
pipeline-runner:
build:
context: .
dockerfile: Dockerfile.pipeline
container_name: devkg-pipeline-runner
depends_on:
rabbitmq:
condition: service_healthy
fuseki:
condition: service_started
environment:
- RABBITMQ_URL=amqp://devkg:devkg@rabbitmq:5672/
- FUSEKI_URL=http://fuseki:3030
- FUSEKI_DATASET=devkg
env_file:
- .env
volumes:
- ~/.claude/projects:/claude-sessions:ro
- ./output:/app/output
- ./pipeline/cache:/app/pipeline/cache
restart: unless-stopped
volumes:
fuseki-data:
rabbitmq-data: