PromucFlow_constructor/app/server/docker-compose.yml
Arpit Mohan 9a4b9c27cd
Locking mongo Docker container to 4.4.6 (#5950)
Mongo v5 has some issues with seeding data. Refer:  https://stackoverflow.com/questions/68392064/error-when-running-mongo-image-docker-entrypoint-sh-line-381
Hence, locking the mongo version to a known working tag till we have more information on the problem.
2021-07-19 13:39:37 +05:30

34 lines
626 B
YAML

version: "3.7"
services:
appsmith-internal-server:
image: appsmith/appsmith-server
env_file: envs/docker.env
environment:
APPSMITH_REDIS_URL: "redis://redis:6379"
APPSMITH_MONGODB_URI: "mongodb://mongo:27017/appsmith"
ports:
- "8080:8080"
depends_on:
- mongo
- redis
networks:
- appsmith
mongo:
image: mongo:4.4.6
environment:
- MONGO_INITDB_DATABASE=appsmith
volumes:
- ./container-volumes/mongo:/data/db
networks:
- appsmith
redis:
image: redis
networks:
- appsmith
networks:
appsmith:
driver: bridge