mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
12 lines
265 B
YAML
12 lines
265 B
YAML
version: "3.8"
|
|
services:
|
|
owncast:
|
|
image: owncast/owncast:0.1.3
|
|
command: /app/owncast -backupdir=/app/data -database=/app/data/database.db
|
|
ports:
|
|
- "1935:1935"
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|