hummingbird-me/hummingbird

View on GitHub
docker-compose.yml

Summary

Maintainability
Test Coverage
postgres:
  image: postgres:9.3
  environment:
    POSTGRES_PASSWORD: mysecretpassword
    POSTGRES_USER: postgres
redis:
  image: redis
web:
  build: .
  volumes:
    - ./:/opt/hummingbird/
  ports:
    - 3000
  links:
    - postgres
    - redis
  environment:
    RAILS_ENV: development