-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
189 lines (177 loc) · 4.34 KB
/
docker-compose.yaml
File metadata and controls
189 lines (177 loc) · 4.34 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
## Common Templates
x-klipper-svc: &klipper-svc
image: mkuf/klipper:nightly
container_name: klipper
restart: unless-stopped
logging:
driver: none
depends_on:
init:
condition: service_completed_successfully
command:
- "-I"
- "run/klipper.tty"
- "-a"
- "run/klipper.sock"
- "cfg/printer.cfg"
- "-l"
- "log/klippy.log"
## Service Definitions
services:
## Klippy Services
##
klipper:
<<: *klipper-svc
volumes:
- ./config:/opt/cfg
- run:/opt/run
- gcode:/opt/gcode
- log:/opt/log
profiles:
- fluidd
- mainsail
- klipperscreen
klipper-priv:
<<: *klipper-svc
privileged: true
volumes:
- /dev:/dev
- ./config:/opt/cfg
- run:/opt/run
- gcode:/opt/gcode
- log:/opt/log
profiles:
- octoprint
## WebApi
##
moonraker:
image: mkuf/moonraker:nightly
container_name: moonraker
restart: unless-stopped
pid: host
logging:
driver: none
command:
- "-c"
- "cfg/moonraker.cfg"
- "-l"
- "log/moonraker.log"
depends_on:
init:
condition: service_completed_successfully
klipper:
condition: service_started
volumes:
- /dev/null:/opt/klipper/config/null
- /dev/null:/opt/klipper/docs/null
- /run/dbus:/run/dbus
- /run/systemd:/run/systemd
- run:/opt/run
- gcode:/opt/gcode
- log:/opt/log
- moonraker-db:/opt/db
- ./config:/opt/cfg
profiles:
- fluidd
- mainsail
- klipperscreen
labels:
- "traefik.enable=true"
- "traefik.http.services.moonraker.loadbalancer.server.port=7125"
- "traefik.http.routers.moonraker.rule=PathPrefix(`/websocket`,`/printer`,`/api`,`/access`,`/machine`,`/server`)"
- "traefik.http.routers.moonraker.entrypoints=web"
## Frontends
##
octoprint:
image: octoprint/octoprint:minimal
container_name: octoprint
restart: unless-stopped
depends_on:
klipper-priv:
condition: service_started
privileged: true
volumes:
- /dev:/dev
- run:/opt/run
- octoprint:/octoprint
- ./config/octoprint.yaml:/octoprint/octoprint/config.yaml
profiles:
- octoprint
labels:
- "traefik.enable=true"
- "traefik.http.services.octoprint.loadbalancer.server.port=5000"
- "traefik.http.routers.octoprint.rule=PathPrefix(`/`)"
- "traefik.http.routers.octoprint.entrypoints=web"
fluidd:
image: cadriel/fluidd:latest
container_name: fluidd
restart: unless-stopped
profiles:
- fluidd
labels:
- "traefik.enable=true"
- "traefik.http.services.fluidd.loadbalancer.server.port=80"
- "traefik.http.routers.fluidd.rule=PathPrefix(`/`)"
- "traefik.http.routers.fluidd.entrypoints=web"
mainsail:
image: mkuf/mainsail:nightly
container_name: mainsail
restart: unless-stopped
profiles:
- mainsail
labels:
- "traefik.enable=true"
- "traefik.http.services.mainsail.loadbalancer.server.port=80"
- "traefik.http.routers.mainsail.rule=PathPrefix(`/`)"
- "traefik.http.routers.mainsail.entrypoints=web"
klipperscreen:
image: mkuf/klipperscreen:nightly
container_name: klipperscreen
restart: unless-stopped
network_mode: host
profiles:
- klipperscreen
command:
- "-c"
- "cfg/klipperscreen.conf"
volumes:
- /etc/localtime:/etc/localtime:ro
- /tmp/.X11-unix:/tmp/.X11-unix
- ./config:/opt/cfg
## Accompanying Services/Infra
##
## Config dir needs to be writable by uid/gid 1000
## This container sets the right permissions and exits
init:
image: busybox:latest
container_name: init
command: chown -R 1000:1000 /prind/config
volumes:
- .:/prind
## Loadbalancer/Proxy
traefik:
image: "traefik:v2.5"
container_name: "traefik"
hostname: "traefik"
command:
- "--accesslog"
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--entrypoints.web.address=:80"
ports:
- "80:80"
restart: unless-stopped
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
volumes:
run:
driver_opts:
type: tmpfs
device: tmpfs
gcode:
octoprint:
moonraker-db:
log:
driver_opts:
type: tmpfs
device: tmpfs