Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sentriz/compose-status
simple home server status page, compose and traefik aware
https://github.com/sentriz/compose-status
docker docker-compose homepage monitoring statuspage traefik
Last synced: 24 days ago
JSON representation
simple home server status page, compose and traefik aware
- Host: GitHub
- URL: https://github.com/sentriz/compose-status
- Owner: sentriz
- Created: 2019-07-22T14:02:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-09-26T21:27:05.000Z (about 2 years ago)
- Last Synced: 2024-10-04T17:53:16.577Z (about 1 month ago)
- Topics: docker, docker-compose, homepage, monitoring, statuspage, traefik
- Language: Go
- Homepage:
- Size: 266 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### compose status
- keep an eye on your compose projects
- list container status in a web interface
- groups containers based on compose projects
- groups compose projects on custom name
- add a `xyz.senan.compose-status.group` label to any container in a project
- traefik aware. can generate clickable links based on host labels### docker example
```yaml
services:
status:
image: sentriz/compose-status
environment:
# see the `-h` for all args. they translate to env
# variables with a `CS_` prefix
- CS_PAGE_TITLE=my.domain status
- CS_SCAN_INTERVAL=5
- CS_HIST_WINDOW=1800
expose:
- 80
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- /proc:/host_proc:ro
- ./data:/data
```### screenshot
![](https://i.imgur.com/RTd0MiI.png)