diff --git a/deploy/docker/README.md b/deploy/docker/README.md index e61b8f15b28a..68ccb60b6898 100644 --- a/deploy/docker/README.md +++ b/deploy/docker/README.md @@ -159,12 +159,7 @@ This will need a restart of the Appsmith server, which can be done using the fol ```sh docker-compose exec appsmith-ce supervisorctl restart backend ``` -### Migrate To New Server -To migrate a running container to a new server or other machine, you can use the following `migrate` command and replace the `` and `` by the user and IP address of the destination server or machine. -``` -docker exec appsmith-ce appsmithctl migrate @ -``` -This command will migrate all data and configuration of running container on source machine to destination machine and start a new container on destination machine. + ## Supervisor The container runs multiple processes, including the Appsmith server, Nginx, MongoDB etc., inside a single Docker container. These processes are started and managed by [supervisord](http://supervisord.org/). diff --git a/deploy/docker/base.dockerfile b/deploy/docker/base.dockerfile index 5ea5ec48541d..fdff976a73bd 100644 --- a/deploy/docker/base.dockerfile +++ b/deploy/docker/base.dockerfile @@ -18,7 +18,7 @@ RUN set -o xtrace \ && apt-get update \ && apt-get upgrade --yes \ && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends --yes \ - supervisor curl nfs-common gnupg wget netcat openssh-client \ + supervisor curl nfs-common gnupg wget \ gettext \ ca-certificates \ # Install MongoDB v5, Redis, PostgreSQL v13