From f98fb5125264d0c097fd5782c3443095654ed445 Mon Sep 17 00:00:00 2001 From: Michael Traeger Date: Wed, 27 Mar 2019 19:40:08 +0100 Subject: [PATCH] add readme --- readme.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..297536b --- /dev/null +++ b/readme.md @@ -0,0 +1,58 @@ +Docker Update +============= + +Try to show updates for your used docker images. + + +Requirements +------------ + +TODO + +You need a directory containing your service directories. These services must have a docker-compose.yml to get checked. + +Example: +``` +└── services + ├── bitpoll.wiai.de + │   ├── docker + │   ├── docker-compose.yml + ├── dockerui + │   ├── docker-compose.yml + └── zitate + └── docker-compose.yml +``` + +If there are files or directories without a docker-compse.yml, it will just notify you and ignore it. + + + +Usage +---- + +Modify mount of services directory. Mount your directory as `/services`. + +``` +docker-compose up +``` + +Output file: `updates.json` + + +Advantages +---------- + +* No access to Docker-Socket +* tbc ... + + +Alternatives +------------ + +* https://github.com/v2tec/watchtower +* https://engineering.salesforce.com/open-sourcing-dockerfile-image-update-6400121c1a +* https://stackoverflow.com/questions/26423515/how-to-automatically-update-your-docker-containers-if-base-images-are-updated +* tbc ... + + +