Files
picoclaw/docker-compose.discord.yml
Sunwood-ai-labs 1b45195acb feat: add Docker Compose support for Discord bot deployment
- Add Dockerfile with multi-stage build for picoclaw
- Add docker-compose.discord.yml for Discord bot service
- Add docker-compose.yml for agent mode service
- Add .env.example with environment variable template
- Add .dockerignore for optimized builds
- Update README.md with Docker Compose section and language switch
- Add README.ja.md (Japanese documentation)
- Update .gitignore with Docker-related entries
2026-02-13 00:25:08 +08:00

25 lines
865 B
YAML

services:
# ─────────────────────────────────────────────
# PicoClaw Discord Bot
# ─────────────────────────────────────────────
picoclaw:
build:
context: .
dockerfile: Dockerfile
container_name: picoclaw-discord
restart: unless-stopped
env_file:
- .env
environment:
- PICOCLAW_CHANNELS_DISCORD_ENABLED=true
- PICOCLAW_CHANNELS_DISCORD_TOKEN=${DISCORD_BOT_TOKEN}
volumes:
# Configuration file
- ./config/config.json:/root/.picoclaw/config.json:ro
# Persistent workspace (sessions, memory, logs)
- picoclaw-workspace:/root/.picoclaw/workspace
command: ["gateway"]
volumes:
picoclaw-workspace: