gephyr 1.16.13

Gephyr is a headless local AI relay/proxy API handling OpenAI, Claude, and Gemini-compatible APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
services:
  gephyr:
    image: gephyr:latest
    container_name: gephyr
    ports:
      - "127.0.0.1:8145:8145"
    volumes:
      - ~/.gephyr:/home/gephyr/.gephyr
    env_file:
      - ../.env.local
    environment:
      - LOG_LEVEL=info
      - AUTH_MODE=strict
      # In Docker, bind 0.0.0.0 so the published port works; host exposure is limited by ports:.
      - ALLOW_LAN_ACCESS=true
    restart: unless-stopped