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.
16 lines
344 B
YAML
16 lines
344 B
YAML
# Use for running an Appsmith, during development.
|
|
|
|
version: "3"
|
|
|
|
services:
|
|
appsmith:
|
|
image: index.docker.io/appsmith/appsmith-ce:release
|
|
container_name: appsmith
|
|
ports:
|
|
- "8080:80"
|
|
environment:
|
|
APPSMITH_ENCRYPTION_PASSWORD: abcd
|
|
APPSMITH_ENCRYPTION_SALT: abcd
|
|
volumes:
|
|
- ./stacks:/appsmith-stacks
|