From 7765fcbbed5c251c6c0768f06b4fbbcdfaf4996f Mon Sep 17 00:00:00 2001 From: massey-n <136398242+massey-n@users.noreply.github.com> Date: Thu, 6 Feb 2025 13:54:47 -0600 Subject: [PATCH] Fix filename typos in README.md The current name of the docker compose file is `docker-compose.yml`. The readme command examples indicated that the name was `docker compose.yml`. This commit updates all README cases of this error to reflect the actual name of the file, making the command functional again. --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 87899ed2..fa665271 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ You can use prebuilt images generated by our CI workflow by downloading the dock docker compose pull - docker compose -f docker compose.yml --compatibility up -d + docker compose -f docker-compose.yml --compatibility up -d ``` To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command. @@ -45,7 +45,7 @@ You can use prebuilt images generated by our CI workflow by downloading the dock For example to expose the system to all network interfaces. ``` - LISTEN_IP="0.0.0.0" docker compose -f docker compose.yml --compatibility up -d + LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d ``` - Windows Machine @@ -59,7 +59,7 @@ You can use prebuilt images generated by our CI workflow by downloading the dock docker compose pull - docker compose -f docker compose.yml --compatibility up -d + docker compose -f docker-compose.yml --compatibility up -d ``` To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command. @@ -67,7 +67,7 @@ You can use prebuilt images generated by our CI workflow by downloading the dock For example to expose the system to all network interfaces. ``` - LISTEN_IP="0.0.0.0" docker compose -f docker compose.yml --compatibility up -d + LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d ``` - To use the latest development version @@ -83,7 +83,7 @@ You can use prebuilt images generated by our CI workflow by downloading the dock docker compose pull - docker compose -f docker compose.yml --compatibility up -d + docker compose -f docker-compose.yml --compatibility up -d ``` To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command. @@ -91,7 +91,7 @@ You can use prebuilt images generated by our CI workflow by downloading the dock For example to expose the system to all network interfaces. ``` - LISTEN_IP="0.0.0.0" docker compose -f docker compose.yml --compatibility up -d + LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d ``` - Windows Machine @@ -105,7 +105,7 @@ You can use prebuilt images generated by our CI workflow by downloading the dock docker compose pull - docker compose -f docker compose.yml --compatibility up -d + docker compose -f docker-compose.yml --compatibility up -d ``` To override server configurations, change the values of the variables present in the **.env** file or add the respective variables to the start of the docker compose command. @@ -113,7 +113,7 @@ You can use prebuilt images generated by our CI workflow by downloading the dock For example to expose the system to all network interfaces. ``` - LISTEN_IP="0.0.0.0" docker compose -f docker compose.yml --compatibility up -d + LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d ```