chore: gitignore secrets and add docker-compose override
Ignore .env and config/config.json to prevent committing secrets. Add docker-compose.override.yml with resource limits. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
61c917d96f
commit
13b89e1eba
2 changed files with 12 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -44,3 +44,5 @@ tasks/
|
||||||
|
|
||||||
# Added by goreleaser init:
|
# Added by goreleaser init:
|
||||||
dist/
|
dist/
|
||||||
|
.env
|
||||||
|
config/config.json
|
||||||
|
|
|
||||||
10
docker-compose.override.yml
Normal file
10
docker-compose.override.yml
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
# docker-compose.override.yml
|
||||||
|
services:
|
||||||
|
picoclaw-agent:
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: 64M
|
||||||
|
cpus: '0.5'
|
||||||
|
picoclaw-gateway:
|
||||||
|
restart: unless-stopped
|
||||||
Loading…
Add table
Reference in a new issue