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