1
0
mirror of https://bitbucket.org/shim_/mumble.git synced 2019-09-08 21:58:51 +02:00

fix markdown again :(

This commit is contained in:
shim_
2016-05-28 21:40:40 +02:00
parent 0c65c8f8de
commit 8eb3d218c1

View File

@@ -1,17 +1,13 @@
## How do I get set up? ##
### Most basic setup with SQLite ###
```
#!bash
```bash
docker run -p 64738:64738 -p 64738:64738/udp shimun/mumble
```
### Or more advanced with MySQL ###
```bash
docker run -p 64738:64738 -p 64738:64738/udp -e DATABASE=MYSQL -e DB_HOST=127.0.0.1 -e DB_NAME=murmur -e DB_USER=<username> -e DB_PASS=<password> shimun/mumble
```
Optional variables to configure MySQL:
@@ -21,9 +17,7 @@ Optional variables to configure MySQL:
### Or more secure by using your own, trusted certificate ###
```bash
docker run -p 64738:64738 -p 64738:64738/udp -v ./data/:/data -e SSL=true shimun/mumble
```
This requires that you placed your certificate in *./data/ssl/murmur.pem* and your key in the same directory named as *murmur.key*