1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-29 18:21:24 +00:00
dockerfiles/owncast/docker-compose.yml

12 lines
261 B
YAML
Raw Normal View History

2021-02-01 04:18:33 +00:00
version: "3.8"
services:
owncast:
image: gabekangas/owncast
2021-02-01 04:53:26 +00:00
command: /app/owncast --configFile=/data/config.yaml --database=/data/chat.db
2021-02-01 04:18:33 +00:00
ports:
- "1935:1935"
- "8080:8080"
volumes:
- ./data:/data
restart: unless-stopped