mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Support docker image for lighthouse. v4.0.231
This commit is contained in:
parent
386ac44558
commit
6c6c0f0f0f
3 changed files with 16 additions and 2 deletions
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
|
@ -54,11 +54,14 @@ jobs:
|
||||||
env:
|
env:
|
||||||
PACKAGER: ${{ secrets.SRS_PACKAGER_DOCKER }}
|
PACKAGER: ${{ secrets.SRS_PACKAGER_DOCKER }}
|
||||||
PACKAGER_DROPLET: ${{ secrets.SRS_PACKAGER_DROPLET }}
|
PACKAGER_DROPLET: ${{ secrets.SRS_PACKAGER_DROPLET }}
|
||||||
|
PACKAGER_LIGHTHOUSE: ${{ secrets.SRS_PACKAGER_LIGHTHOUSE }}
|
||||||
run: |
|
run: |
|
||||||
echo "Release ossrs/srs:$SRS_TAG"
|
echo "Release ossrs/srs:$SRS_TAG"
|
||||||
docker build --tag ossrs/srs:$SRS_TAG --build-arg SRS_AUTO_PACKAGER=$PACKAGER -f trunk/Dockerfile .
|
docker build --tag ossrs/srs:$SRS_TAG --build-arg SRS_AUTO_PACKAGER=$PACKAGER -f trunk/Dockerfile .
|
||||||
echo "Release ossrs/droplet:$SRS_TAG"
|
echo "Release ossrs/droplet:$SRS_TAG"
|
||||||
docker build --tag ossrs/droplet:$SRS_TAG --build-arg SRS_AUTO_PACKAGER=$PACKAGER_DROPLET -f trunk/Dockerfile .
|
docker build --tag ossrs/droplet:$SRS_TAG --build-arg SRS_AUTO_PACKAGER=$PACKAGER_DROPLET -f trunk/Dockerfile .
|
||||||
|
echo "Release ossrs/lighthouse:$SRS_TAG"
|
||||||
|
docker build --tag ossrs/lighthouse:$SRS_TAG --build-arg SRS_AUTO_PACKAGER=$PACKAGER_LIGHTHOUSE -f trunk/Dockerfile .
|
||||||
|
|
||||||
# Docker hub
|
# Docker hub
|
||||||
- name: Login docker hub
|
- name: Login docker hub
|
||||||
|
@ -75,6 +78,10 @@ jobs:
|
||||||
docker tag ossrs/droplet:$SRS_TAG ossrs/droplet:$SRS_MAJOR
|
docker tag ossrs/droplet:$SRS_TAG ossrs/droplet:$SRS_MAJOR
|
||||||
docker tag ossrs/droplet:$SRS_TAG ossrs/droplet:latest
|
docker tag ossrs/droplet:$SRS_TAG ossrs/droplet:latest
|
||||||
docker push --all-tags ossrs/droplet
|
docker push --all-tags ossrs/droplet
|
||||||
|
#
|
||||||
|
docker tag ossrs/lighthouse:$SRS_TAG ossrs/lighthouse:$SRS_MAJOR
|
||||||
|
docker tag ossrs/lighthouse:$SRS_TAG ossrs/lighthouse:latest
|
||||||
|
docker push --all-tags ossrs/lighthouse
|
||||||
|
|
||||||
# Aliyun ACR hub
|
# Aliyun ACR hub
|
||||||
- name: Login Aliyun docker hub
|
- name: Login Aliyun docker hub
|
||||||
|
@ -98,6 +105,13 @@ jobs:
|
||||||
docker tag ossrs/droplet:$SRS_TAG registry.cn-hangzhou.aliyuncs.com/ossrs/droplet:$SRS_MAJOR
|
docker tag ossrs/droplet:$SRS_TAG registry.cn-hangzhou.aliyuncs.com/ossrs/droplet:$SRS_MAJOR
|
||||||
docker tag ossrs/droplet:$SRS_TAG registry.cn-hangzhou.aliyuncs.com/ossrs/droplet:latest
|
docker tag ossrs/droplet:$SRS_TAG registry.cn-hangzhou.aliyuncs.com/ossrs/droplet:latest
|
||||||
docker push --all-tags registry.cn-hangzhou.aliyuncs.com/ossrs/droplet
|
docker push --all-tags registry.cn-hangzhou.aliyuncs.com/ossrs/droplet
|
||||||
|
#
|
||||||
|
docker tag ossrs/lighthouse:$SRS_TAG registry.cn-hangzhou.aliyuncs.com/ossrs/lighthouse:$SRS_TAG
|
||||||
|
docker tag ossrs/lighthouse:$SRS_TAG registry.cn-hangzhou.aliyuncs.com/ossrs/lighthouse:$SRS_VERSION
|
||||||
|
docker tag ossrs/lighthouse:$SRS_TAG registry.cn-hangzhou.aliyuncs.com/ossrs/lighthouse:v$SRS_MAJOR
|
||||||
|
docker tag ossrs/lighthouse:$SRS_TAG registry.cn-hangzhou.aliyuncs.com/ossrs/lighthouse:$SRS_MAJOR
|
||||||
|
docker tag ossrs/lighthouse:$SRS_TAG registry.cn-hangzhou.aliyuncs.com/ossrs/lighthouse:latest
|
||||||
|
docker push --all-tags registry.cn-hangzhou.aliyuncs.com/ossrs/lighthouse
|
||||||
|
|
||||||
##################################################################################################################
|
##################################################################################################################
|
||||||
##################################################################################################################
|
##################################################################################################################
|
||||||
|
|
|
@ -8,7 +8,7 @@ The changelog for SRS.
|
||||||
|
|
||||||
## SRS 4.0 Changelog
|
## SRS 4.0 Changelog
|
||||||
|
|
||||||
* v4.0, 2022-01-17, Release v4.0-b4, 4.0 beta4, v4.0.230, 144393 lines.
|
* v4.0, 2022-01-21, Support docker image for [lighthouse](https://hub.docker.com/r/ossrs/lighthouse). v4.0.231
|
||||||
* v4.0, 2022-01-17, Enable rtmp2rtc and rtc2rtmp for docker.conf
|
* v4.0, 2022-01-17, Enable rtmp2rtc and rtc2rtmp for docker.conf
|
||||||
* v4.0, 2022-01-17, Support docker image for [droplet](https://hub.docker.com/r/ossrs/droplet). v4.0.230
|
* v4.0, 2022-01-17, Support docker image for [droplet](https://hub.docker.com/r/ossrs/droplet). v4.0.230
|
||||||
* v4.0, 2022-01-16, Update README for **Cloud Virtual Machine([CN](https://github.com/ossrs/srs/wiki/v4_CN_Home#cloud-virtual-machine) / [EN](https://github.com/ossrs/srs/wiki/v4_EN_Home#cloud-virtual-machine))**
|
* v4.0, 2022-01-16, Update README for **Cloud Virtual Machine([CN](https://github.com/ossrs/srs/wiki/v4_CN_Home#cloud-virtual-machine) / [EN](https://github.com/ossrs/srs/wiki/v4_EN_Home#cloud-virtual-machine))**
|
||||||
|
|
|
@ -9,6 +9,6 @@
|
||||||
|
|
||||||
#define VERSION_MAJOR 4
|
#define VERSION_MAJOR 4
|
||||||
#define VERSION_MINOR 0
|
#define VERSION_MINOR 0
|
||||||
#define VERSION_REVISION 230
|
#define VERSION_REVISION 231
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue