Build and push docker image to hub
parent
92abd3d6d6
commit
0d36fe3563
|
@ -1,5 +1,12 @@
|
||||||
version: 2
|
version: 2
|
||||||
jobs:
|
jobs:
|
||||||
|
dockerhubupload:
|
||||||
|
machine: true
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run: docker build -f docker/Dockerfile -t matrixdotorg/synapse:$CIRCLE_TAG .
|
||||||
|
- run: docker login --username matrixdotorg --password $DOCKER_HUB_PASSWORD
|
||||||
|
- run: docker push
|
||||||
sytestpy2:
|
sytestpy2:
|
||||||
machine: true
|
machine: true
|
||||||
steps:
|
steps:
|
||||||
|
@ -131,3 +138,7 @@ workflows:
|
||||||
filters:
|
filters:
|
||||||
branches:
|
branches:
|
||||||
ignore: /develop|master|release-.*/
|
ignore: /develop|master|release-.*/
|
||||||
|
- dockerhub:
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /v[0-9].[0-9]+.[0-9]+(.[0-9]+)?/
|
||||||
|
|
Loading…
Reference in New Issue