forked from libretime/libretime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.override.yml
83 lines (73 loc) · 1.62 KB
/
docker-compose.override.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
71
72
73
74
75
76
77
78
79
80
81
82
83
#
# This file is used for development. It it not intended for production!
# See https://libretime.org/docs/developer-manual/development/environment/#docker-compose
#
version: "3.9"
services:
postgres:
ports:
- 5432:5432
rabbitmq:
image: rabbitmq:management-alpine
ports:
- 5672:5672
- 15672:15672
playout:
build:
context: .
target: libretime-playout
volumes:
- ./playout:/src
- ./dev/playout:/app
liquidsoap:
build:
context: .
target: libretime-playout
ports:
- 1234:1234
volumes:
- ./playout:/src
- ./dev/playout:/app
- ./dev/certs:/certs
## See https://libretime.org/docs/admin-manual/tutorials/setup-a-pulseaudio-output-inside-containers/
# - ./dev/pulse.socket:/tmp/pulse.socket
# - ./docker/pulse.client.conf:/etc/pulse/client.conf
analyzer:
build:
context: .
target: libretime-analyzer
volumes:
- ./analyzer:/src
worker:
build:
context: .
target: libretime-worker
volumes:
- ./worker:/src
api:
build:
context: .
target: libretime-api
volumes:
- ./api:/src
command: /usr/local/bin/libretime-api runserver 0.0.0.0:9001
environment:
LIBRETIME_DEBUG: "true"
legacy:
build:
context: .
target: libretime-legacy
volumes:
- ./legacy:/var/www/html
nginx:
volumes:
- ./legacy:/var/www/html
icecast:
ports:
- 8000:8000
- 8443:8443
environment:
ICECAST_MAX_SOURCES: 10
volumes:
- ./dev/certs:/certs
- ./dev/icecast.xml:/etc/icecast.xml