a985209714
- also add config to the new aggregate that is extensible in a backward compatible manner.
17 lines
295 B
YAML
17 lines
295 B
YAML
version: '3'
|
|
services:
|
|
mongodb:
|
|
ports:
|
|
- 27017:27017
|
|
image: mongo:3.6
|
|
mongodb-haskell:
|
|
image: phadej/ghc:8.0.2
|
|
environment:
|
|
- HASKELL_MONGODB_TEST_HOST=mongodb
|
|
entrypoint:
|
|
- /bin/bash
|
|
volumes:
|
|
- ./:/opt/mongodb-haskell
|
|
|
|
# vim: ts=2 et sw=2 ai
|