mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-21 04:49:18 +00:00
20 lines
460 B
Bash
20 lines
460 B
Bash
#!/bin/sh
|
|
echo
|
|
echo ">>> wonderfall/parsoid container <<<"
|
|
echo
|
|
|
|
cd /parsoid
|
|
cp config.example.yaml config.yaml
|
|
sed -i "s|http://localhost/w/|$ADDRESS|g" config.yaml
|
|
sed -i "s|domain: 'localhost'|domain: '$DOMAIN'|g" config.yaml
|
|
|
|
echo "> Updating permissions..."
|
|
chown -R ${UID}:${GID} /parsoid /etc/s6.d
|
|
|
|
echo "> Executing process..."
|
|
if [ '$@' == '' ]; then
|
|
exec su-exec ${UID}:${GID} /bin/s6-svscan /etc/s6.d
|
|
else
|
|
exec su-exec ${UID}:${GID} "$@"
|
|
fi
|