tellform/docker-compose.yml

23 lines
358 B
YAML
Raw Normal View History

version: "3"
services:
tellform:
2017-09-30 00:33:55 +00:00
build:
context: ./
dockerfile: dockerfile
image: tellform
ports:
- 3000:3000
links:
2017-09-30 00:33:55 +00:00
- tellform-redis:redis-db
- tellform-mongo:db
env_file:
- .env
tellform-redis:
image: redis
ports:
- 6379
2017-09-30 00:33:55 +00:00
tellform-mongo:
image: mongo
ports:
- 27017