tellform/docker-compose.yml
Luciano Jesus Lima 93951562e7 Docker-Compose
A Docker-Compose file to make easy to deploy a Tellform server
2017-05-06 02:02:05 -03:00

23 lines
416 B
YAML

version: "3"
services:
tellform:
image: tellform/production:no_subdomains
ports:
- 3000:3000
- 8080:80
links:
- redis:redis-db
- mongo:db
environment:
- BASE_URL=localhost
- DB_1_PORT_27017_TCP_ADDR=mongo
- REDIS_DB_PORT_6379_TCP_ADDR=redis
redis:
image: redis:alpine
ports:
- 6379
mongo:
image: mongo:latest
ports:
- 27017