mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
add cachet
This commit is contained in:
@@ -226,6 +226,7 @@ A collection of delicious docker recipes.
|
|||||||
|
|
||||||
## 3rd-party
|
## 3rd-party
|
||||||
|
|
||||||
|
- [x] cachethq/docker
|
||||||
- [x] centurylink/watchtower
|
- [x] centurylink/watchtower
|
||||||
- [x] certbot
|
- [x] certbot
|
||||||
- [x] drone/drone
|
- [x] drone/drone
|
||||||
|
|||||||
6
cachet/README.md
Normal file
6
cachet/README.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
cachet
|
||||||
|
======
|
||||||
|
|
||||||
|
[Cachet][1] is a beautiful and powerful open source status page system.
|
||||||
|
|
||||||
|
[1]: https://cachethq.io/
|
||||||
27
cachet/docker-compose.yml
Normal file
27
cachet/docker-compose.yml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
cachet:
|
||||||
|
image: cachethq/docker
|
||||||
|
ports:
|
||||||
|
- 8000:8000
|
||||||
|
links:
|
||||||
|
- postgres
|
||||||
|
environment:
|
||||||
|
- DB_DRIVER=pgsql
|
||||||
|
- DB_HOST=postgres
|
||||||
|
- DB_PORT=5432
|
||||||
|
- DB_DATABASE=postgres
|
||||||
|
- DB_USERNAME=postgres
|
||||||
|
- DB_PASSWORD=postgres
|
||||||
|
- DB_PREFIX=chq_
|
||||||
|
- APP_KEY=XXXXXXXX
|
||||||
|
- DEBUG=false
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
postgres:
|
||||||
|
image: postgres:alpine
|
||||||
|
volumes:
|
||||||
|
- ./data:/var/lib/postgresql/data
|
||||||
|
environment:
|
||||||
|
- POSTGRES_DB=postgres
|
||||||
|
- POSTGRES_USER=postgres
|
||||||
|
- POSTGRES_PASSWORD=postgres
|
||||||
|
restart: always
|
||||||
Reference in New Issue
Block a user