1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:31 +02:00

add murmur-arm

This commit is contained in:
kev 2016-11-15 22:32:36 +08:00
parent a24782df8a
commit ec7876f9ed
3 changed files with 33 additions and 3 deletions

View File

@ -1,6 +1,9 @@
murmur murmur
====== ======
[Mumble][1] is an open source, low-latency, high quality voice chat software
primarily intended for use while gaming.
## docker-compose.yml ## docker-compose.yml
```yaml ```yaml
@ -24,6 +27,8 @@ $ docker-compose logs
## Client Setup ## Client Setup
- Android: <https://play.google.com/store/apps/details?id=com.morlunk.mumbleclient.free> - Android: <https://play.google.com/store/apps/details?id=com.morlunk.mumbleclient.free>
- IOS: - IOS: <http://itunes.apple.com/us/app/mumble/id443472808?ls=1&mt=8>
- Windows: - Windows: <https://github.com/mumble-voip/mumble/releases/download/1.2.17/mumble-1.2.17.msi>
- MacOSX: - MacOSX: <https://github.com/mumble-voip/mumble/releases/download/1.2.17/Mumble-1.2.17.dmg>
[1]: https://wiki.mumble.info/wiki/Main_Page

19
murmur/arm/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
#
# Dockerfile for murmur-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
WORKDIR /etc/murmur
RUN set -xe \
&& apk add --no-cache murmur \
&& mv /etc/murmur.ini .
VOLUME /etc/murmur
EXPOSE 64738/tcp \
64738/udp
CMD ["murmur", "-fg", "-ini", "/etc/murmur/murmur.ini"]

View File

@ -0,0 +1,6 @@
murmur:
image: easypi/murmur-arm
ports:
- "64738:64738/tcp"
- "64738:64738/udp"
restart: always