-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
44 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
40
41
42
43
44
version: '3.8'
services:
eqalert:
build:
context: .
dockerfile: Dockerfile
command:
- eqalert
devices:
- "/dev/snd:/dev/snd"
environment:
- PULSE_SERVER=unix:${XDG_RUNTIME_DIR}/pulse/native
- MPLCONFIGDIR=/tmp
volumes:
- type: bind
source: "${HOME}/.wine/drive_c/Program Files/Sony/EverQuest"
target: "/home/eqalert/.wine/drive_c/Program Files/Sony/EverQuest"
bind:
create_host_path: false
- type: bind
source: ${HOME}/.eqa
target: /home/eqalert/.eqa
bind:
create_host_path: false
- type: bind
source: ${XDG_RUNTIME_DIR}/pulse/native
target: ${XDG_RUNTIME_DIR}/pulse/native
bind:
create_host_path: false
- type: bind
source: ${HOME}/.config/pulse/cookie
target: /home/eqalert/.config/pulse/cookie
bind:
create_host_path: false
- type: bind
source: ${HOME}/.local/share/tts
target: /home/eqalert/.local/share/tts
bind:
create_host_path: false