diff --git a/README.md b/README.md index 7430408..ddb670d 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,19 @@ no `ports:` publishing needed. Note: Bring the opencode stack up first, so `app-opencode_default` exists before adding to your app. +### Executing docker commands from opencode +The stack runs a dedicated dind (docker in docker) container, and opencode can drive it as a client (`DOCKER_HOST=tcp://dind:2375`). So from inside opencode you can build images, run containers, and `docker compose up` a project's stack. The agent can spin up and test the services it's working on. + +A few things that differ from a normal host, because the daemon lives in dind: + +- Containers and published ports you start run on the **dind** daemon. Reach a running service at `dind:`, **not** `localhost:`. opencode does not + share dind's network namespace, so `localhost` won't reach the stack. +- The repo needs to be mounted at the same absolute path (`/workspace/repo`) in both the opencode and dind containers, so compose bind-mounts resolve correctly. Work on the checkout there; edits elsewhere won't be visible to the containers dind runs. +- The dind image store is cached in `./data/dind-cache`, so pulled images stay warm across restarts. +- To access the services from the host machine, you will need to connect to the dind container or publish the necessary ports from the dind container to your host. + +> Note: Opencode itself doesn't run in a privileged container so it can't do privileged actions directly, but it can use the docker daemon in dind to do the same things. Because dind is privileged and in the host user namespace, a container started inside dind can mount the host's raw disk devices and reach the **entire** host filesystem, not only what you shared. This needs opencode to actively do it, but it's a well-known technique, not a theoretical edge case. + ## Reference ### `opencode.json` keys diff --git a/docker-compose.yml b/docker-compose.yml index 5b7d6a9..82bae04 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,30 @@ services: opencode: - image: redpencil/opencode:0.0.1 + image: redpencil/opencode:feature-with-docker volumes: - ./data/opencode/share:/root/.local/share/opencode - ./config/opencode/opencode.json:/root/.config/opencode/opencode.json +# - ./config/opencode:/root/.config/opencode + depends_on: + dind: + condition: service_healthy + environment: + DOCKER_HOST: "tcp://dind:2375" + + dind: + image: docker:29.6-dind + privileged: true + # userns mode only required if you use user namespaces + userns_mode: "host" + environment: + DOCKER_TLS_CERTDIR: "" + volumes: + - ./data/dind-cache:/var/lib/docker + command: + - "--registry-mirror=https://docker-registry-mirror.redpencil.io" + healthcheck: + test: ["CMD", "docker", "info"] + interval: 5s + timeout: 3s + retries: 20 + start_period: 10s