Browse Source

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
pull/487/head
David Marzal 4 years ago committed by GitHub
parent
commit
b741b95aed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      examples/docker-compose.yaml

4
examples/docker-compose.yaml

@ -2,12 +2,12 @@ version: '2' @@ -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…
Cancel
Save