fix(build): Remove *.md from .dockerignore to fix embedded workspace build
This commit is contained in:
parent
2dafadf079
commit
79bea8ef4a
2 changed files with 2 additions and 15 deletions
|
|
@ -2,14 +2,8 @@
|
|||
.gitignore
|
||||
build/
|
||||
.picoclaw/
|
||||
config/
|
||||
.env
|
||||
.env.example
|
||||
*.md
|
||||
LICENSE
|
||||
assets/
|
||||
docker-compose.yml
|
||||
workspace/
|
||||
picoclaw-workspace/
|
||||
config/picoclaw-workspace/
|
||||
tmp/
|
||||
|
|
|
|||
|
|
@ -8,11 +8,9 @@ services:
|
|||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: picoclaw-agent
|
||||
profiles:
|
||||
- agent
|
||||
volumes:
|
||||
- ./config/config.json:/root/.picoclaw/config.json:ro
|
||||
- picoclaw-workspace:/root/.picoclaw/workspace
|
||||
- ./workspace:/root/.picoclaw/workspace
|
||||
entrypoint: ["picoclaw", "agent"]
|
||||
stdin_open: true
|
||||
tty: true
|
||||
|
|
@ -26,15 +24,10 @@ services:
|
|||
context: .
|
||||
dockerfile: Dockerfile
|
||||
container_name: picoclaw-gateway
|
||||
restart: unless-stopped
|
||||
profiles:
|
||||
- gateway
|
||||
volumes:
|
||||
# Configuration file
|
||||
- ./config/config.json:/root/.picoclaw/config.json:ro
|
||||
# Persistent workspace (sessions, memory, logs)
|
||||
- picoclaw-workspace:/root/.picoclaw/workspace
|
||||
- ./workspace:/root/.picoclaw/workspace
|
||||
command: ["gateway"]
|
||||
|
||||
volumes:
|
||||
picoclaw-workspace:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue