PromucFlow_constructor/app/server/docker-compose.yml
Trisha Anand bec8b2e0a1 Adding the docker-compose up command to the build
This should ideally run the mongo-seed container to restore the DB before each run
2019-09-24 12:14:41 +00:00

31 lines
441 B
YAML

version: "3"
services:
appsmith-internal-server:
image: appsmith-server
ports:
- "8080:8080"
links:
- mongo
networks:
- appsmith
mongo:
image: mongo
ports:
- "27017:27017"
networks:
- appsmith
mongo_seed:
image: appsmith-mongo
links:
- mongo
volumes:
- ./mongo-seed:/mongo-seed
networks:
- appsmith
networks:
appsmith:
driver: bridge