quecto
Installation

Docker

Host Quecto with Docker

Docker CLI

Run with Docker

Execute the following command to run Quecto with Docker, but replace port and /path/to/quecto with your desired port and path.

docker run -d -p port:3000 -v /path/to/quecto:/app/data --name quecto ghcr.io/oriionn/quecto:latest

Initialize database and config

Execute the following command to generate the database and configuration files.

docker exec quecto bun generate:config && bun generate:db

Configuration

Edit the config.yml file in the config directory.

For more information, see the Configuration page.

Docker Compose

Create a docker-compose.yml file

Create a docker-compose.yml file, but replace port and /path/to/quecto with your desired port and path.

docker-compose.yml
version: "3"
services:
  server:
    image: ghcr.io/oriionn/quecto:latest
    container_name: quecto
    restart: always
    ports:
      - port:3000
    volumes:
      - /path/to/quecto:/app/data

Run with Docker Compose

Execute the following command to run Quecto with Docker Compose.

docker-compose up -d

Initialize database and config

Execute the following command to generate the database and configuration files.

docker exec quecto bun generate:config && docker exec quecto bun generate:db

Configuration

Edit the config.yml file in the config directory.

For more information, see the Configuration page.

On this page