Skip to content

Commit 23b9089

Browse files
committed
docs: add prebuilt Docker image usage to README
1 parent d689cf5 commit 23b9089

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

README.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,31 @@ Visit http://localhost:3000 in your browser.
139139

140140
## 🌐 Deploy
141141

142-
Host your own live version of Morphic with Vercel or Cloudflare Pages.
142+
Host your own live version of Morphic with Vercel, Cloudflare Pages, or Docker.
143143

144144
### Vercel
145145

146146
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fmiurla%2Fmorphic&env=OPENAI_API_KEY,TAVILY_API_KEY,UPSTASH_REDIS_REST_URL,UPSTASH_REDIS_REST_TOKEN)
147147

148+
### Docker Prebuilt Image
149+
150+
Prebuilt Docker images are available on GitHub Container Registry:
151+
152+
```bash
153+
docker pull ghcr.io/miurla/morphic:latest
154+
```
155+
156+
You can use it with docker-compose:
157+
158+
```yaml
159+
services:
160+
morphic:
161+
image: ghcr.io/miurla/morphic:latest
162+
env_file: .env.local
163+
ports:
164+
- '3000:3000'
165+
```
166+
148167
## 🔎 Search Engine
149168
150169
### Setting up the Search Engine in Your Browser

0 commit comments

Comments
 (0)