mirror of
https://bitbucket.org/shim_/mumble.git
synced 2019-09-08 21:58:51 +02:00
fix markdown
This commit is contained in:
12
README.md
12
README.md
@@ -1,15 +1,14 @@
|
||||
## How do I get set up? ##
|
||||
|
||||
###Most basic setup with SQLite###
|
||||
### Most basic setup with SQLite ###
|
||||
```
|
||||
#!bash
|
||||
|
||||
docker run -p 64738:64738 -p 64738:64738/udp shimun/mumble
|
||||
```
|
||||
|
||||
###Or more advanced with MySQL###
|
||||
```
|
||||
#!bash
|
||||
### 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
|
||||
|
||||
@@ -20,9 +19,8 @@ Optional variables to configure MySQL:
|
||||
|
||||
* **DB_PORT** defaults to *3306*: Port of your MySQL server, 3306 is the MySQL default
|
||||
|
||||
###Or more secure by using your own, trusted certificate###
|
||||
```
|
||||
#!bash
|
||||
### 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
|
||||
|
||||
|
Reference in New Issue
Block a user