From 4e03e2a7cc41a25fcd43872627264238bec78d80 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Fri, 23 Jun 2023 11:02:35 +0000 Subject: [PATCH] Updated IMAGE_ARCHITECTURE.md Signed-off-by: Chirag Aggarwal --- IMAGE_ARCHITECTURE.md | 37 ++++++++----------------------------- 1 file changed, 8 insertions(+), 29 deletions(-) diff --git a/IMAGE_ARCHITECTURE.md b/IMAGE_ARCHITECTURE.md index b3fc803..b717e28 100644 --- a/IMAGE_ARCHITECTURE.md +++ b/IMAGE_ARCHITECTURE.md @@ -1,33 +1,12 @@ ``` docker-borgmatic/ -├── base -│ ├── data -│ │ └── borgmatic.d -│ │ ├── config.yml -│ │ └── crontab.txt -│ ├── docker-compose.restore.yml -│ ├── docker-compose.yml -│ ├── Dockerfile -│ ├── entry.sh -├── msmtp -│ ├── data -│ │ └── borgmatic.d -│ │ ├── config.yml # same as in base -│ │ ├── crontab.txt # with mailto -│ │ ├── mailenv.sh -│ │ └── msmtprc.sh -│ ├── docker-compose.yml # image: ghcr.io/borgmatic-collective/borgmatic:latest-msmtp, env: msmtp.env -│ ├── Dockerfile # FROM ghcr.io/borgmatic-collective/borgmatic:${VERSION} -│ ├── entry.sh # starts msmtp in addition -│ └── README.md # describes specifics only -├── ntfy -│ ├── data -│ │ └── borgmatic.d -│ │ ├── config.yml # same as in base -│ │ └── crontab.txt # same as in base -│ ├── docker-compose.yml # image: ghcr.io/borgmatic-collective/borgmatic:latest-ntfy -│ ├── Dockerfile # FROM ghcr.io/borgmatic-collective/borgmatic:${VERSION} -│ ├── entry.sh # same as in base -│ └── README.md # describes specifics only +├── data +│ └── borgmatic.d +│ ├── config.yml +│ └── crontab.txt +├── docker-compose.restore.yml +├── docker-compose.yml +├── Dockerfile +├── entry.sh └── README.md ```