Skip to content

Commit

Permalink
Fix docker-compose curl command examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Oct 27, 2024
1 parent 120d275 commit 8ef71aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/content/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/site/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ <h3>Docker</h3>

<pre>
# 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
Expand Down

0 comments on commit 8ef71aa

Please sign in to comment.