Skip to content

Commit

Permalink
Switch from Docker Hub to GitHub Container Registry
Browse files Browse the repository at this point in the history
  • Loading branch information
tedostrem committed Nov 6, 2024
1 parent 6d267bf commit 00533ab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rusty<img src="./gate.png" width="13%" alt="RustyGate Logo">Gate

[![Docker Build](https://github.com/3loc/rustygate/actions/workflows/docker-publish.yml/badge.svg)](https://github.com/3loc/rustygate/actions/workflows/docker-publish.yml) [![Docker Pulls](https://img.shields.io/docker/pulls/3loc/rustygate.svg)](https://hub.docker.com/r/3loc/rustygate) [![Docker Image Size](https://img.shields.io/docker/image-size/3loc/rustygate/latest)](https://hub.docker.com/r/3loc/rustygate) [![License](https://img.shields.io/github/license/3loc/rustygate.svg)](https://github.com/3loc/rustygate/blob/main/LICENSE)
[![Docker Build](https://github.com/3loc/rustygate/actions/workflows/docker-publish.yml/badge.svg)](https://github.com/3loc/rustygate/actions/workflows/docker-publish.yml) [![Docker Image Size](https://img.shields.io/github/docker/image-size/3loc/rustygate)](https://github.com/3loc/rustygate/pkgs/container/rustygate) [![License](https://img.shields.io/github/license/3loc/rustygate.svg)](https://github.com/3loc/rustygate/blob/main/LICENSE)

**RustyGate** is a lightweight, high performance, asynchronous OpenAI API proxy server with rate limiting, written in Rust.

Expand Down Expand Up @@ -146,7 +146,11 @@ This project is licensed under the MIT License.
### Using Docker (recommended)
```bash
docker pull 3loc/rustygate
# Pull from GitHub Container Registry
docker pull ghcr.io/3loc/rustygate:latest
# Or specify a version
docker pull ghcr.io/3loc/rustygate:0.1.0
```
### Using Pre-built Binaries
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
platforms:
- "linux/amd64"
- "linux/arm64"
image: 3loc/rustygate
image: ghcr.io/3loc/rustygate
ports:
- "${PORT:-8080}:8080"
environment:
Expand All @@ -34,7 +34,7 @@ services:
platforms:
- "linux/amd64"
- "linux/arm64"
image: 3loc/rustygate-test
image: ghcr.io/3loc/rustygate-test
environment:
- RUSTYGATE_URL=http://rustygate:8080
- OPENAI_API_KEY=${OPENAI_API_KEY}
Expand Down

0 comments on commit 00533ab

Please sign in to comment.