mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
bench setup anything-else should work now
This commit is contained in:
parent
9f34d06a4b
commit
cc277c00cd
1 changed files with 2 additions and 4 deletions
6
dbench
6
dbench
|
|
@ -6,14 +6,13 @@ elif [ "$1" == 'init' ]; then
|
|||
docker exec -itu root frappe bash -c "cd /home/frappe && chown -R frappe:frappe ./*"
|
||||
docker exec -i frappe bash -c "cd .. && bench init frappe-bench --ignore-exist --skip-redis-config-generation && cd frappe-bench"
|
||||
docker exec -i frappe bash -c "mv Procfile_docker Procfile && mv sites/common_site_config_docker.json sites/common_site_config.json && bench set-mariadb-host mariadb"
|
||||
elif [ "$1" == 'setup' ]; then
|
||||
if [ "$2" == 'docker' ]; then
|
||||
elif [ "$1" == 'setup' ] && [ "$2" == 'docker' ]; then
|
||||
if [ "$3" == '--swarm-mode' ]; then
|
||||
echo "Docker swarm mode is not currently supported"
|
||||
else
|
||||
docker-compose up -d
|
||||
fi
|
||||
elif [ "$2" == 'hosts' ]; then
|
||||
elif [ "$1" == 'setup' ] && [ "$2" == 'hosts' ]; then
|
||||
a=$(cd frappe-bench && ls sites/*/site_config.json | grep -o '/.\+/')
|
||||
a="${a//$'\n'/ }"
|
||||
a=$(echo $a | tr -d / )
|
||||
|
|
@ -21,7 +20,6 @@ elif [ "$1" == 'setup' ]; then
|
|||
echo $result | sudo tee -a /etc/hosts
|
||||
docker exec -iu root frappe bash -c "echo ${result} | tee --append /etc/hosts"
|
||||
docker exec -itu root frappe bash -c "printf '# User rules for frappe\nfrappe ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers.d/frappe"
|
||||
fi
|
||||
elif [ "$1" == '-c' ]; then
|
||||
shift
|
||||
user=$1
|
||||
|
|
|
|||
Loading…
Reference in a new issue