You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"cloud not execute script! Please specify at least on environment variable of: GIT_BRANCH, TRAVIS_BRANCH"
10
+
exit -1
11
+
fi
12
+
13
+
echo"branch=$GIT_BRANCH"
14
+
GIT_BRANCH=${GIT_BRANCH/origin\/}
15
+
DOCKER_TAG="${GIT_BRANCH/refs\/tags\/}"
16
+
17
+
if [[ $DOCKER_TAG=="master" ]] ;then
18
+
echo"skip building latest tag!"
19
+
echo"... use 'tag_image.sh' script to release a new version. See: https://github.com/ConSol/docker-headless-vnc-container/blob/master/how-to-release.md"
20
+
exit 0
21
+
fi
22
+
23
+
echo"DOCKER_TAG=$DOCKER_TAG"
24
+
echo"..."
4
25
echo"trigger dockerhub builds for Tag $DOCKER_TAG:"
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,6 +138,9 @@ If you open some graphic/work intensive websites in the Docker container (especi
138
138
139
139
Thx @raghavkarol for the hint!
140
140
141
+
## How to release
142
+
See **[how-to-release.md](./how-to-release.md)**
143
+
141
144
## Contributors
142
145
143
146
At this point we want to thank all contributors, which helped to move this great project by submitting code, writing documentation, or adapting other tools to play well together with the docker headless container.
Copy file name to clipboardExpand all lines: changelog.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,13 @@
1
1
## Changelog of the Docker headless VNC images
2
2
3
+
### Version 1.4.0:
4
+
* added Github issue and pull request templates
5
+
* added install script for custom fonts ([#83](https://github.com/ConSol/docker-headless-vnc-container/issues/83)))
6
+
* fixed problem that VNC password was not properly set after doing a Docker commit ([#88](https://github.com/ConSol/docker-headless-vnc-container/issues/88))
7
+
* fixed some typos ([#87](https://github.com/ConSol/docker-headless-vnc-container/issues/87))
8
+
* added 'how-to-release' info ([#75](https://github.com/ConSol/docker-headless-vnc-container/issues/75))
* Check if all features are merged in dev and pushed
5
+
* Pull the latest `dev` images
6
+
7
+
.build/tag_image.sh dev 1.x.x --save
8
+
9
+
* Test if the latest `dev` build is usable
10
+
* Change the the `FROM` statement in Sakuli `Dockerfile` to `dev` tag (in separate branch) and run (after build on dockerhub) [`docker/.build/tag_image.sh --save`](https://github.com/ConSol/sakuli/blob/master/docker/.build/tag_image.sh)
11
+
12
+
* On success - push the tested `dev` images to dockerhub
13
+
14
+
.build/tag_image.sh dev 1.x.x
15
+
.build/tag_image.sh dev latest
16
+
17
+
* Merge `dev` branch to `master`
18
+
19
+
* Create a release on [github.com/ConSol/docker-headless-vnc-container/releases/new](https://github.com/ConSol/docker-headless-vnc-container/releases/new)
20
+
* Write a blog post for [labs.consol.de](https://labs.consol.de/)
0 commit comments