From b741b95aed82b82f1ddc765eaf3f273f0d21de0f Mon Sep 17 00:00:00 2001 From: David Marzal <2069735+Marzal@users.noreply.github.com> Date: Sun, 20 Dec 2020 21:25:32 +0100 Subject: [PATCH] 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 --- examples/docker-compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/docker-compose.yaml b/examples/docker-compose.yaml index eb5e3d60a..41206a177 100644 --- a/examples/docker-compose.yaml +++ b/examples/docker-compose.yaml @@ -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