Make replace more specific

This commit is contained in:
Girish Ramakrishnan 2019-07-16 12:36:09 -07:00
parent bfa59b5c63
commit 5e763900ad

View file

@ -5,7 +5,7 @@ set -eu
if [[ -z "$(ls -A /app/data)" ]]; then
echo "=> Detected first run"
cp /app/code/searx/settings.yml.orig /app/data/settings.yml
sed -i "s/127.0.0.1/0.0.0.0/g" /app/data/settings.yml
sed -i -e 's/bind_address : "127.0.0.1"/bind_address : "0.0.0.0"/g' /app/data/settings.yml
fi
chown -R www-data.www-data /app/data