-
-
Notifications
You must be signed in to change notification settings - Fork 80
56 lines (50 loc) · 1.72 KB
/
master.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
name: Docker Compose push (master)
on:
push:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-cpu:
name: Build and publish CPU images
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Docker login
uses: Azure/docker-login@v1
with:
# Container registry username
username: ${{ secrets.DOCKER_USERNAME }}
# Container registry password
password: ${{ secrets.DOCKER_TOKEN }}
# Container registry server url
login-server: https://index.docker.io/v1/
- name: Build images (latest)
run: docker-compose -f docker-compose.yml -f docker-compose.build.yml build
- name: Push images to Docker Hub (latest)
run: docker-compose -f docker-compose.yml -f docker-compose.build.yml push
env:
DOCKER_CLIENT_TIMEOUT: 180
COMPOSE_HTTP_TIMEOUT: 180
build-gpu:
name: Build and publish GPU images
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Docker login
uses: Azure/docker-login@v1
with:
# Container registry username
username: ${{ secrets.DOCKER_USERNAME }}
# Container registry password
password: ${{ secrets.DOCKER_TOKEN }}
# Container registry server url
login-server: https://index.docker.io/v1/
- name: Build GPU images (latest)
run: docker-compose -f docker-compose.gpu.yml -f docker-compose.build.gpu.yml build api
- name: Push GPU images to Docker Hub (latest)
run: docker-compose -f docker-compose.gpu.yml -f docker-compose.build.gpu.yml push api
env:
DOCKER_CLIENT_TIMEOUT: 180
COMPOSE_HTTP_TIMEOUT: 180