Overview
- Full name
docker.io/tiangolo/nginx-rtmp- Registry
- docker.io
- Namespace
- tiangolo
- Repository
- nginx-rtmp
- Cached tags
- 208
- Last synced
- 07/05/2026, 08:36 PM
- Topics
Introduction
nginx-rtmp 流媒体服务器镜像,RTMP 推流接入与 HLS 切片分发,直播转码与低延迟分发场景的 Docker 快速部署方案。
Details
tiangolo/nginx-rtmp 基于 nginx-rtmp-module 构建 RTMP/HLS 流媒体服务,接收 OBS 等工具推流并生成 HLS 播放列表。定位为流媒体边缘服务,挂载自定义 nginx.conf 配置转推与录制;docker 直播 PoC 或 K8s Deployment 内网直播分发。
快速启动
docker run -d --name nginx-rtmp \
-p 1935:1935 -p 8080:80 \
docker.io/tiangolo/nginx-rtmp:latest
推荐实践
docker run -d --name nginx-rtmp \
--restart unless-stopped \
-p 1935:1935 -p 8080:80 \
-v /data/nginx-rtmp/nginx.conf:/etc/nginx/nginx.conf:ro \
-v /data/nginx-rtmp/recordings:/recordings \
docker.io/tiangolo/nginx-rtmp:1.2.0
核心参数说明
-p 1935:1935— RTMP 推流端口-p 8080:80— HLS HTTP 播放-v .../nginx.conf:...— RTMP 应用配置-v .../recordings:...— 录制文件存储
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-rtmp
spec:
replicas: 2
selector:
matchLabels:
app: nginx-rtmp
template:
metadata:
labels:
app: nginx-rtmp
spec:
containers:
- name: rtmp
image: docker.io/tiangolo/nginx-rtmp:1.2.0
ports:
- containerPort: 1935
- containerPort: 80
volumeMounts:
- name: config
mountPath: /etc/nginx/nginx.conf
subPath: nginx.conf
volumes:
- name: config
configMap:
name: nginx-rtmp-config
---
apiVersion: v1
kind: Service
metadata:
name: nginx-rtmp
spec:
selector:
app: nginx-rtmp
ports:
- name: rtmp
port: 1935
- name: hls
port: 80
LoadBalancer 暴露 RTMP;HLS 走 Ingress CDN。
Latest tags (20)
View all 208 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/tiangolo/nginx-rtmp :latest-2026-06-29 | linux/amd64linux/arm64 | 2026/06/29 09:11 | 312.6 MB | sha256:0de0bc536bb8… | |||
docker.io/tiangolo/nginx-rtmp :latest | linux/amd64linux/arm64 | 2026/06/29 09:11 | 312.6 MB | sha256:0de0bc536bb8… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-06-24 | linux/amd64linux/arm64 | 2026/06/25 06:45 | 312.6 MB | sha256:36ff56ff202b… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-06-23 | linux/amd64linux/arm64 | 2026/06/24 07:22 | 317.8 MB | sha256:6277e0677a11… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-06-22 | linux/amd64linux/arm64 | 2026/06/22 09:16 | 317.8 MB | sha256:fe29c95e19c0… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-06-21 | linux/amd64linux/arm64 | 2026/06/22 04:06 | 317.8 MB | sha256:99312b9cdc29… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-06-15 | linux/amd64linux/arm64 | 2026/06/15 09:18 | 312.6 MB | sha256:70e9000af73a… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-06-14 | linux/amd64linux/arm64 | 2026/06/14 21:19 | 312.6 MB | sha256:5849bdbb87b1… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-06-08 | linux/amd64linux/arm64 | 2026/06/08 09:12 | 312.3 MB | sha256:cc009c8bf9dd… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-06-01 | linux/amd64linux/arm64 | 2026/06/01 09:13 | 312.3 MB | sha256:c3a4bf7a2a1b… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-05-25 | linux/amd64linux/arm64 | 2026/05/25 09:06 | 312.3 MB | sha256:560f9a59c8ad… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-05-22 | linux/amd64linux/arm64 | 2026/05/23 01:00 | 312.3 MB | sha256:deae8e04b248… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-05-19 | linux/amd64linux/arm64 | 2026/05/19 13:50 | 312.3 MB | sha256:27d1cbe50b0b… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-05-18 | linux/amd64linux/arm64 | 2026/05/18 09:04 | 312.3 MB | sha256:e619f1c7ce27… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-05-11 | linux/amd64linux/arm64 | 2026/05/11 09:02 | 312.3 MB | sha256:332b528c29a8… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-05-04 | linux/amd64linux/arm64 | 2026/05/04 08:59 | 312.3 MB | sha256:89dc5d37bb56… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-04-27 | linux/amd64linux/arm64 | 2026/04/27 08:56 | 312.3 MB | sha256:81aa32dc53fd… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-04-20 | linux/amd64linux/arm64 | 2026/04/20 08:53 | 312.2 MB | sha256:b4804930b730… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-04-13 | linux/amd64linux/arm64 | 2026/04/13 08:52 | 312.2 MB | sha256:4c70e2d52d29… | |||
docker.io/tiangolo/nginx-rtmp :latest-2026-04-06 | linux/amd64linux/arm64 | 2026/04/06 08:50 | 312.2 MB | sha256:0d16bdfe195a… |