git init | first commit

This commit is contained in:
2026-07-12 18:06:43 +02:00
parent 8154f4bb29
commit a3a9b0e24b
11 changed files with 572 additions and 1 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
my-opencode:
user: "${UID}:${GID}"
build:
context: .
volumes:
- "./opencode-config:/home/node/.config/opencode"
- ".config/opencode-data:/home/node/.local/share/opencode"
- ".config/opencode-state:/home/node/.local/state/opencode"
- ".config/opencode-cache:/home/node/.cache/opencode"
- ".config/openchamber-config:/home/node/.config/openchamber"
- "${REPOSITORIES_PATH:-./repositories}:/home/node/repositories"
- "/var/run/docker.sock:/var/run/docker.sock"
environment:
OPENCHAMBER_PORT: ${OPENCHAMBER_PORT:-5200}
OPENCODE_BINARY: /home/node/.opencode/bin/opencode
OPENCHAMBER_ALLOW_UNAUTHENTICATED_LAN: true
UI_PASSWORD: ${UI_PASSWORD:-}
restart: unless-stopped
network_mode: host