Update wiki to use docker container registry as the build is currently broken and appears to require multiple Heroku buildpacks

master
Richard Gibert 2020-05-04 22:29:36 -04:00
parent 2dc5df88bd
commit 8f015708da
1 changed files with 10 additions and 3 deletions

@ -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)