Skip to content

lgaticaq/nginx-cachet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nginx-cachet

dockeri.co

Build Status

Docker image for proxy of cachet with alpine

Supported tags and respective Dockerfile links

Example docker-compose-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

About

Docker image for proxy of cachet with alpine

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages