-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (32 loc) · 939 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (32 loc) · 939 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
services:
moltbot:
build:
context: .
dockerfile: Dockerfile
image: moltbot:local
container_name: moltbot
restart: unless-stopped
stdin_open: true
tty: true
ports:
- "3000:18789"
volumes:
# Persist config so session survives container restarts
- moltbot-config:/home/moltuser/.moltbot
- moltbot-workspace:/home/moltuser/clawd
# Mount pump-fun-skill into moltbot skills directory
- .:/home/moltuser/.moltbot/skills/pump-fun-skill:ro
environment:
- NODE_ENV=production
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
- CLAWDBOT_GATEWAY_TOKEN=${GATEWAY_TOKEN:-default-token}
- SOLANA_PRIVATE_KEY=${SOLANA_PRIVATE_KEY:-}
- MOLTBOT_STATE_DIR=/home/moltuser/.moltbot
networks:
- moltbot-network
volumes:
moltbot-config:
moltbot-workspace:
networks:
moltbot-network:
driver: bridge