mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
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:
parent
c7cc973ebc
commit
b741b95aed
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue