We've stopped [building the slim images](https://github.com/appsmithorg/appsmith/pull/25219) now and so the instructions to run server locally, which rely on the slim server image, need to be updated to use the newer `appsmith-ce` image. This PR updates the instructions to use this.
39 lines
821 B
YAML
39 lines
821 B
YAML
# This is deprecated, and is not recommended anymore. Please refer to ServerSetup.md for the latest instructions.
|
|
|
|
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
|