Check out the Quickstart guide for a more guided Docker deployment

Guide

Note: On Windows, the commands will be slightly different but all the steps are the same.
1

Install Requirements

2

Clone the Onyx repo

git clone https://github.com/onyx-dot-app/onyx.git
3

Navigate to the compose files

cd onyx/deployment/docker_compose
4

Launch Onyx

To pull images from Docker Hub and start Onyx:
docker compose up -d
Recommended to use -d to run in detached mode.
Alternatively, to build images from source:
docker compose up -d --build --force-recreate
After the containers come up, the system needs to go through an initialization process after which you can access Onyx at localhost:3000.

Next Steps