diff --git a/docs/migrate-from-multi-image-setup.md b/docs/migrate-from-multi-image-setup.md index 002b5901..2799d163 100644 --- a/docs/migrate-from-multi-image-setup.md +++ b/docs/migrate-from-multi-image-setup.md @@ -8,7 +8,7 @@ Now you need to specify command and environment variables for following containe For `frontend` service to act as static assets frontend and reverse proxy, you need to pass `nginx-entrypoint.sh` as container `command` and `BACKEND` and `SOCKETIO` environment variables pointing `{host}:{port}` for gunicorn and websocket services. Check [environment variables](environment-variables.md) -Now you only need to mount the `sites` volume at location `/home/frappe/frappe-bench/sites`. No need for `assets` volume and asset population script or steps. +Now you only need to mount the `sites` volume at location `/home/frappe/frappe-bench/sites`. Example change: diff --git a/docs/setup-options.md b/docs/setup-options.md index 1d2dd72f..c91fb0a0 100644 --- a/docs/setup-options.md +++ b/docs/setup-options.md @@ -121,6 +121,9 @@ docker compose --project-name -f ~/gitops/docker-compose.yml pull # Stop containers docker compose --project-name -f ~/gitops/docker-compose.yml down +# Remove assets volume for repopulation +docker volume rm + # Restart containers docker compose --project-name -f ~/gitops/docker-compose.yml up -d ```