Merge branch 'develop' into add-instance

This commit is contained in:
FireMasterK 2021-03-17 16:35:41 +00:00 committed by GitHub
commit 057be1821d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 3 deletions

View File

@ -55,8 +55,8 @@ ENV WHOOGLE_ALT_RD=$reddit_alt
WORKDIR /whoogle
COPY --from=builder /install /usr/local
COPY config/tor/torrc /etc/tor/torrc
COPY config/tor/start-tor.sh config/tor/start-tor.sh
COPY misc/tor/torrc /etc/tor/torrc
COPY misc/tor/start-tor.sh misc/tor/start-tor.sh
COPY app/ app/
COPY run .
@ -65,4 +65,4 @@ EXPOSE $EXPOSE_PORT
HEALTHCHECK --interval=5m --timeout=5s \
CMD wget --no-verbose --tries=1 http://localhost:${EXPOSE_PORT}/ || exit 1
CMD config/tor/start-tor.sh & ./run
CMD misc/tor/start-tor.sh & ./run

29
misc/heroku-regen.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/sh
# Assumes this is being executed from a session that has already logged
# into Heroku with "heroku login -i" beforehand.
#
# You can set this up to run every night when you aren't using the
# instance with a cronjob. For example:
# 0 3 * * * /home/pi/whoogle-search/config/heroku-regen.sh <app_name>
HEROKU_CLI_SITE="https://devcenter.heroku.com/articles/heroku-cli"
if ! type "heroku" > /dev/null; then
echo "Must have heroku cli installed: $HEROKU_CLI_SITE"
exit 1
fi
cd "$(builtin cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)/../"
if [ $# -ne 1 ]; then
echo "Must provide the name of the Whoogle instance to regenerate"
exit 1
fi
APP_NAME="$1"
heroku apps:destroy $APP_NAME --confirm $APP_NAME
heroku apps:create $APP_NAME
heroku container:login
heroku container:push web
heroku container:release web