-
Notifications
You must be signed in to change notification settings - Fork 539
573 lines (508 loc) · 18.4 KB
/
docker-publish.yml
File metadata and controls
573 lines (508 loc) · 18.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
# Builds and publishes the OpenResty Docker image matrix
#
# Copyright (c) 2026 Evan Wies
#
#
# env:
# GHCR_IMAGE: GitHub Container Registry image
# DOCKERHUB_IMAGE: Docker Hub image
#
# secrets:
# GHCR_USERNAME: GitHub Container Registry username
# GHCR_PASSWORD: GitHub Container Registry password
# DOCKERHUB_USERNAME: Docker Hub username
# DOCKERHUB_PASSWORD: Docker Hub password
#
name: Docker Build and Publish
on:
push:
branches:
- master
tags:
- '*'
workflow_dispatch:
env:
GHCR_IMAGE: ${{ vars.GHCR_IMAGE || format('ghcr.io/{0}/openresty', github.repository_owner) }}
DOCKERHUB_REGISTRY: ${{ vars.DOCKERHUB_REGISTRY || 'docker.io' }}
DOCKERHUB_IMAGE: ${{ vars.DOCKERHUB_IMAGE || 'docker.io/openresty/openresty' }}
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
# --- Alma ---
- flavor: alma
arch: amd64
dockerfile: alma/Dockerfile
platforms: linux/amd64
- flavor: alma
arch: arm64
dockerfile: alma/Dockerfile
platforms: linux/arm64
- flavor: alma
arch: s390x
dockerfile: alma/Dockerfile
platforms: linux/s390x
# --- Alpine ---
- flavor: alpine
arch: amd64
dockerfile: alpine/Dockerfile
platforms: linux/amd64
- flavor: alpine
arch: arm64
dockerfile: alpine/Dockerfile
platforms: linux/arm64
# --- Alpine Slim ---
- flavor: alpine-slim
arch: amd64
dockerfile: alpine/Dockerfile
platforms: linux/amd64
build-args: RESTY_STRIP_BINARIES=1
- flavor: alpine-slim
arch: arm64
dockerfile: alpine/Dockerfile
platforms: linux/arm64
build-args: RESTY_STRIP_BINARIES=1
# -- Alpine APK ---
- flavor: alpine-apk
arch: amd64
dockerfile: alpine-apk/Dockerfile
platforms: linux/amd64
- flavor: alpine-apk
arch: arm64
dockerfile: alpine-apk/Dockerfile
platforms: linux/arm64
# --- Rocky Linux ---
- flavor: rocky
arch: amd64
dockerfile: fedora/Dockerfile
platforms: linux/amd64
build-args: |
RESTY_IMAGE_BASE=rockylinux/rockylinux
RESTY_IMAGE_TAG=9.6
RESTY_YUM_REPO=https://openresty.org/package/rocky/openresty2.repo
RESTY_RPM_DIST=el9
RESTY_DNF_NO_REPOFILE=1
- flavor: rocky
arch: arm64
dockerfile: fedora/Dockerfile
platforms: linux/arm64
build-args: |
RESTY_IMAGE_BASE=rockylinux/rockylinux
RESTY_IMAGE_TAG=9.6
RESTY_YUM_REPO=https://openresty.org/package/rocky/openresty2.repo
RESTY_RPM_DIST=el9
RESTY_RPM_ARCH=aarch64
RESTY_DNF_NO_REPOFILE=1
# --- Fedora ---
# Note: fedora-aarch64 is commented out in Travis CI
- flavor: fedora
arch: amd64
dockerfile: fedora/Dockerfile
platforms: linux/amd64
# --- Debian Bookworm ---
- flavor: bookworm
arch: amd64
dockerfile: bookworm/Dockerfile
platforms: linux/amd64
- flavor: bookworm
arch: arm64
dockerfile: bookworm/Dockerfile
platforms: linux/arm64
build-args: |
RESTY_APT_REPO=https://openresty.org/package/arm64/debian
RESTY_APT_ARCH=arm64
# --- Debian Bookworm Buildpack ---
- flavor: bookworm-buildpack
arch: amd64
dockerfile: bookworm/Dockerfile.buildpack
platforms: linux/amd64
- flavor: bookworm-buildpack
arch: arm64
dockerfile: bookworm/Dockerfile.buildpack
platforms: linux/arm64
build-args: |
RESTY_APT_REPO=https://openresty.org/package/arm64/debian
RESTY_APT_ARCH=arm64
# --- Debian Bullseye ---
- flavor: bullseye
arch: amd64
dockerfile: bullseye/Dockerfile
platforms: linux/amd64
- flavor: bullseye
arch: arm64
dockerfile: bullseye/Dockerfile
platforms: linux/arm64
build-args: RESTY_APT_REPO=https://openresty.org/package/arm64/debian
# --- Debian Bullseye Debug ---
- flavor: bullseye-debug
arch: amd64
dockerfile: bullseye/Dockerfile.debug
platforms: linux/amd64
- flavor: bullseye-debug
arch: arm64
dockerfile: bullseye/Dockerfile.debug
platforms: linux/arm64
build-args: RESTY_APT_REPO=https://openresty.org/package/arm64/debian
# --- Debian Bullseye Valgrind ---
- flavor: bullseye-valgrind
arch: amd64
dockerfile: bullseye/Dockerfile.valgrind
platforms: linux/amd64
- flavor: bullseye-valgrind
arch: arm64
dockerfile: bullseye/Dockerfile.valgrind
platforms: linux/arm64
build-args: RESTY_APT_REPO=https://openresty.org/package/arm64/debian
# --- Ubuntu Jammy ---
- flavor: jammy
arch: amd64
dockerfile: jammy/Dockerfile
platforms: linux/amd64
- flavor: jammy
arch: arm64
dockerfile: jammy/Dockerfile
platforms: linux/arm64
- flavor: jammy
arch: s390x
dockerfile: jammy/Dockerfile
platforms: linux/s390x
# --- Ubuntu Noble ---
- flavor: noble
arch: amd64
dockerfile: noble/Dockerfile
platforms: linux/amd64
- flavor: noble
arch: arm64
dockerfile: noble/Dockerfile
platforms: linux/arm64
- flavor: noble
arch: s390x
dockerfile: noble/Dockerfile
platforms: linux/s390x
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_PASSWORD }}
- name: Login to Docker Mirror
if: vars.ENABLE_DOCKERHUB_MIRROR == 'true'
uses: docker/login-action@v4
with:
registry: ${{ env.DOCKERHUB_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels)
id: meta
uses: docker/metadata-action@v6
with:
images: |
${{ env.GHCR_IMAGE }}
flavor: |
latest=false
tags: |
type=raw,value=${{ matrix.flavor }}-${{ matrix.arch }},enable=${{ github.ref == 'refs/heads/master' }}
type=ref,event=tag,suffix=-${{ matrix.flavor }}-${{ matrix.arch }}
type=match,pattern=^(.*)-[0-9]+$,group=1,suffix=-${{ matrix.flavor }}-${{ matrix.arch }}
- name: Build and push
uses: docker/build-push-action@v7
with:
context: .
file: ${{ matrix.dockerfile }}
platforms: ${{ matrix.platforms }}
build-args: ${{ matrix.build-args }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
# Docker Hub mirror push - separate step
- name: Tag and Push to Docker Hub Mirror
if: vars.ENABLE_DOCKERHUB_MIRROR == 'true'
run: |
echo "${{ steps.meta.outputs.tags }}" | while read -r TAG; do
if [ -n "$TAG" ]; then
DOCKERHUB_TAG=$(echo "$TAG" | sed "s|${{ env.GHCR_IMAGE }}|${{ env.DOCKERHUB_IMAGE }}|")
docker buildx imagetools create -t "$DOCKERHUB_TAG" "$TAG"
fi
done
manifest:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
flavor:
- alma
- alpine
- alpine-slim
- alpine-apk
- rocky
- fedora
- bookworm
- bookworm-buildpack
- bullseye
- bullseye-debug
- bullseye-valgrind
- jammy
- noble
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_PASSWORD }}
- name: Login to Docker Hub (Mirror)
if: vars.ENABLE_DOCKERHUB_MIRROR == 'true'
uses: docker/login-action@v4
with:
registry: ${{ env.DOCKERHUB_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Create and Push Manifest
run: ./scripts/create-manifest.sh "${{ matrix.flavor }}" "${{ env.GHCR_IMAGE }}" "${{ env.DOCKERHUB_IMAGE }}" "${{ vars.ENABLE_DOCKERHUB_MIRROR }}"
build-fat:
needs: manifest
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- flavor: bookworm-fat
base_flavor: bookworm
arch: amd64
dockerfile: bookworm/Dockerfile.fat
platforms: linux/amd64
- flavor: bookworm-fat
base_flavor: bookworm
arch: arm64
dockerfile: bookworm/Dockerfile.fat
platforms: linux/arm64
- flavor: bullseye-fat
base_flavor: bullseye
arch: amd64
dockerfile: bullseye/Dockerfile.fat
platforms: linux/amd64
- flavor: bullseye-fat
base_flavor: bullseye
arch: arm64
dockerfile: bullseye/Dockerfile.fat
platforms: linux/arm64
- flavor: alpine-fat
base_flavor: alpine
arch: amd64
dockerfile: alpine/Dockerfile.fat
platforms: linux/amd64
- flavor: alpine-fat
base_flavor: alpine
arch: arm64
dockerfile: alpine/Dockerfile.fat
platforms: linux/arm64
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_PASSWORD }}
- name: Login to Docker Hub (Mirror)
if: vars.ENABLE_DOCKERHUB_MIRROR == 'true'
uses: docker/login-action@v4
with:
registry: ${{ env.DOCKERHUB_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Determine Fat Base Image
id: fat-base
run: |
TAG_PREFIX=""
if [[ "${{ github.ref_type }}" == "tag" ]]; then
TAG_PREFIX="${{ github.ref_name }}-"
fi
BASE_TAG="${TAG_PREFIX}${{ matrix.base_flavor }}"
echo "RESTY_FAT_IMAGE_TAG=$BASE_TAG" >> $GITHUB_ENV
echo "RESTY_FAT_IMAGE_BASE=${{ env.GHCR_IMAGE }}" >> $GITHUB_ENV
- name: Extract metadata
id: meta
uses: docker/metadata-action@v6
with:
images: |
${{ env.GHCR_IMAGE }}
flavor: |
latest=false
tags: |
type=raw,value=${{ matrix.flavor }}-${{ matrix.arch }},enable=${{ github.ref == 'refs/heads/master' }}
type=ref,event=tag,suffix=-${{ matrix.flavor }}-${{ matrix.arch }}
type=match,pattern=^(.*)-[0-9]+$,group=1,suffix=-${{ matrix.flavor }}-${{ matrix.arch }}
- name: Build and push
uses: docker/build-push-action@v7
with:
context: .
file: ${{ matrix.dockerfile }}
platforms: ${{ matrix.platforms }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
RESTY_FAT_IMAGE_BASE=${{ env.RESTY_FAT_IMAGE_BASE }}
RESTY_FAT_IMAGE_TAG=${{ env.RESTY_FAT_IMAGE_TAG }}
# Mirror registry push
- name: Tag and Push to Mirror
if: vars.ENABLE_DOCKERHUB_MIRROR == 'true'
run: |
echo "${{ steps.meta.outputs.tags }}" | while read -r TAG; do
if [ -n "$TAG" ]; then
MIRROR_TAG=$(echo "$TAG" | sed "s|${{ env.GHCR_IMAGE }}|${{ env.DOCKERHUB_IMAGE }}|")
docker buildx imagetools create -t "$MIRROR_TAG" "$TAG"
fi
done
# Windows disabled for now
# build-windows:
# runs-on: ${{ matrix.runner }}
# strategy:
# fail-fast: false
# matrix:
# include:
# - windows-version: ltsc2019
# runner: windows-2019
# install-tag: 4.8-windowsservercore-ltsc2019
# image-tag: 1809
# - windows-version: ltsc2022
# runner: windows-2022
# install-tag: 4.8-windowsservercore-ltsc2022
# image-tag: ltsc2022
# steps:
# - name: Checkout
# uses: actions/checkout@v5
# - name: Start Docker service
# run: |
# Start-Service docker
# docker info
# - name: Login to GitHub Container Registry
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{ secrets.GHCR_USERNAME }}
# password: ${{ secrets.GHCR_PASSWORD }}
# - name: Login to Docker Hub (Mirror)
# if: vars.ENABLE_DOCKERHUB_MIRROR == 'true'
# uses: docker/login-action@v3
# with:
# registry: ${{ env.DOCKERHUB_REGISTRY }}
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}
# - name: Build Windows image
# run: |
# docker build --pull `
# --build-arg RESTY_INSTALL_TAG=${{ matrix.install-tag }} `
# --build-arg RESTY_IMAGE_TAG=${{ matrix.image-tag }} `
# -t ${{ env.GHCR_IMAGE }}:windows-${{ matrix.windows-version }} `
# -f windows/Dockerfile .
# - name: Smoke test
# run: docker run --rm ${{ env.GHCR_IMAGE }}:windows-${{ matrix.windows-version }} nginx -vt
# - name: Extract metadata (tags)
# id: meta
# shell: bash
# run: |
# TAGS="${{ env.GHCR_IMAGE }}:windows-${{ matrix.windows-version }}"
# if [[ "${{ github.ref_type }}" == "tag" ]]; then
# TAGS="$TAGS,${{ env.GHCR_IMAGE }}:${{ github.ref_name }}-windows-${{ matrix.windows-version }}"
# fi
# echo "tags=$TAGS" >> $GITHUB_OUTPUT
# - name: Push to GHCR
# shell: bash
# run: |
# IFS=',' read -ra TAG_ARRAY <<< "${{ steps.meta.outputs.tags }}"
# for TAG in "${TAG_ARRAY[@]}"; do
# docker tag "${{ env.GHCR_IMAGE }}:windows-${{ matrix.windows-version }}" "$TAG"
# docker push "$TAG"
# done
# - name: Push to Docker Hub Mirror
# if: vars.ENABLE_DOCKERHUB_MIRROR == 'true'
# shell: bash
# run: |
# IFS=',' read -ra TAG_ARRAY <<< "${{ steps.meta.outputs.tags }}"
# for TAG in "${TAG_ARRAY[@]}"; do
# MIRROR_TAG=$(echo "$TAG" | sed "s|${{ env.GHCR_IMAGE }}|${{ env.DOCKERHUB_IMAGE }}|")
# docker tag "${{ env.GHCR_IMAGE }}:windows-${{ matrix.windows-version }}" "$MIRROR_TAG"
# docker push "$MIRROR_TAG"
# done
# manifest-windows:
# needs: build-windows
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v5
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Login to GitHub Container Registry
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{ secrets.GHCR_USERNAME }}
# password: ${{ secrets.GHCR_PASSWORD }}
# - name: Login to Docker Hub (Mirror)
# if: vars.ENABLE_DOCKERHUB_MIRROR == 'true'
# uses: docker/login-action@v3
# with:
# registry: ${{ env.DOCKERHUB_REGISTRY }}
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}
# - name: Create and push Windows manifest
# run: |
# TAG_PREFIX=""
# if [[ "${{ github.ref_type }}" == "tag" ]]; then
# TAG_PREFIX="${{ github.ref_name }}-"
# fi
# docker buildx imagetools create \
# -t "${{ env.GHCR_IMAGE }}:${TAG_PREFIX}windows" \
# "${{ env.GHCR_IMAGE }}:${TAG_PREFIX}windows-ltsc2019" \
# "${{ env.GHCR_IMAGE }}:${TAG_PREFIX}windows-ltsc2022"
# if [[ "${{ vars.ENABLE_DOCKERHUB_MIRROR }}" == "true" ]]; then
# docker buildx imagetools create \
# -t "${{ env.DOCKERHUB_IMAGE }}:${TAG_PREFIX}windows" \
# "${{ env.GHCR_IMAGE }}:${TAG_PREFIX}windows-ltsc2019" \
# "${{ env.GHCR_IMAGE }}:${TAG_PREFIX}windows-ltsc2022"
# fi
manifest-fat:
needs: build-fat
runs-on: ubuntu-latest
strategy:
matrix:
flavor: [bookworm-fat, bullseye-fat, alpine-fat]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_PASSWORD }}
- name: Login to Docker Hub (Mirror)
if: vars.ENABLE_DOCKERHUB_MIRROR == 'true'
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Create and Push Manifest
run: ./scripts/create-manifest.sh "${{ matrix.flavor }}" "${{ env.GHCR_IMAGE }}" "${{ env.DOCKERHUB_IMAGE }}" "${{ vars.ENABLE_DOCKERHUB_MIRROR }}"