diff --git a/.github/workflows/deploy-docker.yml b/.github/workflows/deploy-docker.yml index 5a71abf8..8b96a890 100644 --- a/.github/workflows/deploy-docker.yml +++ b/.github/workflows/deploy-docker.yml @@ -52,6 +52,10 @@ env: # # # 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: @@ -157,7 +161,7 @@ jobs: - name: "📦 Build and 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' ) with: context: . @@ -268,7 +272,7 @@ jobs: - name: "📦 Build and 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' ) with: context: . @@ -379,7 +383,7 @@ jobs: - name: "📦 Build and 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' ) with: context: . @@ -489,7 +493,7 @@ jobs: - name: "📦 Build and 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' ) with: context: . diff --git a/README.md b/README.md index ca3083e9..413b8964 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ Makes use of the generous work over at [https://github.com/dtankdempse/thetvapp- - [About](#about) - [Docker Images](#docker-images) +- [Docker Tags](#docker-tags) - [Install](#install) - [Docker Run](#docker-run) - [Docker Compose](#docker-compose) @@ -107,6 +108,23 @@ Use any of the following images in your `docker-compose.yml` or `run` command:
+## Docker Tags +This repo includes a few different versions of the TheAppTV docker image. + +
+ +| 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. | + +
+ +--- + +
+ ## Install Instructions on using this container