-
Notifications
You must be signed in to change notification settings - Fork 32
Docker Support
Peter Jiang edited this page Jun 18, 2024
·
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 our repository.
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
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 .
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.