We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acb8ba4 commit 7ce915aCopy full SHA for 7ce915a
docker-compose.yml
@@ -0,0 +1,25 @@
1
+version: '3'
2
+services:
3
+ restreamer:
4
+ image: datarhei/restreamer
5
+ ports:
6
+ - "8080:8080"
7
+ networks:
8
+ - frontend
9
+ volumes:
10
+ - "~/db:/restreamer/db"
11
+ environment:
12
+ - RS_USERNAME=admin
13
+ - RS_PASSWORD=datarhei
14
+ - RS_LOGLEVEL=4
15
+ - RS_TIMEZONE=Europe/Berlin
16
+ - RS_SNAPSHOT_INTERVAL=1m
17
+ - RS_AUDIO=auto
18
+ deploy:
19
+ replicas: 1
20
+ restart_policy:
21
+ condition: any
22
+ delay: 5s
23
+ window: 10s
24
+networks:
25
+ frontend:
0 commit comments