From 0ebf4949de15ebf980eb0847e2d5d009864a9114 Mon Sep 17 00:00:00 2001 From: aiac Date: Tue, 21 Sep 2021 20:33:37 +0200 Subject: [PATCH] CD to directory before install script Change directory to newly created before running install script --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dc0dafec..de607e3a 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The latest image is available on DockerHub at `listmonk/listmonk:latest`. Use th #### Demo ```bash -mkdir listmonk-demo +mkdir listmonk-demo && cd listmonk-demo sh -c "$(curl -fsSL https://raw.githubusercontent.com/knadh/listmonk/master/install-demo.sh)" ``` @@ -29,7 +29,7 @@ The demo does not persist Postgres after the containers are removed. DO NOT use This setup is recommended if you want to _quickly_ setup `listmonk` in production. ```bash -mkdir listmonk +mkdir listmonk && cd listmonk sh -c "$(curl -fsSL https://raw.githubusercontent.com/knadh/listmonk/master/install-prod.sh)" ```