Added Docker automated build hook and readme badges for Docker

- Build arguments are injected by the build hook
- Badges added: number of pulls, stars and if the build is automated
This commit is contained in:
Quentin McGaw 2019-07-02 14:06:44 +02:00
parent 18d34d5c01
commit d78648cabb
2 changed files with 10 additions and 0 deletions

View File

@ -50,6 +50,10 @@ go get github.com/jesseduffield/lazydocker
### Docker
[![Docker Pulls](https://img.shields.io/docker/pulls/jesseduffield/lazydocker.svg)](https://hub.docker.com/r/jesseduffield/lazydocker)
[![Docker Stars](https://img.shields.io/docker/stars/jesseduffield/lazydocker.svg)](https://hub.docker.com/r/jesseduffield/lazydocker)
[![Docker Automated](https://img.shields.io/docker/cloud/automated/jesseduffield/lazydocker.svg)](https://hub.docker.com/r/jesseduffield/lazydocker)
1. <details><summary>Build it...</summary><p>
- If you have a x86_64 CPU architecture

6
hooks/build Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
docker build --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
--build-arg VCS_REF=`git rev-parse --short HEAD` \
--build-arg VERSION=`git describe --abbrev=0 --tag` \
-t $IMAGE_NAME .