mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-01 03:20:29 +00:00
17 lines
323 B
YAML
17 lines
323 B
YAML
version: '3'
|
|
|
|
services:
|
|
mumble:
|
|
container_name: mumble
|
|
image: phlak/mumble
|
|
user: '${UID}:${GID}'
|
|
environment:
|
|
- TZ=Europe/Helsinki
|
|
ports:
|
|
- '64748:64738'
|
|
- '64748:64738/udp'
|
|
volumes:
|
|
- /docker/mumble:/etc/mumble
|
|
- /etc/localtime:/etc/localtime:ro
|
|
restart: always
|