chore: add .gitignore and stage all project files
This commit is contained in:
commit
5a50f26e99
45
.gitignore
vendored
Normal file
45
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
# macOS resource forks
|
||||
._*
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*.egg-info/
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# Node
|
||||
node_modules/
|
||||
.npm/
|
||||
dist/
|
||||
.next/
|
||||
.nuxt/
|
||||
|
||||
# Rust / Cargo
|
||||
target/
|
||||
|
||||
# Archives
|
||||
*.rar
|
||||
*.tar
|
||||
*.tar.gz
|
||||
*.zip
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# Env files (keep example only)
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
28
docker-compose.yml
Normal file
28
docker-compose.yml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
openclaw-gateway:
|
||||
image: ghcr.io/openclaw/openclaw:latest
|
||||
container_name: openclaw-2-gateway
|
||||
ports:
|
||||
- "18790:18789"
|
||||
volumes:
|
||||
- openclaw-2-data:/home/node/.openclaw
|
||||
environment:
|
||||
- OPENCLAW_DISABLE_BONJOUR=1
|
||||
- OPENCLAW_GATEWAY_BIND=loopback
|
||||
restart: unless-stopped
|
||||
|
||||
openclaw-cli:
|
||||
image: ghcr.io/openclaw/openclaw:latest
|
||||
container_name: openclaw-2-cli
|
||||
volumes:
|
||||
- openclaw-2-data:/home/node/.openclaw
|
||||
environment:
|
||||
- OPENCLAW_DISABLE_BONJOUR=1
|
||||
profiles:
|
||||
- cli
|
||||
|
||||
volumes:
|
||||
openclaw-2-data:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user