|
|
|
ARG ARCH
|
|
|
|
ARG IMAGE=ossrs/srs:ubuntu20
|
|
|
|
FROM ${ARCH}${IMAGE} AS build
|
|
|
|
|
|
|
|
ARG CONFARGS
|
|
|
|
ARG MAKEARGS
|
|
|
|
ARG INSTALLDEPENDS
|
|
|
|
ARG BUILDPLATFORM
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
ARG SRS_AUTO_PACKAGER
|
|
|
|
RUN echo "BUILDPLATFORM: $BUILDPLATFORM, TARGETPLATFORM: $TARGETPLATFORM, PACKAGER: ${#SRS_AUTO_PACKAGER}, CONFARGS: ${CONFARGS}, MAKEARGS: ${MAKEARGS}, INSTALLDEPENDS: ${INSTALLDEPENDS}"
|
|
|
|
|
|
|
|
# https://serverfault.com/questions/949991/how-to-install-tzdata-on-a-ubuntu-docker-image
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
|
|
|
# To use if in RUN, see https://github.com/moby/moby/issues/7281#issuecomment-389440503
|
|
|
|
# Note that only exists issue like "/bin/sh: 1: [[: not found" for Ubuntu20, no such problem in CentOS7.
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
|
|
|
|
# Install depends tools.
|
|
|
|
RUN if [[ $INSTALLDEPENDS != 'NO' ]]; then \
|
|
|
|
apt-get update && apt-get install -y gcc make g++ patch unzip perl git libasan5; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Copy source code to docker.
|
|
|
|
COPY . /srs
|
|
|
|
WORKDIR /srs/trunk
|
|
|
|
|
|
|
|
# Build and install SRS.
|
|
|
|
# Note that SRT is enabled by default, so we configure without --srt=on.
|
|
|
|
# Note that we have copied all files by make install.
|
|
|
|
RUN ./configure --gb28181=on --h265=on ${CONFARGS} && make ${MAKEARGS} && make install
|
|
|
|
|
|
|
|
############################################################
|
|
|
|
# dist
|
|
|
|
############################################################
|
|
|
|
FROM ${ARCH}ubuntu:focal AS dist
|
|
|
|
|
|
|
|
ARG BUILDPLATFORM
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
RUN echo "BUILDPLATFORM: $BUILDPLATFORM, TARGETPLATFORM: $TARGETPLATFORM"
|
|
|
|
|
|
|
|
# Expose ports for streaming @see https://github.com/ossrs/srs#ports
|
Support HTTP-API for fetching reload result. v5.0.176 v6.0.71 (#3779)
## Reload Error Ignore
During a Reload, several stages will be passed through:
1. Parsing new configurations: Parse.
2. Transforming configurations: Transform.
3. Applying configurations: Apply.
Previously, any error at any stage would result in a direct exit, making
the system completely dependent on configuration checks:
```bash
./objs/srs -c conf/srs.conf -t
echo $?
#0
```
Optimized to: If an error occurs before applying the configuration, it
can be ignored. If an error occurs during the application of the
configuration, some of the configuration may have already taken effect,
leading to unpredictable behavior, so SRS will exit directly.
## Reload Fetch API
Added a new HTTP API to query the result of the reload.
```nginx
http_api {
enabled on;
raw_api {
enabled on;
allow_reload on;
}
}
```
```bash
curl http://localhost:1985/api/v1/raw?rpc=reload-fetch
```
```json
{
"code": 0,
"data": {
"err": 0,
"msg": "Success",
"state": 0,
"rid": "0s6y0n9"
}
}
{
"code": 0,
"data": {
"err": 1023,
"msg": "code=1023(ConfigInvalid) : parse file : parse buffer containers/conf/srs.release-local.conf : root parse : parse dir : parse include buffer containers/data/config/srs.vhost.conf : read token, line=0, state=0 : line 3: unexpected end of file, expecting ; or \"}\"",
"state": 1,
"rid": "0g4z471"
}
}
```
This way, you can know if the last reload of the system was successful.
---------
Co-authored-by: Haibo Chen <495810242@qq.com>
1 year ago
|
|
|
EXPOSE 1935 1985 8080 5060 9000 8000/udp 10080/udp
|
|
|
|
|
|
|
|
# FFMPEG 4.1
|
|
|
|
COPY --from=build /usr/local/bin/ffmpeg /usr/local/srs/objs/ffmpeg/bin/ffmpeg
|
|
|
|
# SRS binary, config files and srs-console.
|
|
|
|
COPY --from=build /usr/local/srs /usr/local/srs
|
|
|
|
|
|
|
|
# Test the version of binaries.
|
|
|
|
RUN ldd /usr/local/srs/objs/ffmpeg/bin/ffmpeg && \
|
|
|
|
/usr/local/srs/objs/ffmpeg/bin/ffmpeg -version && \
|
|
|
|
ldd /usr/local/srs/objs/srs && \
|
|
|
|
/usr/local/srs/objs/srs -v
|
|
|
|
|
|
|
|
# Default workdir and command.
|
|
|
|
WORKDIR /usr/local/srs
|
|
|
|
ENV SRS_DAEMON=off
|
|
|
|
CMD ["./objs/srs", "-c", "conf/srs.conf"]
|
|
|
|
|