diff --git a/app/help_methods.py b/app/help_methods.py index dc44087c..c71be1d9 100644 --- a/app/help_methods.py +++ b/app/help_methods.py @@ -96,6 +96,7 @@ def get_help_message(method): ], 'meme': [ 'Generates a meme on the fly!', + '\nExamples of all templates can be seen here https://memegen.link/examples' '\n\nUsage: !meme doge top text; bottom text' ], 'homepage': [ diff --git a/pull_and_run_latest.sh b/pull_and_run_latest.sh index 1b56a428..920aa2da 100755 --- a/pull_and_run_latest.sh +++ b/pull_and_run_latest.sh @@ -6,5 +6,5 @@ printf "[+] Done\n" # Run that shit and mount the docker socket so it can talk to the sky-factory container printf "\n[-] Pulling latest build of container\n" docker pull ldooks/dragon-bot:latest -docker run -d --name dragon-bot -e "DRAGON_ENV=prod" -v /var/run/docker.sock:/var/run/docker.sock --restart always ldooks/dragon-bot:latest +docker run -d --name dragon-bot --env-file /home/ldooks/dragon_bot_env -v /var/run/docker.sock:/var/run/docker.sock --restart always ldooks/dragon-bot:latest printf "[+] Done\n"