I have a TeamCity Build Status Icon in github README.md which looks as follows
[![Build Status](http://<internal-tc-server>:8111/app/rest/builds/buildType:(id:BuildID)/statusIcon)](http://<internal-tc-server>/viewType.html?buildTypeId=BuildID&guest=1)
Looks like Github caches the images in README.md and the new image src url looks as follows.
<img src="https://github-camo.global.ssl.fastly.net/xxx/yyy"/>
Since the teamcity url is within our internal network, github will not be able to access it and cant cache it properly. So, I don't see any image in the README. Is there any Image tag that I can use to disable the automatic github image caching?
https://<public_server>/images/<build_id>?token=<random_token>
). – Pompadour