forked from archivesspace/archivesspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-startup.sh
37 lines (31 loc) · 1.19 KB
/
docker-startup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
DATA_TMP_DIR="${APPCONFIG_DATA_DIR:-"/archivesspace/data"}/tmp"
# DEPLOY_PKG (optional): [./config/config.rb, ./plugins, ./stylesheets]
if [[ -v ASPACE_DEPLOY_PKG_URL ]]; then
wget -O /archivesspace/deploy_pkg.zip $ASPACE_DEPLOY_PKG_URL
if [[ "$?" != 0 ]]; then
echo "Error downloading deploy package from: $ASPACE_DEPLOY_PKG_URL"
exit 1
else
unzip -o /archivesspace/deploy_pkg.zip -d /archivesspace/tmp
cp /archivesspace/tmp/config/config.rb /archivesspace/config/config.rb || true
cp -r /archivesspace/tmp/plugins/* /archivesspace/plugins/ || true
cp /archivesspace/tmp/stylesheets/* /archivesspace/stylesheets/ || true
fi
fi
# INITIALIZE PLUGINS (optional): ASPACE_INITIALIZE_PLUGINS=plugin1,plugin2,plugin3
if [[ -v ASPACE_INITIALIZE_PLUGINS ]]; then
for plugin in ${ASPACE_INITIALIZE_PLUGINS//,/ }
do
echo "Initializing plugin: $plugin"
/archivesspace/scripts/initialize-plugin.sh $plugin
done
fi
# clear out tmp pre-startup as it can build up if persisted
rm -rf $DATA_TMP_DIR/*
/archivesspace/scripts/setup-database.sh
if [[ "$?" != 0 ]]; then
echo "Error running the database setup script."
exit 1
fi
exec /archivesspace/archivesspace.sh