diff --git a/README.md b/README.md index d1d20a4..de9f442 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,7 @@ other services. ```sh wget -O docker-compose.yaml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/docker-compose.yaml -wget -O config.toml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/config.toml -# you probably need to edit the config.toml file, for more help see the documentation +# you probably need to edit the config.toml file in the ./config directory, for more help see the documentation docker compose up -d ``` diff --git a/Writerside/topics/Configuration.md b/Writerside/topics/Configuration.md index d06fa0d..0f77746 100644 --- a/Writerside/topics/Configuration.md +++ b/Writerside/topics/Configuration.md @@ -7,15 +7,15 @@ Frontend settings are configured through environment variables in your `docker-c ## Configuration File Location -Your `config.toml` file should be mounted to `/app/config.toml` inside the container: +Your `config.toml` file should be in the directory that's mounted to `/app/config/config.toml` inside the container: ```yaml volumes: - - ./config.toml:/app/config.toml + - ./config:/app/config ``` -Though you can change the location of the configuration file by setting the `CONFIG_FILE` env variable to another path, -e.g. `/etc/mm/config.toml`. +Though you can change the location of the configuration file's directory by setting the `CONFIG_DIR` env variable to another path, +e.g. `/etc/mediamanager/`. ## Configuration Sections diff --git a/Writerside/topics/configuration-overview.md b/Writerside/topics/configuration-overview.md index 0f9b686..e999fa1 100644 --- a/Writerside/topics/configuration-overview.md +++ b/Writerside/topics/configuration-overview.md @@ -10,11 +10,10 @@ The recommended way to install and run Media Manager is using Docker and Docker ## Setup -* Download the `docker-compose.yaml` and `config.toml` from the MediaManager repo with the following command: +* Download the `docker-compose.yaml` from the MediaManager repo with the following command: ```sh - wget -O docker-compose.yaml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/docker-compose.yaml - wget -O config.toml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/config.toml - # you probably need to edit the config.toml file, for more help see the documentation + wget -O docker-compose.yaml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/docker-compose.yaml + # you probably need to edit the config.toml file in the ./config directory, for more help see the documentation docker compose up -d ```