From b34d34a6ef22b8791377931a6e69e6643bb68024 Mon Sep 17 00:00:00 2001 From: Asif Mohammad Mollah Date: Fri, 15 Nov 2024 00:20:53 +0400 Subject: [PATCH] documentation added --- README.md | 18 +++++++++++++++++- bookstack/.forced | 0 2 files changed, 17 insertions(+), 1 deletion(-) delete mode 100644 bookstack/.forced diff --git a/README.md b/README.md index 5bce1bb..aa25b94 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,18 @@ # dockerfiles -This is the repository for all private docker files. +This is the repository for version locked docker files. + +## Adding new image: +1. Create a directory named as "image_name" that you want to create. +2. Create a Dockerfile named as `Dockerfile` in the directory. +3. Create a `.arch` file in the directory that contains the architecture of the image. As bellow- +```sh +amd64,arm64 +``` +4. Create a `.version` file in the directory that contains the version of the image. As bellow- +```sh +v0.0.1-alpha +``` +5. Create a `.forced` file in the directory that contains the forced build tag. +6. Create a docker-compose file named as `docker-compose.yml` in the directory. +7. Create a `README.md` file in the directory that contains the description of the image. +8. Create a pull request. diff --git a/bookstack/.forced b/bookstack/.forced deleted file mode 100644 index e69de29..0000000