Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Jade Ellis
986ab7d051
docs: Changelog 2026-03-03 19:45:59 +00:00
Jade Ellis
6767ba826f
feat(docker)!: Add ENTRYPOINT declaration
(means that you don't have to specify conduwuit in docker image runs)
2026-03-03 19:44:22 +00:00
2 changed files with 2 additions and 0 deletions

View file

@ -0,0 +1 @@
BREAKING: Added an entrypoint to the Docker image. This means you no longer need to specify the binary when running a command using the image. Contributed by @Jade

View file

@ -281,4 +281,5 @@ ENV LD_LIBRARY_PATH=/usr/lib
# Continuwuity default port
EXPOSE 8008
ENTRYPOINT [ "/sbin/conduwuit" ]
CMD ["/sbin/conduwuit"]