Mod exposes ports

This commit is contained in:
Jan Stabenow
2022-09-29 10:10:05 +02:00
parent 6288b620df
commit 8af8cc9301
2 changed files with 13 additions and 5 deletions

View File

@@ -5,16 +5,18 @@
- Add HLS session middleware to diskfs - Add HLS session middleware to diskfs
- Add /v3/metrics (get) endpoint to list all known metrics - Add /v3/metrics (get) endpoint to list all known metrics
- Add logging HTTP request and response body sizes - Add logging HTTP request and response body sizes
- Exclude .m3u8 and .mpd files from disk cache by default - Add process id and reference glob pattern matching
- Add cache block list for extensions not to cache
- Mod exclude .m3u8 and .mpd files from disk cache by default
- Mod replaces x/crypto/acme/autocert with caddyserver/certmagic
- Mod exposes ports (Docker desktop)
- Fix assigning cleanup rules for diskfs - Fix assigning cleanup rules for diskfs
- Fix wrong path for swagger definition - Fix wrong path for swagger definition
- Fix process cleanup on delete, remove empty directories from disk - Fix process cleanup on delete, remove empty directories from disk
- Add process id and reference glob pattern matching
- Fix SRT blocking port on restart (upgrade datarhei/gosrt) - Fix SRT blocking port on restart (upgrade datarhei/gosrt)
- Fix RTMP communication (datarhei/restreamer#385) - Fix RTMP communication (Blackmagic Web Presenter, thx 235 MEDIA)
- Fix RTMP communication (Blackmagic ATEM Mini, datarhei/restreamer#385)
- Fix injecting commit, branch, and build info - Fix injecting commit, branch, and build info
- Add cache block list for extensions not to cache
- Replace x/crypto/acme/autocert with caddyserver/certmagic
#### Core v16.9.0 > v16.9.1 #### Core v16.9.0 > v16.9.1

View File

@@ -14,6 +14,12 @@ ENV CORE_CONFIGFILE=/core/config/config.json
ENV CORE_STORAGE_DISK_DIR=/core/data ENV CORE_STORAGE_DISK_DIR=/core/data
ENV CORE_DB_DIR=/core/config ENV CORE_DB_DIR=/core/config
EXPOSE 8080/tcp
EXPOSE 8181/tcp
EXPOSE 1935/tcp
EXPOSE 1936/tcp
EXPOSE 6000/udp
VOLUME ["/core/data", "/core/config"] VOLUME ["/core/data", "/core/config"]
ENTRYPOINT ["/core/bin/run.sh"] ENTRYPOINT ["/core/bin/run.sh"]
WORKDIR /core WORKDIR /core