update owncast

This commit is contained in:
kevin 2024-04-08 09:32:15 +08:00
parent e6e31fd68e
commit 1cab13aaaf
2 changed files with 12 additions and 6 deletions

View File

@ -11,16 +11,22 @@ personally control and regain ownership over your content.
version: "3.8"
services:
owncast:
image: gabekangas/owncast
command: /app/owncast -backupdir=/data -database=/data/database.db
image: owncast/owncast:0.1.3
command: /app/owncast -backupdir=/app/data -database=/app/data/database.db
ports:
- "1935:1935"
- "8080:8080"
volumes:
- ./data:/data
- ./data:/app/data
restart: unless-stopped
```
```bash
$ mkdir -p data
$ chown -R 101:101 data
$ docker compose up -d
```
## Using with OBS / Streamlabs
OBS is a pretty good piece of free software that will get you streaming from your own computer right away.

View File

@ -1,11 +1,11 @@
version: "3.8"
services:
owncast:
image: gabekangas/owncast
command: /app/owncast -backupdir=/data -database=/data/database.db
image: owncast/owncast:0.1.3
command: /app/owncast -backupdir=/app/data -database=/app/data/database.db
ports:
- "1935:1935"
- "8080:8080"
volumes:
- ./data:/data
- ./data:/app/data
restart: unless-stopped