-
Notifications
You must be signed in to change notification settings - Fork 1
99 lines (98 loc) · 3.73 KB
/
production_publish-image.yaml
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
name: "Update docker images (production)"
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: "41 9 * * *"
jobs:
# Republish the default caddy:2-alpine docker image on Quay.io
v2-alpine:
runs-on: ubuntu-latest
environment: Production
steps:
- name: "Login to ${{ vars.CI_REGISTRY }}"
uses: docker/login-action@v3
with:
registry: ${{ vars.CI_REGISTRY }}
username: ${{ secrets.CI_REGISTRY_USER }}
password: ${{ secrets.CI_REGISTRY_PASSWORD }}
- name: "Pull from Docker Hub and republish on Quay.io"
run: |
docker pull caddy:2-alpine
docker tag caddy:2-alpine ${{ vars.CI_REGISTRY_IMAGE }}:v2-alpine
docker push ${{ vars.CI_REGISTRY_IMAGE }}:v2-alpine
# Build a custom Caddy docker image with the modules listed below & push it to Quay.io
# * dns.providers.cloudflare: https://github.com/caddy-dns/cloudflare
v2-alpine_cloudflare:
runs-on: ubuntu-latest
environment: Production
steps:
- name: "Login to ${{ vars.CI_REGISTRY }}"
uses: docker/login-action@v3
with:
registry: ${{ vars.CI_REGISTRY }}
username: ${{ secrets.CI_REGISTRY_USER }}
password: ${{ secrets.CI_REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
file: images/v2-alpine_cloudflare/Dockerfile
push: true
tags: ${{ vars.CI_REGISTRY_IMAGE }}:v2-alpine_cloudflare
# Build a custom Caddy docker image with the modules listed below & push it to Quay.io
# * http.handlers.rate_limit: https://github.com/mholt/caddy-ratelimit
v2-alpine_rate-limit:
runs-on: ubuntu-latest
environment: Production
steps:
- name: "Login to ${{ vars.CI_REGISTRY }}"
uses: docker/login-action@v3
with:
registry: ${{ vars.CI_REGISTRY }}
username: ${{ secrets.CI_REGISTRY_USER }}
password: ${{ secrets.CI_REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
file: images/v2-alpine_rate-limit/Dockerfile
push: true
tags: ${{ vars.CI_REGISTRY_IMAGE }}:v2-alpine_rate-limit
# Build a custom Caddy docker image with the modules listed below & push it to Quay.io
# * dns.providers.cloudflare: https://github.com/caddy-dns/cloudflare
# * http.handlers.rate_limit: https://github.com/mholt/caddy-ratelimit
v2-alpine_cloudflare_rate-limit:
runs-on: ubuntu-latest
environment: Production
steps:
- name: "Login to ${{ vars.CI_REGISTRY }}"
uses: docker/login-action@v3
with:
registry: ${{ vars.CI_REGISTRY }}
username: ${{ secrets.CI_REGISTRY_USER }}
password: ${{ secrets.CI_REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
file: images/v2-alpine_cloudflare_rate-limit/Dockerfile
push: true
tags: ${{ vars.CI_REGISTRY_IMAGE }}:v2-alpine_cloudflare_rate-limit
# Build a custom Caddy docker image with the modules listed below & push it to Quay.io
# * dns.providers.cloudns: https://github.com/anxuanzi/caddy-dns-ClouDNS
v2-alpine_cloudns:
runs-on: ubuntu-latest
environment: Production
steps:
- name: "Login to ${{ vars.CI_REGISTRY }}"
uses: docker/login-action@v3
with:
registry: ${{ vars.CI_REGISTRY }}
username: ${{ secrets.CI_REGISTRY_USER }}
password: ${{ secrets.CI_REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
file: images/v2-alpine_cloudns/Dockerfile
push: true
tags: ${{ vars.CI_REGISTRY_IMAGE }}:v2-alpine_cloudns