{"id":19435624,"url":"https://github.com/cssnr/docker-statuspage","last_synced_at":"2025-07-24T14:34:22.438Z","repository":{"id":177071280,"uuid":"444325365","full_name":"cssnr/docker-statuspage","owner":"cssnr","description":null,"archived":false,"fork":false,"pushed_at":"2022-01-04T07:28:00.000Z","size":150,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-25T06:44:49.898Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cssnr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-04T07:27:51.000Z","updated_at":"2022-01-04T09:43:26.000Z","dependencies_parsed_at":"2023-07-10T06:00:28.386Z","dependency_job_id":null,"html_url":"https://github.com/cssnr/docker-statuspage","commit_stats":null,"previous_names":["cssnr/docker-statuspage"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cssnr/docker-statuspage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cssnr%2Fdocker-statuspage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cssnr%2Fdocker-statuspage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cssnr%2Fdocker-statuspage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cssnr%2Fdocker-statuspage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cssnr","download_url":"https://codeload.github.com/cssnr/docker-statuspage/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cssnr%2Fdocker-statuspage/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266856200,"owners_count":23995650,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-10T15:07:20.363Z","updated_at":"2025-07-24T14:34:22.408Z","avatar_url":"https://github.com/cssnr.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Status Page\n**registry.hosted-domains.com/public/status-page**\n\nSingle page Status Page updated every X seconds to display the status of your services.\n\nWorking example located here: [https://status.smwc.world/](https://status.smwc.world/)\n\n## Quick Start\nYou can start an example by updating the [settings.env](settings.env) and using the sample [docker-compose.yml](docker-compose.yml) file.\n```\ngit clone https://git.cssnr.com/shane/status-page.git\ncd status-page\nvim settings.env\ndocker-compose up -d\n```\nThen visit [https://localhost/](https://localhost/) to see the results.\n\n# Configuration\nConfiguration is defined using environment variables. An example configuration is provided in the [settings.env](settings.env) file.\n\n## General\nThe general settings are pretty straight forward:\n```\nSITE_TITLE=SMWC.world Status\nSITE_DESCRIPTION=SMWC ROM Archive Website Status.\nSITE_AUTHOR=Shane\nSITE_HOME_URL=https://smwc.world/\nSITE_FAVICON=https://smwc.world/static/images/favicon.ico\nSITE_LOGO=https://smwc.world/static/images/logo.png\n```\n\n## Settings\nA few optional configuration settings exist.\n- `TZ`  \nUsed to display time in a specific time zone. Default will be UTC.\n- `SETTING_SLEEP`  \nHow long the application sleeps in seconds before rechecking status. Default is 60.\n- `SETTING_THEME`  \nName of a bootswatch theme to use. More information here: [https://bootswatch.com/](https://bootswatch.com/)\n\n## Service Checks\nCurrently, only site checks exist.\n\n### Site Checks\n- They must start with `SITE_`.\n- They are sourced in alphabetical order.\n- There are 3 segments separated with a `|`.\n  1. Display Name.\n  2. Description Text.\n  3. URL to check for status (not shown).\n\nExample:\n```\nSTATUS_A=SMWC.world Website|smwc.world|https://smwc.world/\nSTATUS_B=SMW Central Website|smwcentral.net|https://www.smwcentral.net/\n```\n\n# Additional Configuration\nA few additional things you may want to do, but are not required.\n### Data Volume\nThe html data is copied by default to `/data`. You can mount a voume to this location if desired as well as change it using the `DATA_DIR` environment varaible.\n### SSL\nSSL certificates are generated every container start. You can mount your own certificates through either a volume or docker secrets to the following locations:\n- /ssl/ssl.crt\n- /ssl/ssl.key\n\n\nA docker-compose.yml file for production might look more like this:\n```\nversion: '3.8'\n\nservices:\n  app:\n    image: registry.hosted-domains.com/public/status-page:latest\n    env_file: settings.env\n    deploy:\n      replicas: 1\n    volumes:\n      - data_dir:/data\n    secrets:\n      - source: cssnr.com.crt\n        target: /etc/ssl/cssnr.com.crt\n      - source: cssnr.com.key\n        target: /etc/ssl/cssnr.com.key\n    ports:\n      - \"443:443\"\n\nsecrets:\n  cssnr.com.crt:\n    file: /etc/ssl/cssnr.com.crt\n  cssnr.com.key:\n    file: /etc/ssl/cssnr.com.key\n\nvolumes:\n  data_dir:\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcssnr%2Fdocker-statuspage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcssnr%2Fdocker-statuspage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcssnr%2Fdocker-statuspage/lists"}