fix(docker): expose port 9091 and allow external API access

Add 9091 port mapping to compose.yml to make the REST API reachable
from outside the container. Previously only port 9090 (metrics) was
published, making the documented curl commands non-functional.

fixes #434
This commit is contained in:
TEMAndroid
2026-03-19 15:54:01 +03:00
committed by GitHub
parent 1e000c2e7e
commit 05c066c676
4 changed files with 6 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ USER telemt
EXPOSE 443
EXPOSE 9090
EXPOSE 9091
ENTRYPOINT ["/app/telemt"]
CMD ["config.toml"]