2019-10-16 11:27:02 +00:00
|
|
|
version: "3.7"
|
2019-09-17 09:35:13 +00:00
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
appsmith-internal-server:
|
2021-09-10 02:35:10 +00:00
|
|
|
image: appsmith/appsmith-server:release
|
2020-07-06 09:05:56 +00:00
|
|
|
env_file: envs/docker.env
|
2019-10-16 11:27:02 +00:00
|
|
|
environment:
|
2020-07-06 09:05:56 +00:00
|
|
|
APPSMITH_REDIS_URL: "redis://redis:6379"
|
2021-05-19 13:59:08 +00:00
|
|
|
APPSMITH_MONGODB_URI: "mongodb://mongo:27017/appsmith"
|
2019-09-17 09:35:13 +00:00
|
|
|
ports:
|
|
|
|
|
- "8080:8080"
|
2019-10-16 11:27:02 +00:00
|
|
|
depends_on:
|
|
|
|
|
- mongo
|
2021-05-19 13:59:08 +00:00
|
|
|
- redis
|
2019-09-17 09:35:13 +00:00
|
|
|
networks:
|
|
|
|
|
- appsmith
|
2021-09-06 12:48:18 +00:00
|
|
|
volumes:
|
|
|
|
|
- ./container-volumes/git-root:/data/git-root
|
2019-09-17 09:35:13 +00:00
|
|
|
|
|
|
|
|
mongo:
|
2021-07-19 08:09:37 +00:00
|
|
|
image: mongo:4.4.6
|
2019-10-16 11:27:02 +00:00
|
|
|
environment:
|
2021-05-19 13:59:08 +00:00
|
|
|
- MONGO_INITDB_DATABASE=appsmith
|
2019-10-16 11:27:02 +00:00
|
|
|
volumes:
|
2021-05-19 13:59:08 +00:00
|
|
|
- ./container-volumes/mongo:/data/db
|
2019-09-17 09:35:13 +00:00
|
|
|
networks:
|
|
|
|
|
- appsmith
|
|
|
|
|
|
2019-10-16 11:27:02 +00:00
|
|
|
redis:
|
|
|
|
|
image: redis
|
|
|
|
|
networks:
|
|
|
|
|
- appsmith
|
|
|
|
|
|
2019-09-17 09:35:13 +00:00
|
|
|
networks:
|
|
|
|
|
appsmith:
|
|
|
|
|
driver: bridge
|