Using Docker
That's definitely the easiest and most straightforward way of running OWD!
Pre-requisites
Having
docker
installed on the host.Having
docker-compose
installed on the host.
Install steps
To be running properly, Open Weight Database needs a PostgreSQL instance. Here is the most simple working Docker Compose configuration:
docker-compose.yaml
You'll note that the images versions are :main
, which are the latest pushes on the main
branch.
To ensure that nothing breaks unexpectedly, you should use pinned versions.
You'll also need to create a .env
file at the same place than the Docker Compose file. It should contain:
.env
To start the Docker Compose stack, run:
You should be ready to go!
Last updated