build(deps): bump docker/build-push-action from 3 to 6

This commit is contained in:
2024-12-01 13:19:01 -07:00
parent 900689e705
commit 6b52af711f
2 changed files with 26 additions and 4 deletions

View File

@@ -52,6 +52,10 @@ env:
# # # #
# jobs # jobs
#
# The way pushed docker containers on Github work, the most recent image built goes at the top.
# We will use the order below which builds the :latest image last so that it appears at the very
# top of the packages page.
# # # #
jobs: jobs:
@@ -157,7 +161,7 @@ jobs:
- name: "📦 Build and push" - name: "📦 Build and push"
id: task_release_gh_push id: task_release_gh_push
uses: docker/build-push-action@v3 uses: docker/build-push-action@v6
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' ) if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
with: with:
context: . context: .
@@ -268,7 +272,7 @@ jobs:
- name: "📦 Build and push" - name: "📦 Build and push"
id: task_release_dh_push id: task_release_dh_push
uses: docker/build-push-action@v3 uses: docker/build-push-action@v6
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' ) if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
with: with:
context: . context: .
@@ -379,7 +383,7 @@ jobs:
- name: "📦 Build and push" - name: "📦 Build and push"
id: task_release_gh_push id: task_release_gh_push
uses: docker/build-push-action@v3 uses: docker/build-push-action@v6
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' ) if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
with: with:
context: . context: .
@@ -489,7 +493,7 @@ jobs:
- name: "📦 Build and push" - name: "📦 Build and push"
id: task_release_dh_push id: task_release_dh_push
uses: docker/build-push-action@v3 uses: docker/build-push-action@v6
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' ) if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
with: with:
context: . context: .

View File

@@ -42,6 +42,7 @@ Makes use of the generous work over at [https://github.com/dtankdempse/thetvapp-
- [About](#about) - [About](#about)
- [Docker Images](#docker-images) - [Docker Images](#docker-images)
- [Docker Tags](#docker-tags)
- [Install](#install) - [Install](#install)
- [Docker Run](#docker-run) - [Docker Run](#docker-run)
- [Docker Compose](#docker-compose) - [Docker Compose](#docker-compose)
@@ -107,6 +108,23 @@ Use any of the following images in your `docker-compose.yml` or `run` command:
<br /> <br />
## Docker Tags
This repo includes a few different versions of the TheAppTV docker image.
<br />
| Tag | Description |
| --- | --- |
| `:latest` | Latest version of the image. Includes only Nginx - no PHP |
| `:1.x.x` | Specified version which contains Nginx only - no PHP |
| `:1.x.x-php` | Contains both Nginx and PHP. |
<br />
---
<br />
## Install ## Install
Instructions on using this container Instructions on using this container