zammad-docker-compose/containers/zammad-railsserver/docker-entrypoint.sh

50 lines
1.3 KiB
Bash
Raw Normal View History

2016-12-17 11:10:51 +00:00
#!/bin/bash
if [ "$1" = 'zammad-railsserver' ]; then
2016-12-17 11:10:51 +00:00
2017-03-08 18:37:05 +00:00
# wait for postgres process coming up on zammad-postgresql
until (echo > /dev/tcp/zammad-postgresql/5432) &> /dev/null; do
echo "zammad railsserver waiting for postgresql server to be ready..."
2017-03-08 18:37:05 +00:00
sleep 5
done
echo "railsserver can access postgresql server now..."
2017-03-08 18:37:05 +00:00
cd ${ZAMMAD_DIR}
# update zammad
git pull
gem update bundler
bundle install
# db mirgrate
bundle exec rake db:migrate &> /dev/null
2017-03-08 18:37:05 +00:00
if [ $? != 0 ]; then
echo "creating db & searchindex..."
bundle exec rake db:create
bundle exec rake db:migrate
bundle exec rake db:seed
fi
# es config
bundle exec rails r "Setting.set('es_url', 'http://zammad-elasticsearch:9200')"
bundle exec rake searchindex:rebuild
chown -R ${ZAMMAD_USER}:${ZAMMAD_USER} ${ZAMMAD_DIR}
2017-03-08 18:37:05 +00:00
# delete logs
find ${ZAMMAD_DIR}/log -iname *.log -exec rm {} \;
# run zammad
echo "starting zammad..."
echo "zammad will be accessable on http://localhost in some seconds"
if [ "${RAILS_SERVER}" == "puma" ]; then
exec gosu ${ZAMMAD_USER}:${ZAMMAD_USER} bundle exec puma -b tcp://0.0.0.0:3000 -e ${RAILS_ENV}
2017-05-12 09:21:54 +00:00
elif [ "${RAILS_SERVER}" == "unicorn" ]; then
exec gosu ${ZAMMAD_USER}:${ZAMMAD_USER} bundle exec unicorn -p 3000 -c config/unicorn.rb -E ${RAILS_ENV}
2017-03-08 18:37:05 +00:00
fi
2016-12-17 11:10:51 +00:00
fi