File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -65,3 +65,22 @@ docker run -e CASSANDRA_CONSISTENCY=Quorum \ -- Default cassandra con
65
65
-e LOG_LEVEL=debug,info \ -- Logging level
66
66
ubercadence/server:<tag>
67
67
```
68
+ Update docker-compose.yml when releasing new version
69
+ =========================
70
+ 0 . Creat new version tag in the repo
71
+ 1 . Build the new docker image and push into docker hub
72
+ ``` bash
73
+ docker build . -t ubercadence/server:THE.LATEST.VERSION --build-arg git_branch=vTHE.LATEST.VERSION
74
+ docker push ubercadence/server:master
75
+ ```
76
+ 2 . Remember to update the docker-compose.yml to use latest version and check in to master
77
+ ``` yaml
78
+ cadence :
79
+ image : ubercadence/server:THE.LATEST.VERSION
80
+ ports
81
+ ```
82
+ 3 . Create the tar.gz file and upload to relase page
83
+ ``` bash
84
+ cd github.com/uber/cadence/docker
85
+ tar -cvf docker.tar.gz *
86
+ ```
You can’t perform that action at this time.
0 commit comments