> For AI agents: the complete documentation index is available at https://www.tteam.icu/llms.txt, the full documentation bundle is available at https://www.tteam.icu/llms-full.txt.

# owncast自建直播

[开源地址](https://github.com/owncast/owncast)

Owncast 是一个自托管直播服务，可以接收 RTMP 推流并提供网页播放页面，适合小规模直播、内网直播或临时活动直播。

:::tip
网页使用 `8080` 端口，RTMP 使用 `1935` 端口，`/admin` 是后台入口，默认账号为 `admin/abc123`。首次登录后应立即修改密码。
:::

```bash file="./owncast/docker-compose.yml" title="docker-compose.yml"
services:
  owncast:
    image: gabekangas/owncast:latest
    container_name: owncast
    restart: unless-stopped
    network_mode: host
    volumes:
      - ./data:/app/data

```
