1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 05:48:42 +00:00
dockerfiles/owncast/README.md

46 lines
1.3 KiB
Markdown
Raw Normal View History

2021-02-01 04:18:33 +00:00
owncast
=======
[Owncast][1] is a self-hosted live video and web chat server for use with
existing popular broadcasting software. Point your live stream at a server you
personally control and regain ownership over your content.
2022-02-02 03:08:12 +00:00
## Up and Running
```yaml
version: "3.8"
services:
owncast:
2024-04-08 01:32:15 +00:00
image: owncast/owncast:0.1.3
command: /app/owncast -backupdir=/app/data -database=/app/data/database.db
2022-02-02 03:08:12 +00:00
ports:
- "1935:1935"
- "8080:8080"
volumes:
2024-04-08 01:32:15 +00:00
- ./data:/app/data
2022-02-02 03:08:12 +00:00
restart: unless-stopped
```
2024-04-08 01:32:15 +00:00
```bash
$ mkdir -p data
2024-04-08 10:20:30 +00:00
# temporarily disable until we figure out how to move forward
# chown -R 101:101 data
2024-04-08 01:32:15 +00:00
$ docker compose up -d
```
2024-04-08 10:20:30 +00:00
> https://github.com/owncast/owncast/blob/develop/Earthfile#L129-L131
2021-02-01 04:53:26 +00:00
## Using with OBS / Streamlabs
OBS is a pretty good piece of free software that will get you streaming from your own computer right away.
- Install OBS or Streamlabs OBS and get it working with your local setup.
- Open OBS Settings and go to “Stream”.
- Select “Custom…” as the service.
- Enter the URL of the server running your streaming service in the format of rtmp://myserver.net/live.
- Enter your “Stream Key” that matches the key you put in your config.yaml file.
- Start the server.
- Press “Start Streaming” (OBS) or “Go Live” (Streamlabs) on OBS.
2021-02-01 04:18:33 +00:00
[1]: https://owncast.online/