Skip to content

Commit 6b52af7

Browse files
committed
build(deps): bump docker/build-push-action from 3 to 6
1 parent 900689e commit 6b52af7

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

.github/workflows/deploy-docker.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ env:
5252

5353
# #
5454
# jobs
55+
#
56+
# The way pushed docker containers on Github work, the most recent image built goes at the top.
57+
# We will use the order below which builds the :latest image last so that it appears at the very
58+
# top of the packages page.
5559
# #
5660

5761
jobs:
@@ -157,7 +161,7 @@ jobs:
157161

158162
- name: "📦 Build and push"
159163
id: task_release_gh_push
160-
uses: docker/build-push-action@v3
164+
uses: docker/build-push-action@v6
161165
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
162166
with:
163167
context: .
@@ -268,7 +272,7 @@ jobs:
268272

269273
- name: "📦 Build and push"
270274
id: task_release_dh_push
271-
uses: docker/build-push-action@v3
275+
uses: docker/build-push-action@v6
272276
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
273277
with:
274278
context: .
@@ -379,7 +383,7 @@ jobs:
379383

380384
- name: "📦 Build and push"
381385
id: task_release_gh_push
382-
uses: docker/build-push-action@v3
386+
uses: docker/build-push-action@v6
383387
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
384388
with:
385389
context: .
@@ -489,7 +493,7 @@ jobs:
489493

490494
- name: "📦 Build and push"
491495
id: task_release_dh_push
492-
uses: docker/build-push-action@v3
496+
uses: docker/build-push-action@v6
493497
if: ( github.event_name == 'workflow_dispatch' && inputs.PRINT_ONLY == 'false' ) || ( github.event_name == 'push' )
494498
with:
495499
context: .

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Makes use of the generous work over at [https://github.com/dtankdempse/thetvapp-
4242

4343
- [About](#about)
4444
- [Docker Images](#docker-images)
45+
- [Docker Tags](#docker-tags)
4546
- [Install](#install)
4647
- [Docker Run](#docker-run)
4748
- [Docker Compose](#docker-compose)
@@ -107,6 +108,23 @@ Use any of the following images in your `docker-compose.yml` or `run` command:
107108

108109
<br />
109110

111+
## Docker Tags
112+
This repo includes a few different versions of the TheAppTV docker image.
113+
114+
<br />
115+
116+
| Tag | Description |
117+
| --- | --- |
118+
| `:latest` | Latest version of the image. Includes only Nginx - no PHP |
119+
| `:1.x.x` | Specified version which contains Nginx only - no PHP |
120+
| `:1.x.x-php` | Contains both Nginx and PHP. |
121+
122+
<br />
123+
124+
---
125+
126+
<br />
127+
110128
## Install
111129
Instructions on using this container
112130

0 commit comments

Comments
 (0)