-
Notifications
You must be signed in to change notification settings - Fork 18
/
docker-compose.yml
70 lines (56 loc) · 1.49 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
70
version: '3'
# Microservices
services:
# NGINX-RTMP Server Configuration
nginx-server:
container_name: bms-nginx-server
image: bitwavetv/bms-nginx-server:latest
# build: '../nginx-server'
ports:
- "8080:8080"
- "1935:1935"
networks:
internal:
aliases:
- bms-nginx-server
- nginx-server
# Mount archives & API creds #
# - MODIFY THESE LOCATIONS - #
volumes:
- /srv/archives:/archives
- /srv/creds:/bms-nginx-server/creds
environment:
- FORCE_COLOR=1
- BMS_ENV=dev
- BMS_LOGLEVEL=4
- BMS_TIMEZONE=America/Los_Angeles
- BMS_SERVER=stream.bitwave.tv # MODIFY THIS
- BMS_CDN=cdn.stream.bitwave.tv # MODIFY THIS
# API Server Configuration
api-server:
container_name: bms-api-server
image: bitwavetv/bms-api-server:latest
# build: '../api-server'
ports:
- "3000:3000"
networks:
internal:
aliases:
- bms-api-server
- api-server
# Mount archives & API creds #
# - MODIFY THESE LOCATIONS - #
volumes:
- /srv/archives:/archives
- /srv/creds:/api-server/creds
environment:
- FORCE_COLOR=1
- BMS_ENV=dev
- BMS_LOGLEVEL=4
- BMS_TIMEZONE=America/Los_Angeles
- BMS_SERVER=stream.bitwave.tv # MODIFY THIS
- BMS_CDN=cdn.stream.bitwave.tv # MODIFY THIS
- SEVER_SECRET=SECRET # MODIFY THIS
# Network Definitions
networks:
internal: