From 8f015708da225d9280a25ccf597a1294000b10ac Mon Sep 17 00:00:00 2001 From: Richard Gibert Date: Mon, 4 May 2020 22:29:36 -0400 Subject: [PATCH] Update wiki to use docker container registry as the build is currently broken and appears to require multiple Heroku buildpacks --- Heroku.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Heroku.md b/Heroku.md index cc9bc45..6bbe0bc 100644 --- a/Heroku.md +++ b/Heroku.md @@ -1,10 +1,17 @@ -You can now instantly deploy your Statping instance on a free Heroku container. Simply click the deploy button below and get up in running within seconds. This Heroku deployment is based on the Statping Docker image so you will have all the great features including SASS and all the notifiers without any setup. +You can now deploy your Statping instance on a free Heroku container. Follow the steps below to deploy the Statping Docker image so you will have all the great features including SASS and all the notifiers without any setup. -[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/statping/statping/tree/master) +```bash +git clone https://github.com/statping/statping.git +cd statping +heroku login +heroku create APP_NAME +heroku container:push -a APP_NAME web +heroku container:release -a APP_NAME web +``` View the live Heroku Statping instance at: [https://statping.herokuapp.com](https://statping.herokuapp.com) # Database Configuration -You will need to deploy a Postgres database to your instance and insert some configuration variables. View the image below to see what environment variable you need to configure. If you insert `DB_CONN`, Statping will attempt to automatically connect to the database without the need for the `config.yml` file. +You will need to deploy a PostgreSQL database to your instance and insert some configuration variables. View the image below to see what environment variable you need to configure. If you insert `DB_CONN`, Statping will attempt to automatically connect to the database without the need for the `config.yml` file. ![](https://img.cjx.io/herokustatping.png)