This commit is contained in:
commit
60f6618b05
13
.drone.yml
Normal file
13
.drone.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
kind: pipeline
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: docker
|
||||
image: plugins/docker
|
||||
settings:
|
||||
registry: r.sbruder.de
|
||||
username:
|
||||
from_secret: docker_username
|
||||
password:
|
||||
from_secret: docker_password
|
||||
repo: r.sbruder.de/murmur
|
7
Dockerfile
Normal file
7
Dockerfile
Normal file
|
@ -0,0 +1,7 @@
|
|||
FROM alpine
|
||||
|
||||
RUN apk add --no-cache murmur
|
||||
|
||||
COPY murmur.ini /etc/
|
||||
|
||||
ENTRYPOINT ["murmurd", "-ini", "/etc/murmur.ini", "-fg"]
|
22
murmur.ini
Normal file
22
murmur.ini
Normal file
|
@ -0,0 +1,22 @@
|
|||
database=/var/lib/murmur/murmur.sqlite
|
||||
icesecretwrite=
|
||||
welcometext=
|
||||
port=64738
|
||||
serverpassword=
|
||||
bandwidth=1000000
|
||||
users=100
|
||||
opusthreshold=0
|
||||
logdays=-1
|
||||
uname=murmur
|
||||
|
||||
# escape backslashes (\\)
|
||||
#channelname=[ \\-=\\w\\#\\[\\]\\{\\}\\(\\)\\@\\|]+
|
||||
#username=[-=\\w\\[\\]\\{\\}\\(\\)\\@\\|\\.]+
|
||||
|
||||
sslCert=/etc/ssl/fullchain
|
||||
sslKey=/etc/ssl/privkey
|
||||
|
||||
# has to be last section
|
||||
[Ice]
|
||||
Ice.Warn.UnknownProperties=1
|
||||
Ice.MessageSizeMax=65536
|
Reference in a new issue