-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (47 loc) · 1007 Bytes
/
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
version: "3.9"
services:
base:
image: marcpartensky/arch
build:
context: base
ports:
- "10022:22"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
xorg:
image: marcpartensky/arch:xorg
build:
context: xorg
environment:
DISPLAY: :1
# ipc: host
# privileged: true
user: $USER
# pid: host
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
- /tmp/.X1-lock:/tmp/.X1-lock
# - /tmp:/tmp
# devices:
# - /dev/dri
- arch_pacman:/var/cache/pacman/pkg
- /srv/arch/home/marc:/home/marc
vnc:
image: marcpartensky/arch:vnc
build:
context: vnc
# user: $USER
ports:
- "18080:8080"
- "15900:5900"
volumes:
# - /var/run/docker.sock:/var/run/docker.sock
- arch_pacman:/var/cache/pacman/pkg
- arch_home:/home/marc
parabola:
image: marcpartensky/arch:parabola
build:
context: parabola
volumes:
arch_pacman:
arch_home: