forked from MMTObservatory/pyINDI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
74 lines (60 loc) · 2.62 KB
/
docker-compose.yml
File metadata and controls
74 lines (60 loc) · 2.62 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
69
70
71
72
73
74
version: '3'
services:
webclient:
image: "srswinde/indi_webclient"
ports:
- "3000:3000"
environment:
- INDISERVER=localhost
command:
["/webclient/websocketd", "--address", "0.0.0.0", "--port", "3000", "--devconsole", "/webclient/webclient", "indiserver"]
nginx-server:
image: "nginx"
ports:
- "4001:80"
volumes:
- "./www:/usr/share/nginx/html"
indiserver:
# stable tag was a version with no error
# message if vatttel was not communicating
# We should move the vatttel_not_on
# to stable when we are sure the
# update fix doesn't cause any issues
# -Scott May 2019
# image: "srswinde/indihex:stable"
image: "srswinde/indiserver"
ports:
- "7624:7624"
command: "/usr/bin/indiserver -r 0 /src/main.py"
volumes:
- "//C/Users/srswi/git-clones/pyINDI/src:/src"
# indidriver:
# image: "srswinde/indidrivers"
# ports:
# - "7624:7624"
# network_mode: "host"
# command:
# /usr/bin/indiserver -vvv /driverbin/tcs-indi
# #/usr/bin/indiserver -vvv /driverbin/tcs-indi /driverbin/dome-indi /driverbin/focus-indi /driverbin/snooper
# browser:
# image: "srswinde/firefox"
# volumes:
# - "/tmp/.X11-unix:/tmp/.X11-unix"
# environment:
# - DISPLAY=unix$DISPLAY
# command:
# /usr/bin/chromium-browser /usr/bin/chromium-browser --no-sandbox --app=http://localhost/tcs.html
# network_mode: "host"
#
# xephem:
# image: "srswinde/xephem"
# volumes:
# - "${HOME}/.xephem:/home/developer/.xephem"
# - "/tmp/.X11-unix:/tmp/.X11-unix"
# environment:
# - DISPLAY=$DISPLAY
# - HOME=/home/developer
# network_mode: "host"
# # depends_on:
# # - browser
#