Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authordiftucs <95053553+diftucs@users.noreply.github.com>2021-12-25 05:35:07 +0300
committerdiftucs <95053553+diftucs@users.noreply.github.com>2021-12-28 16:14:39 +0300
commitabcb8634b777075521c27d9b6e2d24df318792c8 (patch)
treebde76759ba2b51537de925194ffdba0fc1939768 /docs
parent6e6d82cc940c1946d7f27509eb00253f4b74aec2 (diff)
DOCS(docker): Make styling consistent
Adds missing inline code tags
Diffstat (limited to 'docs')
-rw-r--r--docs/DockerCompose.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/DockerCompose.md b/docs/DockerCompose.md
index 6c7afb689..40d00a026 100644
--- a/docs/DockerCompose.md
+++ b/docs/DockerCompose.md
@@ -2,29 +2,29 @@
## How do I set up Mumble with Docker Compose?
-1. Make a new directory and create a new file inside called docker-compose.yml
+1. Make a new directory and create a new file inside called `docker-compose.yml`
2. Copy the information from https://github.com/mumble-voip/mumble/scripts/docker-compose.yml into the new file
3. Create the data folder and make 1000 its owner
-4. Create a new file called murmur.ini and copy the information from https://github.com/mumble-voip/mumble/blob/master/scripts/murmur.ini
+4. Create a new file called `murmur.ini` and copy the information from https://github.com/mumble-voip/mumble/blob/master/scripts/murmur.ini
Be sure to change `database=` to `database=/var/lib/murmur/murmur.sqlite` in this file to ensure that the database is created in the correct location. Edit the rest of the file to your liking
-5. Run docker-compose up -d to build and start the container
+5. Run `docker-compose up -d` to build and start the container
## How do I view the logs?
-Type `docker logs mumble-server` to view the logs. You can add -f to make it follow the log.
+Type `docker logs mumble-server` to view the logs. You can add `-f` to make it follow the log.
## How do I use the release build instead of master?
-To use stable version instead of the latest master change `#master` at the end of the build line in the docker compose to whichever branch you want to compile. For example, `build: github.com/mumble-voip/mumble#1.4.x` will build version 1.4.x instead of master.
+To use stable version instead of the latest master change `#master` at the end of the build line in the docker compose to whichever branch you want to compile. For example, `build: github.com/mumble-voip/mumble#1.4.x` will build version `1.4.x` instead of master.
## How do I add Let's Encrypt certificates with Docker Compose?
-To add Let's Encrypt certificates to the container you can move the certificates to a location user 1000 can read and add an extra volume to the Docker Compose file.
+To add Let's Encrypt certificates to the container you can move the certificates to a location user `1000` can read and add an extra volume to the Docker Compose file.
Alternatively, you can run the Docker container as root by following these steps: