ci: fix network for static build
This commit is contained in:
parent
e02ff7ec30
commit
4d835b18cc
|
@ -1,6 +1,6 @@
|
||||||
# passbook
|
# passbook
|
||||||
|
|
||||||
![](https://img.shields.io/github/workflow/status/beryju/passbook/passbook-ci?style=flat-square)
|
![](https://img.shields.io/azure-devops/build/beryjuorg/5d94b893-6dea-4f68-a8fe-10f1674fc3a9/1?style=flat-square)
|
||||||
![](https://img.shields.io/docker/pulls/beryju/passbook.svg?style=flat-square)
|
![](https://img.shields.io/docker/pulls/beryju/passbook.svg?style=flat-square)
|
||||||
![](https://img.shields.io/docker/pulls/beryju/passbook-gatekeeper.svg?style=flat-square)
|
![](https://img.shields.io/docker/pulls/beryju/passbook-gatekeeper.svg?style=flat-square)
|
||||||
![](https://img.shields.io/docker/pulls/beryju/passbook-static.svg?style=flat-square)
|
![](https://img.shields.io/docker/pulls/beryju/passbook-static.svg?style=flat-square)
|
||||||
|
|
|
@ -181,10 +181,20 @@ stages:
|
||||||
dockerComposeFile: 'scripts/docker-compose.yml'
|
dockerComposeFile: 'scripts/docker-compose.yml'
|
||||||
action: 'Run services'
|
action: 'Run services'
|
||||||
buildImages: false
|
buildImages: false
|
||||||
|
- task: CmdLine@2
|
||||||
|
inputs:
|
||||||
|
script: docker network ls
|
||||||
- task: Docker@2
|
- task: Docker@2
|
||||||
inputs:
|
inputs:
|
||||||
containerRegistry: 'dockerhub'
|
containerRegistry: 'dockerhub'
|
||||||
repository: 'beryju/passbook-static'
|
repository: 'beryju/passbook-static'
|
||||||
command: 'buildAndPush'
|
command: 'build'
|
||||||
Dockerfile: 'static.Dockerfile'
|
Dockerfile: 'static.Dockerfile'
|
||||||
tags: '$(Build.SourceBranchName)'
|
tags: '$(Build.SourceBranchName)'
|
||||||
|
arguments: "--network=$(docker network ls | grep github | awk '{print $1}')"
|
||||||
|
- task: Docker@2
|
||||||
|
inputs:
|
||||||
|
containerRegistry: 'dockerhub'
|
||||||
|
repository: 'beryju/passbook-static'
|
||||||
|
command: 'push'
|
||||||
|
tags: '$(Build.SourceBranchName)'
|
||||||
|
|
Reference in a new issue