11 Commits
main ... main

Author SHA1 Message Date
bd875e0801 more reliable healthcheck 2025-03-10 14:57:04 -04:00
d7921ca1b6 use statping health endpoint 2025-03-03 22:21:55 -05:00
2f5017e3ee update readme 2025-03-02 16:04:53 -05:00
c4cda0d1a7 remove accidental copy 2025-03-02 16:04:29 -05:00
d793b4d433 add proper healthcheck 2025-03-02 00:54:03 -05:00
0eacf26f3c update comment 2025-03-02 00:50:16 -05:00
2f1f0c0dd8 remove extra domains from env as it is not included in compose file 2025-03-02 00:41:57 -05:00
689de62d08 update readme links and include default admin info 2025-03-02 00:39:07 -05:00
d58b06299d add sample data env var and set to false 2025-03-02 00:37:14 -05:00
38d9dc3821 update variables 2025-03-02 00:34:53 -05:00
0352508575 bump container version, switch to github container repo 2025-03-02 00:33:57 -05:00
3 changed files with 18 additions and 11 deletions

View File

@ -2,10 +2,9 @@ TYPE=statping
DOMAIN=statping.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.statping.example.com`'
LETS_ENCRYPT_ENV=production
SITE_NAME="Statping"
SITE_DESCRIPTION="Status monitor"
SAMPLE_DATA="false" # Insert example services to display monitor functionality

View File

@ -5,9 +5,9 @@ Status Page for monitoring your websites and applications with beautiful graphs,
See [this wiki page](https://github.com/statping-ng/statping-ng/wiki/Docker/) for more technical Docker related documentation.
<!-- metadata -->
* **Category**: Apps
* **Status**: 1, alpha
* **Image**: [`adamboutcher/statping-ng`](https://hub.docker.com/r/adamboutcher/statping-ng/), 4, upstream
* **Healthcheck**: No
* **Status**: 2, alpha
* **Image**: [`statping-ng/statping-ng`](https://github.com/statping-ng/statping-ng/pkgs/container/statping-ng/), 4, upstream
* **Healthcheck**: Yes
* **Backups**: No
* **Email**: 1
* **Tests**: No
@ -23,7 +23,7 @@ See [this wiki page](https://github.com/statping-ng/statping-ng/wiki/Docker/) fo
4. `abra app config YOURAPPDOMAIN` - be sure to change `DOMAIN` to something that resolves to
your Docker swarm box
5. `abra app deploy YOURAPPDOMAIN`
6. Open the configured domain in your browser to finish set-up
6. Open the configured domain in a browser, the default login is `admin` and password `admin`, change this immediately
[`abra`]: https://git.autonomic.zone/autonomic-cooperative/abra
[`coop-cloud/traefik`]: https://git.autonomic.zone/coop-cloud/traefik

View File

@ -1,14 +1,14 @@
version: "3.8"
services:
app:
image: adamboutcher/statping-ng:v0.90.78
image: ghcr.io/statping-ng/statping-ng:0.92
networks:
- proxy
volumes:
- statping:/app
environment:
VIRTUAL_HOST: localhost
VIRTUAL_PORT: 8080
HOST: localhost
PORT: 8080
DB_CONN: sqlite
NAME: ${SITE_NAME}
DESCRIPTION: ${SITE_DESCRIPTION}
@ -22,9 +22,17 @@ services:
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=8080"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- coop-cloud.${STACK_NAME}.version=0.1.1+v0.90.78
- "coop-cloud.${STACK_NAME}.version=0.1.1+v0.90.78"
healthcheck:
test: ["CMD", "curl", "-s", "http://localhost:8080/health"]
interval: 30s
retries: 3
start_period: 10s
timeout: 10s
networks:
proxy:
external: true
volumes:
statping: