This repository has been archived by the owner on Mar 31, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
69 lines (63 loc) · 2.18 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# THIS IS A SAMPLE FILE
# IS IS NOT INTENDED TO BE USED VERBATIM
version: '3.6'
services:
ingest:
# Visit https://github.com/lolPants/frameshift/packages/633178
# to find latest image tag
image: docker.pkg.github.com/lolpants/frameshift/frameshift-ingest
restart: unless-stopped
networks:
- internal
ports:
- 8084:8084/tcp
- 8088:8088/tcp
- 9000-9100:9000-9100/udp
- 20000-20100:20000-20100/udp
environment:
# These are fixed and should not be changed
# unless you know what you are doing.
- FTL_SERVICE_CONNECTION=REST
- FTL_SERVICE_REST_HOSTNAME=web
- FTL_SERVICE_REST_PORT=3000
- FTL_SERVICE_REST_HTTPS=0
- FTL_SERVICE_REST_PATH_BASE=/api/ingest
# This should match the public IP of your host machine
- DOCKER_IP=<host ip>
# This should be set to a long, cryptographically
# secure random string.
- FTL_SERVICE_REST_AUTH_TOKEN=secret_change_me
server:
# Visit https://github.com/lolPants/frameshift/packages/633173
# to find latest image tag
image: docker.pkg.github.com/lolpants/frameshift/frameshift-server
restart: unless-stopped
networks:
- internal
ports:
- 3000:3000/tcp
environment:
# This should match the env var set above
- FTL_SERVICE_REST_AUTH_TOKEN=secret_change_me
# This should point towards the proxied ingest
# server API, minus `/janus`.
# eg: https://ftl.example.com/
- FTL_CLIENT_INGEST_SERVER=<ingest url>
# Controls how the HMAC portion of a stream key is
# calculated. The channel ID is used as the input.
# Algorithm is set to sha1 by default and can use
# any algorithm supported by your version of OpenSSL.
- FTL_CLIENT_HMAC_SECRET=another_secret_change_me
# - FTL_CLIENT_HMAC_ALGO=sha1
# Channel ID [black|white]lists. Blacklist is checked
# first. Leave eiher unset to disable specific lists,
# leave both unset to allow any IDs.
# - FTL_CLIENT_CHANNELID_WHITELIST=
# - FTL_CLIENT_CHANNELID_BLACKLIST=
redis:
image: redis:alpine
restart: unless-stopped
networks:
- internal
networks:
internal: