Skip to content

πŸš€ Version 0.23.0

Choose a tag to compare

@ig-semantic-release-bot ig-semantic-release-bot released this 22 Jan 21:11
· 50 commits to main since this release

0.23.0 (2026-01-22)

✨ Features

πŸ”§ Miscellaneous

  • deps: Bump hono in /examples/docker-compose/mcp/pizza-server (#228) (16200aa)

πŸ“¦ Quick Installation

Binary Installation

Install latest version:

curl -fsSL https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/install.sh | bash

Install this version:

curl -fsSL https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/install.sh | VERSION=v0.23.0 bash

Install to custom directory:

curl -fsSL https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/install.sh | INSTALL_DIR=~/.local/bin bash

Verify installation:

inference-gateway --version

Running as a Container (Recommended)

Using Docker:

docker run -d \
  -p 8080:8080 \
  -e OPENAI_API_KEY=your-api-key \
  ghcr.io/inference-gateway/inference-gateway:0.23.0

Using Docker Compose:

# Download example configuration
curl -O https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/examples/docker-compose/basic/docker-compose.yml
curl -O https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/examples/docker-compose/basic/.env.example
mv .env.example .env

# Edit .env with your API keys
# Start the gateway
docker compose up -d

For more installation options and documentation, visit the README.