From 8ef71aa7a4d85f801a7ae5d592bf3de3888eaff9 Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Mon, 28 Oct 2024 00:16:26 +0530 Subject: [PATCH] Fix docker-compose curl command examples. --- README.md | 2 +- docs/docs/content/installation.md | 2 +- docs/site/layouts/index.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d5ae8f26f..1aaa5b498 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Download and use the sample [docker-compose.yml](https://github.com/knadh/listmo ```shell # Download the compose file to the current directory. -curl -O https://github.com/knadh/listmonk/blob/master/docker-compose.yml +curl -LO https://github.com/knadh/listmonk/raw/master/docker-compose.yml # Run the services in the background. docker compose up -d diff --git a/docs/docs/content/installation.md b/docs/docs/content/installation.md index 8032de590..1cdd21c99 100644 --- a/docs/docs/content/installation.md +++ b/docs/docs/content/installation.md @@ -21,7 +21,7 @@ The recommended method is to download the [docker-compose.yml](https://github.co ```shell # Download the compose file to the current directory. -curl -O https://github.com/knadh/listmonk/blob/master/docker-compose.yml +curl -LO https://github.com/knadh/listmonk/raw/master/docker-compose.yml # Run the services in the background. docker compose up -d diff --git a/docs/site/layouts/index.html b/docs/site/layouts/index.html index bdae7e924..66e81ffb8 100644 --- a/docs/site/layouts/index.html +++ b/docs/site/layouts/index.html @@ -70,7 +70,7 @@

Docker

 # Download the compose file to the current directory.
-curl -O https://github.com/knadh/listmonk/blob/master/docker-compose.yml
+curl -LO https://github.com/knadh/listmonk/raw/master/docker-compose.yml
 
 # Run the services in the background.
 docker compose up -d