-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (41 loc) · 1.2 KB
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (41 loc) · 1.2 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
services:
classic:
image: ghcr.io/kernelkit/demo:latest
build:
context: ./classic
environment:
- DISPLAY=${DISPLAY}
- SDL_AUDIODRIVER=pulseaudio
- PULSE_SERVER=unix:${XDG_RUNTIME_DIR}/pulse/native
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
- ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native
network_mode: host
stdin_open: true
tty: true
breeze:
image: ghcr.io/kernelkit/breeze:latest
build:
context: ./breeze
environment:
- DISPLAY=${DISPLAY}
- DISPLAY_ROTATE=${DISPLAY_ROTATE:-}
- FULLSCREEN=${FULLSCREEN:-1}
- LATITUDE=${LATITUDE}
- LONGITUDE=${LONGITUDE}
- LOCATION=${LOCATION}
- WEB_URL=${WEB_URL}
- CAROUSEL_WEATHER=${CAROUSEL_WEATHER:-}
- CAROUSEL_FORECAST=${CAROUSEL_FORECAST:-}
- CAROUSEL_URL=${CAROUSEL_URL:-}
- DATE_FORMAT=${DATE_FORMAT:-}
- FORECAST=${FORECAST:-1}
- URL_SCRIPT=${URL_SCRIPT:-}
- ZOOM=${ZOOM:-}
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
# Without this the container runs in UTC and shows the wrong time
- /etc/localtime:/etc/localtime:ro
network_mode: host
stdin_open: true
tty: true