PromucFlow_constructor/app/server/docker-compose.yml

36 lines
699 B
YAML
Raw Normal View History

version: "3.7"
2019-09-17 09:35:13 +00:00
services:
appsmith-internal-server:
image: appsmith/appsmith-server:release
env_file: envs/docker.env
environment:
APPSMITH_REDIS_URL: "redis://redis:6379"
APPSMITH_MONGODB_URI: "mongodb://mongo:27017/appsmith"
2019-09-17 09:35:13 +00:00
ports:
- "8080:8080"
depends_on:
- mongo
- redis
2019-09-17 09:35:13 +00:00
networks:
- appsmith
volumes:
- ./container-volumes/git-root:/data/git-root
2019-09-17 09:35:13 +00:00
mongo:
image: mongo:4.4.6
environment:
- MONGO_INITDB_DATABASE=appsmith
volumes:
- ./container-volumes/mongo:/data/db
2019-09-17 09:35:13 +00:00
networks:
- appsmith
redis:
image: redis
networks:
- appsmith
2019-09-17 09:35:13 +00:00
networks:
appsmith:
driver: bridge