-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (38 loc) · 1.19 KB
/
docker-compose.yml
File metadata and controls
41 lines (38 loc) · 1.19 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
services:
lango:
build: .
image: lango:latest
container_name: lango
restart: unless-stopped
ports:
- "18789:18789"
# - "9000:9000" # P2P libp2p (uncomment to enable P2P networking)
volumes:
- lango-data:/home/lango/.lango
secrets:
- lango_config
- lango_passphrase
environment:
- LANGO_PROFILE=default
# Feature flags are managed via encrypted config profiles, not env vars.
# Use 'lango settings' or 'lango config import' to configure features:
# agent.multiAgent, p2p.enabled, agentMemory.enabled, hooks.enabled,
# smartAccount.enabled, graph.enabled, a2a.enabled, mcp.enabled,
# cron.enabled, background.enabled, workflow.enabled, economy.enabled,
# observability.enabled, ontology.enabled, alerting.enabled,
# provenance.enabled, sandbox.enabled, runLedger.enabled
presidio-analyzer:
image: mcr.microsoft.com/presidio-analyzer:latest
container_name: presidio-analyzer
ports:
- "5002:5002"
restart: unless-stopped
profiles:
- presidio
secrets:
lango_config:
file: ./config.json
lango_passphrase:
file: ./passphrase.txt
volumes:
lango-data: