From 47024a9ad978a1a63f702ba45aa8e36a8ff6f334 Mon Sep 17 00:00:00 2001 From: sala Date: Fri, 5 Jun 2026 11:13:21 +0200 Subject: [PATCH] Add README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0cbd386 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Description + +This is a simple container to run Claude Code in an updated ubuntu OS. It is suggested that you mount only the git repo(s) you need to access + +Usage example to work with ai.psi.ch: + +```bash +REPO_DIR=/whatever +TOKEN=YOUR_TOKEN +MODEL=Qwen/Qwen3-Coder-30B-A3B-Instruct + +docker run -v $HOME/.claude:/home/ubuntu/.claude:Z -v $REPO_DIR:/workspace:Z \ +--net=host --rm -ti \ +-e "ANTHROPIC_BASE_URL=https://ai.psi.ch/api" \ +-e "ANTHROPIC_API_KEY=$TOKEN" +-e "ANTHROPIC_MODEL=$MODEL" -ti gitea.psi.ch/images/claude-code:latest + +``` \ No newline at end of file