this post was submitted on 07 Aug 2023
7 points (100.0% liked)
Programming
13478 readers
1 users here now
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.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Building is different than doing a
compose up
. If you're making changes to the dockerfile and want to build your changes, thenDOCKER_BUILDKIT=1 docker build -t custom/lemmy: .
should be the correct method.Then you would change the docker-compose file to reference your newly built image instead of using the docker hub one. See this document.