Skip to content

Commit e0d5f7b

Browse files
committed
docs: update README to include Docker installation instructions
1 parent 6ae9cb5 commit e0d5f7b

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,28 @@ routes:
9292
token_url: https://github.com/login/oauth/access_token
9393
```
9494
95-
### Docker Compose
95+
### Docker
96+
97+
The MCP server is available on [Docker Hub](https://hub.docker.com/r/nickytonline/github-mcp-http) and [GitHub Container Registry](https://github.com/nickytonline/github-mcp-server/pkgs/container/github-mcp-server):
98+
99+
```bash
100+
docker pull nickytonline/github-mcp-http:1
101+
# Or from GitHub Container Registry:
102+
# docker pull ghcr.io/nickytonline/github-mcp-server:1
103+
```
104+
105+
#### Docker Compose
96106

97107
```yaml
98108
services:
99109
github-mcp:
100-
build:
101-
context: https://github.com/nickytonline/github-mcp-http.git
102-
dockerfile: Dockerfile
110+
image: nickytonline/github-mcp-http:1
111+
# Or from GitHub Container Registry:
112+
# image: ghcr.io/nickytonline/github-mcp-server:1
113+
# Or build from source:
114+
# build:
115+
# context: https://github.com/nickytonline/github-mcp-http.git
116+
# dockerfile: Dockerfile
103117
pull_policy: always
104118
container_name: github-mcp
105119
restart: unless-stopped

0 commit comments

Comments
 (0)