All Projects → CachetHQ → Docker

CachetHQ / Docker

Licence: bsd-3-clause
A Dockerized version of Cachet.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Docker

Cstate
🔥 Open source static (serverless) status page. Uses hyperfast Go & Hugo, minimal HTML/CSS/JS, customizable, outstanding browser support (IE8+), preloaded CMS, read-only API, badges & more.
Stars: ✭ 1,186 (+272.96%)
Mutual labels:  status, statuspage
Static status
🚦Bash script to generate a static status page.
Stars: ✭ 286 (-10.06%)
Mutual labels:  status, statuspage
upptime
⬆️ Free uptime monitor and status page powered by GitHub
Stars: ✭ 12,995 (+3986.48%)
Mutual labels:  status, statuspage
Vigil
🚦 Microservices Status Page. Monitors a distributed infrastructure and sends alerts (Slack, SMS, etc.).
Stars: ✭ 804 (+152.83%)
Mutual labels:  status, statuspage
Statuspage
A simple self-hosted status page site with an API written in Django under the BSD license
Stars: ✭ 92 (-71.07%)
Mutual labels:  status, statuspage
statuscheck
Tool to check PAAS/SAAS status pages (API+CLI)
Stars: ✭ 33 (-89.62%)
Mutual labels:  status, statuspage
gatus
⛑ Automated service health dashboard
Stars: ✭ 3,018 (+849.06%)
Mutual labels:  status, statuspage
Docker Mtgo
Docker image with ready-to-play MTGO (Magic Online) for Linux and macOS
Stars: ✭ 275 (-13.52%)
Mutual labels:  docker-image
Docker Sshd
Minimal Alpine Linux Docker image with sshd exposed and rsync installed
Stars: ✭ 291 (-8.49%)
Mutual labels:  docker-image
Multi Git Status
Show uncommitted, untracked and unpushed changes for multiple Git repos
Stars: ✭ 273 (-14.15%)
Mutual labels:  status
Dockercheatsheet
🐋 Docker Cheat Sheet 🐋
Stars: ✭ 3,301 (+938.05%)
Mutual labels:  docker-image
Docker
⛴ Docker image of Nextcloud
Stars: ✭ 3,560 (+1019.5%)
Mutual labels:  docker-image
Docker Oracle Xe
Docker build for Oracle Database Express Edition (XE)
Stars: ✭ 266 (-16.35%)
Mutual labels:  docker-image
Sitebroker
A cross-platform python based utility for information gathering and penetration testing automation!
Stars: ✭ 281 (-11.64%)
Mutual labels:  docker-image
Cli
✨ A powerful CLI for the Create Go App project. Create a new production-ready project with backend, frontend and deploy automation by running one CLI command!
Stars: ✭ 292 (-8.18%)
Mutual labels:  docker-image
Lstags
Explore Docker registries and manipulate Docker images!
Stars: ✭ 277 (-12.89%)
Mutual labels:  docker-image
Image Syncer
Docker image synchronization tool for Docker Registry V2 based services
Stars: ✭ 313 (-1.57%)
Mutual labels:  docker-image
Docker Openldap
A docker image to run OpenLDAP 🐳
Stars: ✭ 3,202 (+906.92%)
Mutual labels:  docker-image
Yii2 Docker
Official Docker images suitable for Yii 2.0
Stars: ✭ 286 (-10.06%)
Mutual labels:  docker-image
Openjdk Docker
Scripts for creating Docker images of OpenJDK binaries.
Stars: ✭ 299 (-5.97%)
Mutual labels:  docker-image

Cachet Docker Image

This is the official repository of the Docker image for Cachet.

Cachet is a beautiful and powerful open source status page system, a free replacement for services such as StatusPage.io, Status.io and others.

For full documentation, visit the Installing Cachet with Docker page.

Supporting Cachet

Cachet is a BSD-3-licensed open source project. If you'd like to support future development, check out the Cachet Patreon campaign.

Quickstart

  1. Clone this repository
git clone https://github.com/CachetHQ/Docker.git
  1. Edit the docker-compose.yml file to specify your ENV variables.

  2. To build an image containing a specific Cachet release, set the cachet_ver ARG in the docker-compose.yml

The main branch and cachethq/docker:latest Docker automated build are a work in progress / development version of the upstream https://github.com/CachetHQ/Cachet project. As such, main or latest should not be used in a production environment as it can change at anytime.

We strongly recommend specifying a stable Cachet Release at build time as mentioned above.

  1. Build and run the image
docker-compose build
docker-compose up
  1. cachethq/docker runs on port 8000 by default. This is exposed on host port 80 when using docker-compose.

  2. Setup the APP_KEY

Whilst the container is up and running, find the name of the Cachet container via docker ps.

Run docker exec -i ID_OF_THE_CONTAINER php artisan key:generate.

Replace ${APP_KEY:-null} in docker-compose.yml with the newly generated Application key.

Note: make sure you include base64: prefix. E.g. base64:YOUR_UNIQUE_KEY

Restart the Docker containers.

Docker Hub Automated build

cachethq/docker is available as a Docker Hub Trusted Build.

For a full list of Cachet versions released as Docker images please see the list of Docker hub tags.

Please use a tagged Cachet Docker image release or one of the tagged builds from https://hub.docker.com/r/cachethq/docker/tags/ with docker pull cachethq/docker:2.3.12.

Debugging

  • The services such as Cachet, supervisord, nginx, and php-fpm log to stdout and stderr, and are visible in the Docker runtime output.

  • Setting the DEBUG Docker environment variable within the docker-compose.yml file or at runtime to true will enable debugging of the container entrypoint init script.

Testing

Pull requests must pass the Bash Automated Testing System tests, which run on Travis CI via located in the test directory.

Use make test to manually run the tests.

Development of Cachet using this docker environment

  1. Clone the official repo of CachetHQ/Docker:
git clone https://github.com/CachetHQ/Docker.git cachet-docker
cd cachet-docker
git tag -l
git checkout $LATEST_TAG
  1. Clone the official repo of CachetHQ/Cachet here and do composer install:
git clone https://github.com/CachetHQ/Cachet.git
  1. Setup the Cachet project:

Note: This requires Composer be installed on your Docker host.

cd Cachet
composer install
cp ../conf/.env.docker ./.env
cd ..
  1. Edit the docker-compose.yml file to bind mount the repo as a volume:
cachet:
  volumes:
    - ./Cachet/:/var/www/html/
  ...  
  1. Build and run the container:
docker-compose up
  1. Open new terminal and run the following commands after getting container name via docker ps:
docker exec -i cachetdocker_cachet_1  php artisan key:generate
docker exec -i cachetdocker_cachet_1  php artisan app:install
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].