├── Dockerfile └── .gitignore /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM prom/pushgateway 2 | 3 | # Since ENTRYPOINT is defined in the parent image and we want to get `$PORT` 4 | # from the shell, set it back to the default. 5 | ENTRYPOINT [] 6 | 7 | CMD /bin/pushgateway --web.listen-address=:$PORT 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/osx 3 | # Edit at https://www.gitignore.io/?templates=osx 4 | 5 | ### OSX ### 6 | # General 7 | .DS_Store 8 | .AppleDouble 9 | .LSOverride 10 | 11 | # Icon must end with two \r 12 | Icon 13 | 14 | # Thumbnails 15 | ._* 16 | 17 | # Files that might appear in the root of a volume 18 | .DocumentRevisions-V100 19 | .fseventsd 20 | .Spotlight-V100 21 | .TemporaryItems 22 | .Trashes 23 | .VolumeIcon.icns 24 | .com.apple.timemachine.donotpresent 25 | 26 | # Directories potentially created on remote AFP share 27 | .AppleDB 28 | .AppleDesktop 29 | Network Trash Folder 30 | Temporary Items 31 | .apdisk 32 | 33 | # End of https://www.gitignore.io/api/osx 34 | 35 | --------------------------------------------------------------------------------