-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 1.06 KB
/
Copy pathdocker-compose.yml
File metadata and controls
44 lines (40 loc) · 1.06 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
name: agentpond
services:
minio:
image: minio/minio:RELEASE.2025-09-07T16-13-09Z
command: server /data --console-address ":9001"
environment:
MINIO_ROOT_USER: minio
MINIO_ROOT_PASSWORD: minio123
ports:
- "9000:9000"
- "9001:9001"
volumes:
- minio-data:/data
create-bucket:
image: minio/mc:RELEASE.2025-08-13T08-35-41Z
depends_on:
- minio
entrypoint: >
/bin/sh -c "
until mc alias set local http://minio:9000 minio minio123; do sleep 1; done;
mc mb --ignore-existing local/agentpond;
"
ingest:
image: ghcr.io/marcusschiesser/agentpond:latest
depends_on:
- create-bucket
environment:
PORT: 3000
AGENTPOND_PROJECT_ID: default-project
LANGFUSE_PUBLIC_KEY: pk-agentpond
LANGFUSE_SECRET_KEY: sk-agentpond
FILES_SDK_PROVIDER: minio
AGENTPOND_FILES_BUCKET: agentpond
FILES_SDK_ENDPOINT: http://minio:9000
MINIO_ACCESS_KEY_ID: minio
MINIO_SECRET_ACCESS_KEY: minio123
ports:
- "4318:3000"
volumes:
minio-data: