Add workspace config: docker build files, agent identity, user config, gitignore

This commit is contained in:
Klaatu
2026-02-20 18:39:22 +00:00
parent fdbac8136d
commit 8d30148e77
16 changed files with 446 additions and 0 deletions

0
config/.gitkeep Normal file
View File

27
config/README.md Normal file
View File

@@ -0,0 +1,27 @@
# Configuration
This directory contains non-secret configuration files that are mounted into the container at `/data/config/`.
## Structure
```
config/
├── gateway.yaml # OpenClaw gateway configuration
└── gog/ # gog-specific configs (if any)
```
## Usage
Files here are mounted read-only into the container. Put your OpenClaw config, tool configs, etc. here.
**NOT for secrets** — use `../secrets/` for API keys, OAuth credentials, etc.
## Example
```yaml
# config/gateway.yaml
providers:
telegram:
enabled: true
# ...
```