From c7eba90de6aff9322562ccc2d8e615246947fbff Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Sun, 7 Apr 2024 17:51:13 +0200 Subject: [PATCH] DOCS(docker): Fix file and doc references PR #5838 commit 81bb8f70 removed the `docker-compose.yml` file in this repository. It points to our mumble-docker repository for docker related things. In that repository, we do not currently have a default or example docker compose configuration file. The README in that repository does have a description for it, so we link to that now. Update the relative file path reference `murmur.ini` -> `mumble-server-ini`. Update `database` path 'murmur' -> 'mumble-server'. I did not test or verify this change. Even if it is incorrect or does not work, I assume it to be *more correct*. Even if nobody chooses to test or verify it in this doc-update-changeset, I think that's preferable. --- docs/DockerCompose.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/DockerCompose.md b/docs/DockerCompose.md index e4ea64a5a67..26f5b577abf 100644 --- a/docs/DockerCompose.md +++ b/docs/DockerCompose.md @@ -4,13 +4,13 @@ 1. Create a new directory and switch to it. -2. Create the file `docker-compose.yml` and copy the [default docker-compose.yml](../scripts/docker-compose.yml) into it. +2. Create the file `docker-compose.yml` and fill it according to the [docker-compose section in mumble-docker/README.md](https://github.com/mumble-voip/mumble-docker/blob/master/README.md#running-the-container-1). 3. Create the directory `data` and make `1000` its owner. -4. Create the file `murmur.ini` and copy the [default murmur.ini](../scripts/murmur.ini) into it. +4. Create the file `mumble-server.ini` and copy the [default mumble-server.ini](../auxiliary_files/mumble-server.ini) into it. -5. Change `database` in `murmur.ini` to `/var/lib/murmur/murmur.sqlite`. +5. Change `database` in `mumble-server.ini` to `/var/lib/mumble-server/mumble-server.sqlite`. 6. Run `docker-compose up -d`. Append the `--build` switch to force rebuilding, if needed (e.g. new commits since last build).