Skip to content

Docker Support

Nick edited this page Mar 18, 2023 · 5 revisions

With version 0.4.3, Docker is now supported for the backend of lodestone, prebuilt images are available at: ghcr.io/lodestone-team/lodestone_core. If any issues arise, please create an issue in the lodestone_core repository.

Quick Start

If you just want to use the Docker image, just use these commands

$ docker volume create lodestone
$ docker run -d \
    --name lodestone \
    --restart unless-stopped \
    -p 16662:16662 \
    -v lodestone:/root/.lodestone \
    ghcr.io/lodestone-team/lodestone_core

Building Your Own Image

Currently, our prebuilt images are built via pulling from the newest release. If you wish to build your own image, the default Dockerfile should suffice.

$ docker build -t lodestone_core:latest .
Clone this wiki locally