-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathexample - compose.yml
61 lines (55 loc) · 1.63 KB
/
example - 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
version: '3.8'
services:
mediamtx:
image: bluenviron/mediamtx:1.8.2
restart: always
volumes:
- ./mediamtx.yml:/mediamtx.yml
ports:
#RTSP
#- '8554:8554'
#WebRTC
- '8189:8189/tcp'
- '8189:8189/udp'
#- '8888:8888'
- '8889:8889'
bambuweb:
image: azul/zulu-openjdk:21-latest
restart: always
volumes:
- ./bambu-web-X.X.X-runner.jar:/bambu-web-runner.jar
- ./bambu-web-env.txt:/.env
ports:
- '8081:8080'
entrypoint: /usr/bin/java -Djdk.tls.useExtendedMasterSecret=false -jar bambu-web-runner.jar
nginx:
image: nginx:1.26-alpine
restart: always
volumes:
- ./reverse-proxy.conf:/etc/nginx/conf.d/default.conf
ports:
- '8080:80'
depends_on:
- mediamtx
- bambuweb
printer1:
extends:
file: common-liveview.yml
service: liveview
depends_on:
- mediamtx
environment:
PRINTER_HOST: FIXME_this_is_my_printer_ip_or_host
PRINTER_ID: FIXME_this_is_my_printer_id
PRINTER_ACCESS_CODE: FIXME_this_is_my_printer_access_code
# printer2:
# extends:
# file: common-liveview.yml
# service: liveview
# depends_on:
# - mediamtx
# environment:
# PRINTER_HOST: FIXME_this_is_my_printer_ip_or_host
# PRINTER_ID: FIXME_this_is_my_printer_id
# PRINTER_ACCESS_CODE: FIXME_this_is_my_printer_access_code
#