-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.local.example.yml
More file actions
38 lines (34 loc) · 1.41 KB
/
docker-compose.local.example.yml
File metadata and controls
38 lines (34 loc) · 1.41 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
# Local development overrides (example)
# Not auto-loaded. Copy to docker-compose.local.yml and run with:
# docker compose -f docker-compose.yml -f docker-compose.local.yml up serve -d
# docker compose -f docker-compose.yml -f docker-compose.local.yml run --rm openchronicle --help
# docker compose -f docker-compose.yml -f docker-compose.local.yml up discord
services:
serve:
volumes:
- "C:/Docker/openchronicle/data:/data"
- "C:/Docker/openchronicle/config:/config"
- "C:/Docker/openchronicle/plugins:/plugins"
- "C:/Docker/openchronicle/output:/output"
- "C:/Docker/openchronicle/assets:/assets"
openchronicle:
volumes:
- "C:/Docker/openchronicle/data:/data"
- "C:/Docker/openchronicle/config:/config"
- "C:/Docker/openchronicle/plugins:/plugins"
- "C:/Docker/openchronicle/output:/output"
- "C:/Docker/openchronicle/assets:/assets"
discord:
volumes:
- "C:/Docker/openchronicle/data:/data"
- "C:/Docker/openchronicle/config:/config"
- "C:/Docker/openchronicle/plugins:/plugins"
- "C:/Docker/openchronicle/output:/output"
- "C:/Docker/openchronicle/assets:/assets"
mcp:
volumes:
- "C:/Docker/openchronicle/data:/data"
- "C:/Docker/openchronicle/config:/config"
- "C:/Docker/openchronicle/plugins:/plugins"
- "C:/Docker/openchronicle/output:/output"
- "C:/Docker/openchronicle/assets:/assets"