-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
40 lines (39 loc) · 1.02 KB
/
docker-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
version: '3.4'
services:
nexus:
image: nginx:1.17.8
ports:
- 80:80
volumes:
- ./nexus/build:/usr/share/nginx/html:ro
- ./nginx/conf.d:/etc/nginx/conf.d:ro
- ./nginx/proxy_params:/etc/nginx/proxy_params:ro
- ./nginx/.htpasswd:/etc/nginx/.htpasswd
node:
image: node:13
user: '1000'
working_dir: /app
volumes:
- ./nexus:/app
octoprint_dagoma1:
image: nunofgs/octoprint:1.3.10
privileged: true
environment:
CAMERA_DEV: /dev/cam1
volumes:
- ./dagoma1:/data
- /dev:/dev
octoprint_dagoma2:
image: nunofgs/octoprint:1.3.10
privileged: true
volumes:
- ./dagoma2:/data
- /dev:/dev
octoprint_alfawise:
image: nunofgs/octoprint:1.3.10
environment:
CAMERA_DEV: /dev/cam2
privileged: true
volumes:
- ./alfawise:/data
- /dev:/dev