-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
81 lines (81 loc) · 1.87 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
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
---
services:
mdp_debug:
tty: true
build: ./docker/mdp_debug
image: kaizernurik/mdp:debug
container_name: mdp_debug
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- SUBFOLDER=/ #optional
- NVIDIA_VISIBLE_DEVICES=all
volumes:
- ./:/app
ports:
- 3000:3000
- 3001:3001
runtime: "nvidia"
devices:
- /dev/dri:/dev/dri
# mdp_release:
# build: ./docker/mdp_release
# image: kaizernurik/mdp:release
# container_name: mdp_release
# tty: true
# security_opt:
# - seccomp:unconfined #optional
# environment:
# - PUID=1000
# - PGID=1000
# - TZ=Etc/UTC
# - SUBFOLDER=/ #optional
# - NVIDIA_VISIBLE_DEVICES=all
# - DISPLAY=:0
# volumes:
# - ./:/app
# - $HOME/.Xauthority:/root/.Xauthority:rw
# - /mnt/wslg :/mnt/wslg
# ports:
# - 3000:3000
# - 3001:3001
# - 6000:6000
# - 6001:6001
# runtime: "nvidia"
# network_mode: host
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: all
# capabilities: [gpu]
# blender:
# build: ./docker/blender
# image: qqwe
# container_name: blenasddeasdr
# security_opt:
# - seccomp:unconfined #optional
# environment:
# - PUID=1000
# - PGID=1000
# - TZ=Etc/UTC
# - SUBFOLDER=/ #optional
# - NVIDIA_VISIBLE_DEVICES=all
# volumes:
# - /path/to/blender/config:/config
# ports:
# - 3000:3000
# - 3001:3001
# restart: unless-stopped
# runtime: "nvidia"
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: all
# capabilities: [gpu]