Skip to content

🚀 Version 0.25.2

Latest

Choose a tag to compare

@inference-gateway-releaser inference-gateway-releaser released this 11 Jun 20:35
· 15 commits to main since this release

0.25.2 (2026-06-11)

🐛 Bug Fixes

  • examples: correct broken links, env vars, and setup docs (#360) (b7a38ce)

📚 Documentation

  • examples: add docker-compose authentication example (#366) (d8f8e21)

🔧 Miscellaneous

  • deps: bump claude-code-action v1.0.135 -> v1.0.142 (#359) (0056e75)

📦 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.25.2 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.25.2

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.