PromucFlow_constructor/app/server/docker-compose.yml
Abhijeet 168000be92
[skip_changelog] Feature/directory structure for version control (#6757)
* Insert git application metadata to application object, for git sync/version control feature there is a need to save the application in the structured format

* Added changelog to index application collection with git branch and remoteurl

* Rehydrate and dehydrate applications among different instances

* Added serailisation purpose while exporting the application to make distinction between version control and regular import-export flow 

* Git file operations moved to appsmith-git module

* Delete json reference from directory for deleted resource in DB

* Added git authentication in application metadata

* Replace String with Path to handle file path in git file structure
2021-09-06 18:18:18 +05:30

36 lines
691 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
volumes:
- ./container-volumes/git-root:/data/git-root
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