CD to directory before install script
Change directory to newly created before running install script
This commit is contained in:
parent
13f16486fb
commit
0ebf4949de
1 changed files with 2 additions and 2 deletions
|
@ -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)"
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue