Skip to content

Docker Support

Nick edited this page Aug 15, 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:/home/user/.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 .

Setup key

On first-time setup, Lodestone Core will print a setup key to stdout, which you will need when connecting to it the first time in the web dashboard. Make sure you can see the output of your docker container.

Clone this wiki locally