Skip to content

Commit

Permalink
Add sample docker-compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
ioppermann committed Jan 25, 2019
1 parent acb8ba4 commit 7ce915a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: '3'
services:
restreamer:
image: datarhei/restreamer
ports:
- "8080:8080"
networks:
- frontend
volumes:
- "~/db:/restreamer/db"
environment:
- RS_USERNAME=admin
- RS_PASSWORD=datarhei
- RS_LOGLEVEL=4
- RS_TIMEZONE=Europe/Berlin
- RS_SNAPSHOT_INTERVAL=1m
- RS_AUDIO=auto
deploy:
replicas: 1
restart_policy:
condition: any
delay: 5s
window: 10s
networks:
frontend:

0 comments on commit 7ce915a

Please sign in to comment.