PromucFlow_constructor/app/server/docker-compose.yml
Anagh Hegde 6faaa33936
feat: Git version control functionality with connect to remote, commit, push flows (#8403)
* core workflows of git - branch, clone, commit, pull, merge, status, log

* Rehydrate file system before merge operation

* Add logic to handle merge conflict for merge and pull flow

* Add defaultBranch to listBranch API

* Add Unit tests for git commands

* Upgrade JGit dependencies to fix the security issue

* Git command tests

* Revert unwanted changes and update delete application flow

* Disable git feature until the FE changes are merged

Co-authored-by: Abhijeet <ABHI.NAGARNAIK@GMAIL.COM>
2021-10-20 09:47:34 +00:00

36 lines
705 B
YAML

version: "3.7"
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"
ports:
- "8080:8080"
depends_on:
- mongo
- redis
networks:
- appsmith
volumes:
- ./container-volumes/git-storage:/data/git-storage
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