Skip to content

Commit

Permalink
DOCS(docker): Fix file and doc references
Browse files Browse the repository at this point in the history
PR mumble-voip#5838 commit 81bb8f7 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.
  • Loading branch information
Kissaki committed Apr 7, 2024
1 parent 2382408 commit c7eba90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/DockerCompose.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down

0 comments on commit c7eba90

Please sign in to comment.