Update docker-compose.yaml example (#476)

* Update docker-compose.yaml example

With this change works on 0.3 release.

chatDatabase -> database

* docker-compose.yaml example to owncast:latest

owncast:latest to avoid having to update this file with every release
This commit is contained in:
David Marzal 2020-12-20 21:25:32 +01:00 committed by GitHub
parent c7cc973ebc
commit b741b95aed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,12 +2,12 @@ version: '2'
services:
owncast:
image: gabekangas/owncast:0.0.2
image: gabekangas/owncast:latest
restart: unless-stopped
volumes:
- ${PWD}/config-example.yaml:/app/config.yaml # Adjust once you create your own config.yaml
- owncast_db:/db # Remove if you don't want chat persistant
command: /app/owncast --configFile=config.yaml --chatDatabase=/db/chat.db
command: /app/owncast -configFile=config.yaml -database=/db/chat.db
ports:
- 8080:8080
- 1935:1935