From c788160532db4de1b2c4372f1659722159626ddd Mon Sep 17 00:00:00 2001 From: Keshav Prateek Pandey Date: Sun, 24 Mar 2024 22:01:29 -0700 Subject: [PATCH] chore(docs): Update docker compose readme with wget download option (#8250) Add download option to wget --- docs/docs/install/docker-compose.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/install/docker-compose.mdx b/docs/docs/install/docker-compose.mdx index ca86c52d6a..3a270c21b3 100644 --- a/docs/docs/install/docker-compose.mdx +++ b/docs/docs/install/docker-compose.mdx @@ -21,7 +21,7 @@ cd ./immich-app Download [`docker-compose.yml`][compose-file] and [`example.env`][env-file], either by running the following commands: ```bash title="Get docker-compose.yml file" -wget https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml +wget -O docker-compose.yml https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml ``` ```bash title="Get .env file" @@ -29,11 +29,11 @@ wget -O .env https://github.com/immich-app/immich/releases/latest/download/examp ``` ```bash title="(Optional) Get hwaccel.transcoding.yml file" -wget https://github.com/immich-app/immich/releases/latest/download/hwaccel.transcoding.yml +wget -O hwaccel.transcoding.yml https://github.com/immich-app/immich/releases/latest/download/hwaccel.transcoding.yml ``` ```bash title="(Optional) Get hwaccel.ml.yml file" -wget https://github.com/immich-app/immich/releases/latest/download/hwaccel.ml.yml +wget -O hwaccel.ml.yml https://github.com/immich-app/immich/releases/latest/download/hwaccel.ml.yml ``` or by downloading from your browser and moving the files to the directory that you created.