forked from GOMAN-AI/crewai-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (45 loc) · 978 Bytes
/
docker-compose.yml
File metadata and controls
51 lines (45 loc) · 978 Bytes
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
name: crewai-workshop
services:
crewai:
build:
context: .
dockerfile: Dockerfile
env_file: .env
depends_on:
- phoenix
- dind
volumes:
- ./${DYNAMIC_DEMO_FOLDER}/run.py:/app/run.py
- ./${DYNAMIC_DEMO_FOLDER}/src:/app/src/
- ./${DYNAMIC_DEMO_FOLDER}/knowledge:/app/knowledge
- ./shared/:/app/src/shared/
networks:
- default
phoenix:
image: arizephoenix/phoenix:version-8.2.2
env_file: .env
ports:
- "6006:6006"
depends_on:
- phoenix-db
networks:
- default
phoenix-db:
image: "postgres:16.4-alpine"
env_file: .env
volumes:
- phoenix-data:/var/lib/postgresql/data
networks:
- default
dind:
image: docker:27.5.0-dind-alpine3.21
command: --host=tcp://0.0.0.0:2375
privileged: true
environment:
- DOCKER_TLS_CERTDIR= # Disable TLS
networks:
- default
volumes:
phoenix-data:
networks:
default: