From 7c11315cee0e73b6a034ecbfe6cd3c842429a608 Mon Sep 17 00:00:00 2001 From: "ayinde.jamiu" Date: Tue, 25 Apr 2023 17:56:39 +0100 Subject: [PATCH 1/6] THIS IS A NEW COMMIT --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14bb72e7..22ee2203 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![nginx 1.17.2](https://img.shields.io/badge/nginx-1.17.2-brightgreen.svg?&logo=nginx&logoColor=white&style=for-the-badge)](https://nginx.org/en/CHANGES) [![php 7.3.8](https://img.shields.io/badge/php--fpm-7.3.8-blue.svg?&logo=php&logoColor=white&style=for-the-badge)](https://secure.php.net/releases/7_3_8.php) - +i AM ADDING MY OWN ## Introduction This is a Dockerfile to build a debian based container image running nginx and php-fpm 7.3.x / 7.2.x / 7.1.x / 7.0.x & Composer. From 2d75c6af24b7586344624973219a5e04204277c9 Mon Sep 17 00:00:00 2001 From: "ayinde.jamiu" Date: Sat, 6 May 2023 20:56:40 +0100 Subject: [PATCH 2/6] this is about a change --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22ee2203..34bd4cc5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![nginx 1.17.2](https://img.shields.io/badge/nginx-1.17.2-brightgreen.svg?&logo=nginx&logoColor=white&style=for-the-badge)](https://nginx.org/en/CHANGES) [![php 7.3.8](https://img.shields.io/badge/php--fpm-7.3.8-blue.svg?&logo=php&logoColor=white&style=for-the-badge)](https://secure.php.net/releases/7_3_8.php) -i AM ADDING MY OWN +i AM ADDING MY OWN IMAGE ## Introduction This is a Dockerfile to build a debian based container image running nginx and php-fpm 7.3.x / 7.2.x / 7.1.x / 7.0.x & Composer. From b7d4d63d58f979e9be7022da34d6cc68e867d826 Mon Sep 17 00:00:00 2001 From: "ayinde.jamiu" Date: Sat, 6 May 2023 22:40:08 +0100 Subject: [PATCH 3/6] this is about another change --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34bd4cc5..4435dc0f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![nginx 1.17.2](https://img.shields.io/badge/nginx-1.17.2-brightgreen.svg?&logo=nginx&logoColor=white&style=for-the-badge)](https://nginx.org/en/CHANGES) [![php 7.3.8](https://img.shields.io/badge/php--fpm-7.3.8-blue.svg?&logo=php&logoColor=white&style=for-the-badge)](https://secure.php.net/releases/7_3_8.php) -i AM ADDING MY OWN IMAGE +i AM ADDING MY OWN IMAGE AND ANOTHER ONE ## Introduction This is a Dockerfile to build a debian based container image running nginx and php-fpm 7.3.x / 7.2.x / 7.1.x / 7.0.x & Composer. From ffed9fdde66f084e5a8a61a913581fec8d427ad9 Mon Sep 17 00:00:00 2001 From: "ayinde.jamiu" Date: Sat, 6 May 2023 22:47:24 +0100 Subject: [PATCH 4/6] this is about another 1 change --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4435dc0f..1fc505d8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![nginx 1.17.2](https://img.shields.io/badge/nginx-1.17.2-brightgreen.svg?&logo=nginx&logoColor=white&style=for-the-badge)](https://nginx.org/en/CHANGES) [![php 7.3.8](https://img.shields.io/badge/php--fpm-7.3.8-blue.svg?&logo=php&logoColor=white&style=for-the-badge)](https://secure.php.net/releases/7_3_8.php) -i AM ADDING MY OWN IMAGE AND ANOTHER ONE +i AM ADDING MY OWN IMAGE AND ANOTHER ONE NOW ## Introduction This is a Dockerfile to build a debian based container image running nginx and php-fpm 7.3.x / 7.2.x / 7.1.x / 7.0.x & Composer. From 6730a47b0770457dd3180f97e697a91f73f26b71 Mon Sep 17 00:00:00 2001 From: Ayinde Jamiu Date: Tue, 20 Jun 2023 17:24:07 +0100 Subject: [PATCH 5/6] Create deploy.yaml github action file --- .github/workflow/deploy.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflow/deploy.yaml diff --git a/.github/workflow/deploy.yaml b/.github/workflow/deploy.yaml new file mode 100644 index 00000000..5f440201 --- /dev/null +++ b/.github/workflow/deploy.yaml @@ -0,0 +1,20 @@ +name: Build Docker Image + +on: + push: + branches: + - '!main' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Set up Docker + uses: docker/setup-docker@v1 + + - name: Echo Docker version + run: docker version From a3c61e731e3a002aa33ced9c37aa649778435bef Mon Sep 17 00:00:00 2001 From: Ayinde Jamiu Date: Tue, 20 Jun 2023 17:27:32 +0100 Subject: [PATCH 6/6] Create push.yaml new push --- .github/workflows/push.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/push.yaml diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml new file mode 100644 index 00000000..5f440201 --- /dev/null +++ b/.github/workflows/push.yaml @@ -0,0 +1,20 @@ +name: Build Docker Image + +on: + push: + branches: + - '!main' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Set up Docker + uses: docker/setup-docker@v1 + + - name: Echo Docker version + run: docker version