chore: revert local development and build configuration files for PR cleanliness
This commit is contained in:
parent
79bea8ef4a
commit
91612798b7
4 changed files with 13 additions and 12 deletions
|
|
@ -2,8 +2,9 @@
|
||||||
.gitignore
|
.gitignore
|
||||||
build/
|
build/
|
||||||
.picoclaw/
|
.picoclaw/
|
||||||
|
config/
|
||||||
.env
|
.env
|
||||||
.env.example
|
.env.example
|
||||||
|
*.md
|
||||||
LICENSE
|
LICENSE
|
||||||
config/picoclaw-workspace/
|
assets/
|
||||||
tmp/
|
|
||||||
|
|
|
||||||
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -44,10 +44,3 @@ tasks/
|
||||||
|
|
||||||
# Added by goreleaser init:
|
# Added by goreleaser init:
|
||||||
dist/
|
dist/
|
||||||
|
|
||||||
# Local Dev
|
|
||||||
docker-compose.yml
|
|
||||||
workspace/
|
|
||||||
picoclaw-workspace/
|
|
||||||
config/picoclaw-workspace/
|
|
||||||
tmp/
|
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ RUN make build
|
||||||
FROM alpine:3.23
|
FROM alpine:3.23
|
||||||
|
|
||||||
# Install runtime essentials
|
# Install runtime essentials
|
||||||
RUN apk add --no-cache ca-certificates tzdata curl nodejs npm
|
RUN apk add --no-cache ca-certificates tzdata curl
|
||||||
|
|
||||||
# Health check
|
# Health check
|
||||||
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,11 @@ services:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
container_name: picoclaw-agent
|
container_name: picoclaw-agent
|
||||||
|
profiles:
|
||||||
|
- agent
|
||||||
volumes:
|
volumes:
|
||||||
- ./config/config.json:/root/.picoclaw/config.json:ro
|
- ./config/config.json:/root/.picoclaw/config.json:ro
|
||||||
- ./workspace:/root/.picoclaw/workspace
|
- picoclaw-workspace:/root/.picoclaw/workspace
|
||||||
entrypoint: ["picoclaw", "agent"]
|
entrypoint: ["picoclaw", "agent"]
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
tty: true
|
tty: true
|
||||||
|
|
@ -24,10 +26,15 @@ services:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
container_name: picoclaw-gateway
|
container_name: picoclaw-gateway
|
||||||
|
restart: unless-stopped
|
||||||
|
profiles:
|
||||||
|
- gateway
|
||||||
volumes:
|
volumes:
|
||||||
# Configuration file
|
# Configuration file
|
||||||
- ./config/config.json:/root/.picoclaw/config.json:ro
|
- ./config/config.json:/root/.picoclaw/config.json:ro
|
||||||
# Persistent workspace (sessions, memory, logs)
|
# Persistent workspace (sessions, memory, logs)
|
||||||
- ./workspace:/root/.picoclaw/workspace
|
- picoclaw-workspace:/root/.picoclaw/workspace
|
||||||
command: ["gateway"]
|
command: ["gateway"]
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
picoclaw-workspace:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue