-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
38 lines (36 loc) · 1.39 KB
/
compose.yaml
File metadata and controls
38 lines (36 loc) · 1.39 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
services:
bangs:
image: ghcr.io/dikkadev/bangs:latest
# image: bangs
# build: .
restart: unless-stopped
pull_policy: always
ports:
- 8080:8080
volumes:
- ./bangs.yaml:/app/bangs.yaml # Necessary to run
environment:
- BANGS_BANGFILE=/app/bangs.yaml # Same path as volume
- BANGS_WATCH=true # Whether to watch for changes in the file
# - BANGS_ALLOW_NO_BANG=true # Whether to parse for bangs usage without '!'
# - BANGS_VERBOSE=true # Uncomment to see debug logs
# - BANGS_PORT=8080 # Uncomment to change the port inside the container
# - BANGS_IGNORE_CHAR='.' # Uncomment to change the ignore character
bangs-mcp:
image: ghcr.io/dikkadev/bangs:latest
# image: bangs
# build: .
entrypoint: ["/app/bangs-mcp"]
restart: unless-stopped
pull_policy: always
ports:
- 8081:8081
volumes:
- ./bangs.yaml:/app/bangs.yaml # Necessary to run
environment:
- BANGS_BANGFILE=/app/bangs.yaml # Same path as volume
- BANGS_WATCH=true # Whether to watch for changes in the file
- BANGS_MCP_HTTP=true # Run in HTTP mode
- BANGS_MCP_PORT=8081 # MCP server port
# - BANGS_VERBOSE=true # Uncomment to see debug logs
profiles: ["mcp"] # Disabled by default