# This common-services.yml definition holds all the image definitions and environment linking for the images.
# It is intended to use the docker-compose extends functionality to use these definitions to build a docker-compose file
version: "2"

services:

  database:
    image: ${DB_IMAGE}

  cache:
    image: redis:3.0.7

  elasticsearch:
    image: elasticsearch:1.7.5

  mailcatcher:
    image: schickling/mailcatcher:latest
