PromucFlow_constructor/app/server/docker-compose.yml
Confidence Okoghenun 639cba9095
Improve server setup experience documentation (#4441)
* fix: Updates appsmith server docker-compose

* fix: Updates server docker-compose

* fix: Removes exposed ports

* docs: Adds updates for server docker-compose

* docs: Adds updates for server docker-compose

* docs: Updates app/server/README.md

Co-authored-by: Arpit Mohan <mohanarpit@users.noreply.github.com>

* chore: Removes deprecated env vars

Co-authored-by: Arpit Mohan <mohanarpit@users.noreply.github.com>
2021-05-19 19:29:08 +05:30

34 lines
620 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
environment:
- MONGO_INITDB_DATABASE=appsmith
volumes:
- ./container-volumes/mongo:/data/db
networks:
- appsmith
redis:
image: redis
networks:
- appsmith
networks:
appsmith:
driver: bridge