Skip to content

馃殌 Version 0.48.1

Choose a tag to compare

@inference-gateway-releaser inference-gateway-releaser released this 13 Aug 22:01
· 63 commits to main since this release
Immutable release. Only release title and notes can be modified.

0.48.1 (2026-08-13)

馃悰 Bug Fixes

  • telemetry: append /v1/traces to path-less OTLP trace endpoints (#555) (1c1f1e3), references #551

馃摝 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.48.1 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.48.1

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.