-
-
Notifications
You must be signed in to change notification settings - Fork 3k
113 lines (99 loc) · 3.44 KB
/
docker-image.yml
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
name: Docker Push
on:
workflow_dispatch:
push:
branches:
- 'master'
- 'bifrost-*'
- 'ci-docker-test'
tags:
- 'v*'
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
docker-hub:
if: github.repository == 'ipfs/kubo' || github.event_name == 'workflow_dispatch'
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
timeout-minutes: 90
env:
IMAGE_NAME: ipfs/kubo
LEGACY_IMAGE_NAME: ipfs/go-ipfs
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Get tags
id: tags
run: |
echo "value<<EOF" >> $GITHUB_OUTPUT
./bin/get-docker-tags.sh "$(date -u +%F)" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
shell: bash
- name: Log in to Docker Hub
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
with:
username: ${{ vars.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Docker image (linux/amd64)
uses: docker/build-push-action@v4
with:
platforms: linux/amd64
context: .
push: false
load: true
file: ./Dockerfile
tags: ${{ env.IMAGE_NAME }}:linux-amd64
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
# - name: Build Docker image (linux/arm/v7)
# uses: docker/build-push-action@v4
# with:
# platforms: linux/arm/v7
# context: .
# push: false
# load: true
# file: ./Dockerfile
# tags: ${{ env.IMAGE_NAME }}:linux-arm-v7
# cache-from: type=local,src=/tmp/.buildx-cache
# cache-to: type=local,dest=/tmp/.buildx-cache-new
# - name: Build Docker image (linux/arm64/v8)
# uses: docker/build-push-action@v4
# with:
# platforms: linux/arm64/v8
# context: .
# push: false
# load: true
# file: ./Dockerfile
# tags: ${{ env.IMAGE_NAME }}:linux-arm64-v8
# cache-from: type=local,src=/tmp/.buildx-cache
# cache-to: type=local,dest=/tmp/.buildx-cache-new
- run: docker run --rm $IMAGE_NAME:linux-amd64 --version
# - run: docker run --rm $IMAGE_NAME:linux-arm-v7 --version
# - run: docker run --rm $IMAGE_NAME:linux-arm64-v8 --version
# - name: Publish to Docker Hub
# uses: docker/build-push-action@v4
# with:
# platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
# context: .
# push: true
# file: ./Dockerfile
# tags: "${{ steps.tags.outputs.value }}"
# cache-from: type=local,src=/tmp/.buildx-cache-new
# cache-to: type=local,dest=/tmp/.buildx-cache-new
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
- name: Move cache to limit growth
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache