-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.yml
More file actions
32 lines (29 loc) · 818 Bytes
/
common.yml
File metadata and controls
32 lines (29 loc) · 818 Bytes
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
version: '3.8'
services:
# Base template for X11 display protocol
x11-base:
environment:
- DISPLAY=${DISPLAY}
- WINEDEBUG=-all
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
tty: true
# Base template for Wayland display protocol
wayland-base:
environment:
- DISPLAY=${DISPLAY} # XWayland fallback
- WAYLAND_DISPLAY=${WAYLAND_DISPLAY:-wayland-0}
- XDG_RUNTIME_DIR=/tmp/runtime-dir
- WINEDEBUG=-all
volumes:
- ${XDG_RUNTIME_DIR:-/run/user/1000}/wayland-0:/tmp/runtime-dir/wayland-0
- /tmp/.X11-unix:/tmp/.X11-unix
tty: true
# Base template for Headless operation using Xvfb
headless-base:
environment:
- DISPLAY=:99
- RESOLUTION=1280x1024x24
- START_VNC=${START_VNC:-false}
- WINEDEBUG=-all
tty: true