Skip to content

Commit

Permalink
feat: Add shell script for demo setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-karan committed Jan 21, 2021
1 parent dae47fb commit 869a55c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ Visit [listmonk.app](https://listmonk.app)
The latest image is available on DockerHub at `listmonk/listmonk:latest`. Use the sample [docker-compose.yml](https://github.com/knadh/listmonk/blob/master/docker-compose.yml) to run listmonk and Postgres DB with docker-compose as follows:

#### Demo
`docker-compose up -d demo-db demo-app`

```bash
mkdir listmonk-demo
sh -c "$(curl -sSL https://raw.githubusercontent.com/knadh/listmonk/master/install-demo.sh)"
```

The demo does not persist Postgres after the containers are removed. DO NOT use this demo setup in production.

Expand Down
40 changes: 40 additions & 0 deletions install-demo.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#!/bin/sh

set -e

# Listmonk demo setup using `docker-compose`.
#
# See https://listmonk.app/docs/installation/ for detailed installation steps.
#


check_dependency() {
if ! command -v curl > /dev/null; then
echo "curl is not installed."
exit 1
fi

if ! command -v docker > /dev/null; then
echo "docker is not installed."
exit 1
fi

if ! command -v docker-compose > /dev/null; then
echo "docker-compose is not installed."
exit 1
fi
}

setup_containers() {
curl -o docker-compose.yml https://raw.githubusercontent.com/knadh/listmonk/master/docker-compose.yml
docker-compose up -d demo-db demo-app
}

show_output(){
echo -e "\nListmonk is now up and running. Visit http://localhost:9000 in your browser.\n"
}


check_dependency
setup_containers
show_output

0 comments on commit 869a55c

Please sign in to comment.