diff --git a/.dockerignore b/.dockerignore index 2a78cb35..535ad661 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,2 +1,2 @@ -examples +example .github \ No newline at end of file diff --git a/README.md b/README.md index e635e809..56dce33b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -# gatus (in progress) +# gatus + +[![Docker pulls](https://img.shields.io/docker/pulls/twinproduction/gatus.svg)](https://cloud.docker.com/repository/docker/twinproduction/gatus) A service health dashboard in Go that is meant to be used as a docker image with a custom configuration file. diff --git a/example/Dockerfile b/example/Dockerfile new file mode 100644 index 00000000..dd20295a --- /dev/null +++ b/example/Dockerfile @@ -0,0 +1,2 @@ +FROM twinproduction/gatus +ADD config.yaml ./ \ No newline at end of file diff --git a/example/config.yaml b/example/config.yaml new file mode 100644 index 00000000..d0c1470f --- /dev/null +++ b/example/config.yaml @@ -0,0 +1,7 @@ +services: + - name: example + url: http://example.org + interval: 30s + failure-threshold: 3 + conditions: + - "$STATUS == 200"