2 Star 7 Fork 10

张恒 / log-pilot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build-image.sh 244 Bytes
一键复制 编辑 原始数据 按行查看 历史
张恒 提交于 2020-06-19 18:13 . #add
#!/usr/bin/env bash
#
# build docker image
#
build()
{
echo -e "building image: log-pilot:latest\n"
docker build -t log-pilot:latest -f Dockerfile.$1 .
}
case $1 in
fluentd)
build fluentd
;;
*)
build filebeat
;;
esac
Go
1
https://gitee.com/zhang-git/log-pilot.git
git@gitee.com:zhang-git/log-pilot.git
zhang-git
log-pilot
log-pilot
master

搜索帮助