i run these steps
in os do these
git clone https://github.com/frappe/frappe_docker buildwithmanal
cd buildwithmanal
cp -R devcontainer-example .devcontainer
cp -R development/vscode-example development/.vscode
code .
in the container, we do this mean in vscode
Reopen in devcontainer
code apps.json
./installer.py -t version-15 -s manal.localhost -p 3.11.4 -n v18 -j apps.json -v
in os do these *(question did the below command when the above container is run or stop) @revant_one
export APPS_JSON_BASE64=$(base64 -w 0 ./development/apps.json)
echo $APPS_JSON_BASE64
docker build \
--build-arg=FRAPPE_PATH=https://github.com/frappe/frappe \
--build-arg=FRAPPE_BRANCH=version-15 \
--build-arg=PYTHON_VERSION=3.11.4 \
--build-arg=NODE_VERSION=18.17.1 \
--build-arg=APPS_JSON_BASE64=$APPS_JSON_BASE64 \
--tag=alsubaeimanal/buildwithmanal:latest \
--file=images/custom/Containerfile .
sed -i 's|frappe/erpnext:v15.54.3|alsubaeimanal/buildwithmanal:latest|g' pwd.yml
sed -i 's|--install-app erpnext|--install-app erpnext --install-app payments --install-app hrms --install-app insights --install-app crm --install-app hospitality --install-app drive --install-app wiki|g' pwd.yml
docker compose -p projectname -f pwd.yml up -d