-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
68 lines (54 loc) · 1.43 KB
/
docker-compose.dev.yml
File metadata and controls
68 lines (54 loc) · 1.43 KB
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
version: '3'
# Microservices
services:
# NGINX-RTMP Server Configuration
nginx-server:
container_name: rtmp-hls-nginx-server
image: jeremyboetticherhark/rtmp-hls:latest
# build: '../nginx-server'
ports:
- "8080:8080"
- "1935:1935"
networks:
internal:
aliases:
- nginx-server
# Mount archives & API creds #
# - MODIFY THESE LOCATIONS - #
volumes:
- /srv/archives:/archives
- /srv/creds:/hark-nginx-server/creds
environment:
- FORCE_COLOR=1
- HARK_ENV=dev
- HARK_LOGLEVEL=4
- HARK_TIMEZONE=America/Los_Angeles
- HARK_SERVER=stream.hark.tv # MODIFY THIS
- HARK_CDN=cdn.stream.hark.tv # MODIFY THIS
#API Server Configuration
api-server:
container_name: hark-api-server
image: jeremyboetticherhark/hark-api-server:latest
# build: '../api-server'
ports:
- "3000:3000"
networks:
internal:
aliases:
- hark-api-server
- api-server
# Mount archives & API creds #
# - MODIFY THESE LOCATIONS - #
volumes:
- /srv/archives:/archives
- /srv/creds:/api-server/creds
environment:
- FORCE_COLOR=1
- HARK_ENV=dev
- HARK_LOGLEVEL=4
- HARK_TIMEZONE=America/Los_Angeles
- HARK_SERVER=stream.bitwave.tv # MODIFY THIS
- HARK_CDN=cdn.stream.bitwave.tv # MODIFY THIS
# Network Definitions
networks:
internal: