From 5591828a78ac7e17cd250cd62d80aa6bec58b6c1 Mon Sep 17 00:00:00 2001 From: Aaron Crate Date: Fri, 17 Nov 2023 22:04:50 +0000 Subject: [PATCH] update readme --- readme.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 9bdeed1..04bc582 100644 --- a/readme.md +++ b/readme.md @@ -18,4 +18,12 @@ To get started, clone this repo and create a `config.py` file in GarfBot's root OPENAI_TOKEN = "token" GIF_TOKEN = "token" ``` -If you want to configure a more secure setup go ahead, feel free to pipe any questions to my email address or /dev/null. \ No newline at end of file +If you want to configure a more secure setup go ahead. + +Next I recommend building a docker image for each bot using the included DockerFile as a template. Run each container binding /usr/src/app to GarfBot's CWD. + +Example: +```console + crate@raspberrypi:~/garfbot $ docker build -t garfbot . + crate@raspberrypi:~/garfbot $ docker run -d --restart always -v $PWD:/usr/src/app --name garfbot garfbot +``` \ No newline at end of file