https://github.com/lgaticaq/nginx-cachet
Docker image for proxy of cachet with alpine
https://github.com/lgaticaq/nginx-cachet
alpine cachet docker-image nginx-cachet
Last synced: 3 months ago
JSON representation
Docker image for proxy of cachet with alpine
- Host: GitHub
- URL: https://github.com/lgaticaq/nginx-cachet
- Owner: lgaticaq
- License: mit
- Created: 2017-02-06T14:47:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-14T22:47:05.000Z (4 months ago)
- Last Synced: 2025-02-14T23:27:23.939Z (4 months ago)
- Topics: alpine, cachet, docker-image, nginx-cachet
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nginx-cachet
[](https://hub.docker.com/r/lgatica/nginx-cachet/)
[](https://travis-ci.org/lgaticaq/nginx-cachet)
> Docker image for proxy of cachet with alpine
Supported tags and respective Dockerfile links
- 1.13.12, 1.13, mainline, latest ([Dockerfile](https://github.com/lgaticaq/nginx-cachet/blob/master/1.13.12/Dockerfile))
- 1.12.2, 1.12, stable ([Dockerfile](https://github.com/lgaticaq/nginx-cachet/blob/master/1.12.2/Dockerfile))Example docker-compose-yml:
```yml
version: "2"services:
nginx:
image: nginx-cachet
ports:
- 80:80
links:
- cachet
volumes_from:
- cachet
depends_on:
- cachet
postgres:
image: postgres:9.5
volumes:
- /var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
cachet:
image: cachethq/docker:2.3.10
expose:
- 9000
links:
- postgres:postgres
environment:
- DB_DRIVER=pgsql
- DB_HOST=postgres
- DB_DATABASE=postgres
- DB_USERNAME=postgres
- DB_PASSWORD=postgres
volumes:
- /var/www
depends_on:
- postgres
```