# Docker Compose-like syntax, see here for details: # https://documentation.codeship.com/pro/builds-and-configuration/services/ app: build: image: danbee/chess dockerfile: Dockerfile environment: MIX_ENV: test PGHOST: db PGUSER: postgres PGPASSWORD: password depends_on: - db db: image: healthcheck/postgres:alpine environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: password