mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
39 lines
931 B
Bash
Executable File
39 lines
931 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# shellcheck source=functions.sh
|
|
source tests/functions.sh
|
|
|
|
project_name="test_erpnext"
|
|
SITE_NAME="test_erpnext.localhost"
|
|
|
|
echo ::group::Setup env
|
|
cp env-example .env
|
|
sed -i -e "s/FRAPPE_VERSION=edge/FRAPPE_VERSION=$FRAPPE_VERSION/g" .env
|
|
sed -i -e "s/ERPNEXT_VERSION=edge/ERPNEXT_VERSION=test/g" .env
|
|
# shellcheck disable=SC2046
|
|
export $(cat .env)
|
|
cat .env
|
|
|
|
print_group Start services
|
|
FRAPPE_VERSION=$FRAPPE_VERSION ERPNEXT_VERSION="test" \
|
|
docker-compose \
|
|
-p $project_name \
|
|
-f installation/docker-compose-common.yml \
|
|
-f installation/docker-compose-erpnext.yml \
|
|
-f installation/erpnext-publish.yml \
|
|
up -d
|
|
|
|
print_group Create site
|
|
docker run \
|
|
--rm \
|
|
-e "SITE_NAME=$SITE_NAME" \
|
|
-e "INSTALL_APPS=erpnext" \
|
|
-v ${project_name}_sites-vol:/home/frappe/frappe-bench/sites \
|
|
--network ${project_name}_default \
|
|
frappe/erpnext-worker:test new
|
|
|
|
ping_site
|
|
rm .env
|