make installation guides always link to files of latest release (#359)

make installation guides always link to files of latest release
This commit is contained in:
Maximilian Dorninger
2026-01-06 11:49:36 +01:00
committed by GitHub
parent 57028991df
commit 732b9c0970
2 changed files with 4 additions and 4 deletions

View File

@@ -28,9 +28,9 @@ Key features:
## Quick Start
```sh
wget -O docker-compose.yaml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/docker-compose.yaml
wget -O docker-compose.yaml https://github.com/maxdorninger/MediaManager/releases/latest/download/docker-compose.yaml
mkdir config
wget -O ./config/config.toml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/config.example.toml
wget -O ./config/config.toml https://github.com/maxdorninger/MediaManager/releases/latest/download/config.example.toml
# you probably need to edit the config.toml file in the ./config directory, for more help see the documentation
docker compose up -d
```

View File

@@ -18,7 +18,7 @@ Follow these steps to get MediaManager running with Docker Compose:
Download the `docker-compose.yaml` from the MediaManager repo:
```bash
wget -O docker-compose.yaml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/docker-compose.yaml
wget -O docker-compose.yaml https://github.com/maxdorninger/MediaManager/releases/latest/download/docker-compose.yaml
```
{% endstep %}
@@ -29,7 +29,7 @@ Create a config directory and download the example configuration:
```bash
mkdir config
wget -O ./config/config.toml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/config.example.toml
wget -O ./config/config.toml https://github.com/maxdorninger/MediaManager/releases/latest/download/config.example.toml
```
{% endstep %}