web:
  build: .
  ports:
    - 8000:8000
  volumes:
    - .:/data/modular_srm
  links:
    - db
    - redis

db:
  image: postgres
  ports:
    - 5432

redis:
  image: redis
  ports:
    - 6379
