-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloudbuild.pickware-io.yaml
27 lines (24 loc) · 1.09 KB
/
cloudbuild.pickware-io.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
steps:
# This old MySQL versions cannot be built anymore. Existing image is still available in the Google Cloud
# Artifact Repository.
# - name: 'gcr.io/cloud-builders/docker'
# args: ['build', '-t', 'eu.gcr.io/pickware-io/mysql:5.7', '.']
# dir: '5.7'
- name: 'gcr.io/cloud-builders/docker'
args: ['build', '-t', 'eu.gcr.io/pickware-io/mysql:8.0', '.']
dir: '8.0'
# These old mariadb versions cannot be built anymore. Existing images are still available in the Google Cloud
# Artifact Repository.
# - name: 'gcr.io/cloud-builders/docker'
# args: ['build', '-t', 'eu.gcr.io/pickware-io/mysql:mariadb-10.2.17', '.']
# dir: 'mariadb-10.2.17'
# - name: 'gcr.io/cloud-builders/docker'
# args: ['build', '-t', 'eu.gcr.io/pickware-io/mysql:mariadb-10.2.23', '.']
# dir: 'mariadb-10.2.23'
- name: 'gcr.io/cloud-builders/docker'
args: ['build', '-t', 'eu.gcr.io/pickware-io/mysql:mariadb-latest', '.']
dir: 'mariadb-latest'
images:
# - 'eu.gcr.io/pickware-io/mysql:5.7'
- 'eu.gcr.io/pickware-io/mysql:8.0'
- 'eu.gcr.io/pickware-io/mysql:mariadb-latest'