From 86ba8f0790c663cc3f8704be9cb8ec32a0f89b1c Mon Sep 17 00:00:00 2001 From: kev Date: Mon, 25 Nov 2024 19:33:27 +0800 Subject: [PATCH] add anthropics --- README.md | 1 + anthropics/README.md | 4 ++++ anthropics/docker-compose.yml | 15 +++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 anthropics/README.md create mode 100644 anthropics/docker-compose.yml diff --git a/README.md b/README.md index a987bc7..7fd7196 100644 --- a/README.md +++ b/README.md @@ -324,6 +324,7 @@ A collection of delicious docker recipes. - [x] 3proxy/3proxy - [x] adguard/adguardhome +- [x] ghcr.io/anthropics/anthropic-quickstarts - [x] apify - [x] actor-node - [x] actor-node-playwright diff --git a/anthropics/README.md b/anthropics/README.md new file mode 100644 index 0000000..fd7d2ae --- /dev/null +++ b/anthropics/README.md @@ -0,0 +1,4 @@ +anthropic +========= + +https://github.com/anthropics/anthropic-quickstarts diff --git a/anthropics/docker-compose.yml b/anthropics/docker-compose.yml new file mode 100644 index 0000000..15002bd --- /dev/null +++ b/anthropics/docker-compose.yml @@ -0,0 +1,15 @@ +services: + anthropic: + image: ghcr.io/anthropics/anthropic-quickstarts:computer-use-demo-latest + ports: + - "5900:5900" + - "6080:6080" + - "8080:8080" + - "8501:8501" + volumes: + - ./data:/home/computeruse/.anthropic + environment: + - ANTHROPIC_API_KEY=sk-xxx-xxx-xxx + - WIDTH=1024 + - HEIGHT=768 + restart: unless-stopped