From 0b0cb8060bfcb98f2e2b7b2afa95960047da910e Mon Sep 17 00:00:00 2001 From: James Turland Date: Mon, 27 Jan 2025 12:41:21 +0000 Subject: [PATCH] openhands --- OpenHands/docker-compose.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 OpenHands/docker-compose.yaml diff --git a/OpenHands/docker-compose.yaml b/OpenHands/docker-compose.yaml new file mode 100644 index 0000000..8a8b016 --- /dev/null +++ b/OpenHands/docker-compose.yaml @@ -0,0 +1,19 @@ +services: + all-hands-ai: + image: 'docker.all-hands.dev/all-hands-ai/openhands:0.21' + container_name: openhands-app + extra_hosts: + - 'host.docker.internal:host-gateway' + ports: + - '3000:3000' + volumes: + - '.openhands-state:/.openhands-state' + - '/var/run/docker.sock:/var/run/docker.sock' + environment: + - LOG_ALL_EVENTS=true + - 'SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.21-nikolaik' + # - LLM_API_KEY: "NA" # You can use a self hosted LLM if you like + # - LLM_BASE_URL: "Ollama address:11434" # You can use a self hosted LLM if you like + pull_policy: always + tty: true + stdin_open: true \ No newline at end of file