From 24f69aa520b9e9e5a5e909708f26bc631f7324df Mon Sep 17 00:00:00 2001 From: haui Date: Sun, 1 Feb 2026 20:30:08 +0100 Subject: [PATCH] add compose example --- docker-compose-example.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docker-compose-example.yml diff --git a/docker-compose-example.yml b/docker-compose-example.yml new file mode 100644 index 0000000..cda0e9f --- /dev/null +++ b/docker-compose-example.yml @@ -0,0 +1,9 @@ +services: + quotebot: + container_name: quotebot + image: haui/quotebot + build: ./ + volumes: + - ./.env:/usr/local/quotebot/.env + - ./quotes.txt:/usr/local/quotebot/quotes.txt + restart: unless-stopped