7
Unable to start lemmy docker
(beehaw.org)
All things programming and coding related. Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
If you enabled BuildKit globally in daemon.json config, you'll need to restart the docker daemon (
systemctl restart docker
). If you're enabling it for a one-off build, you'll need to run the build like this:DOCKER_BUILDKIT=1 docker build -t lemmy:latest .
I had to update some build scripts for a few other projects, and that worked.