Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
26 lines
792 B
YAML
26 lines
792 B
YAML
# NOTE: The GHCR image (ghcr.io/rightnow-ai/openfang) is not yet public.
|
|
# For now, build from source using `docker compose up --build`.
|
|
# See: https://github.com/RightNow-AI/openfang/issues/12
|
|
|
|
version: "3.8"
|
|
services:
|
|
openfang:
|
|
build: .
|
|
# image: ghcr.io/rightnow-ai/openfang:latest # Uncomment when GHCR is public
|
|
ports:
|
|
- "4200:4200"
|
|
volumes:
|
|
- openfang-data:/data
|
|
environment:
|
|
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-}
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY:-}
|
|
- GROQ_API_KEY=${GROQ_API_KEY:-}
|
|
- TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN:-}
|
|
- DISCORD_BOT_TOKEN=${DISCORD_BOT_TOKEN:-}
|
|
- SLACK_BOT_TOKEN=${SLACK_BOT_TOKEN:-}
|
|
- SLACK_APP_TOKEN=${SLACK_APP_TOKEN:-}
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
openfang-data:
|