docker-wahay/docker-compose.yml

21 lines
533 B
YAML
Raw Normal View History

version: "3"
2020-05-29 15:37:29 +00:00
services:
wahay:
build:
dockerfile: ./wahay/Dockerfile
context: .
args:
UID: ${UID:-1000}
GID: ${GID:-1000}
UNAME: ${UNAME:-mumble}
2020-05-29 15:37:29 +00:00
hostname: wahay
container_name: wahay
environment:
2020-05-29 17:11:38 +00:00
- DISPLAY=unix$DISPLAY
2020-05-30 18:46:42 +00:00
- PULSE_SERVER=unix:/run/user/${UID:-1000}/pulse/native
2020-05-29 15:37:29 +00:00
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix:ro
- /run/user/${UID:-1000}/pulse:/run/user/${UID:-1000}/pulse
2020-05-29 17:11:38 +00:00
- ./wahay/pulseaudio.client.conf:/etc/pulse/client.conf:ro