An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# nginx-cachet

[![dockeri.co](http://dockeri.co/image/lgatica/nginx-cachet)](https://hub.docker.com/r/lgatica/nginx-cachet/)

[![Build Status](https://travis-ci.org/lgaticaq/nginx-cachet.svg?branch=master)](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
```