Fix Appsmith slow without INTERNET




 LOCAL (without INTERNET) ENVIROMENT:

### docker-compose.yml

version: "3"

services:

   appsmith:

     image: index.docker.io/appsmith/appsmith-ee:mix

     container_name: appsmith

     ports:

         - "9001:80"

         - "9443:443"

     volumes:

         - ./stacks:/appsmith-stacks

     restart: unless-stopped

     extra_hosts:

         - "cs.appsmith.com:127.0.0.1"

         - "appsmith.com:127.0.0.2"


Convert docker image to tar file and copy to computers without internet connection:

docker save appsmith/appsmith-ee -o appsmith-ee-local.tar

# or

docker save appsmith/appsmith-ee:latest -o appsmith-ee-local.tar

docker load -i appsmith-ee-local.tar




Comments