mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
fix: erpnext image build
frappe/erpnext MUST be in editable mode output migration log in test
This commit is contained in:
parent
e6946fda75
commit
56bf984ef7
@ -13,4 +13,4 @@ cd ./apps
|
||||
[ "${APP_BRANCH}" ] && BRANCH="-b ${APP_BRANCH}"
|
||||
|
||||
git clone --depth 1 -o upstream ${APP_REPO} ${BRANCH}
|
||||
pip3 install --no-cache-dir /home/frappe/frappe-bench/apps/${APP_NAME}
|
||||
pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/${APP_NAME}
|
@ -37,7 +37,7 @@ RUN python -m venv env \
|
||||
&& . env/bin/activate \
|
||||
&& cd apps \
|
||||
&& git clone --depth 1 -o upstream https://github.com/frappe/frappe --branch ${GIT_BRANCH} \
|
||||
&& pip3 install --no-cache-dir /home/frappe/frappe-bench/apps/frappe
|
||||
&& pip3 install --no-cache-dir -e /home/frappe/frappe-bench/apps/frappe
|
||||
|
||||
# Copy scripts and templates
|
||||
COPY build/common/commands/* /home/frappe/frappe-bench/commands/
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
function checkMigrationComplete() {
|
||||
echo "Check Auto Migration"
|
||||
echo "Check Migration"
|
||||
CONTAINER_ID=$(docker-compose \
|
||||
--project-name frappebench00 \
|
||||
-f installation/docker-compose-common.yml \
|
||||
@ -21,6 +21,9 @@ function checkMigrationComplete() {
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
echo -e "\e[4mMigration Log\e[0m"
|
||||
docker logs $CONTAINER_ID
|
||||
}
|
||||
|
||||
function loopHealthCheck() {
|
||||
|
Loading…
Reference in New Issue
Block a user