1 Star 0 Fork 0

piao/href-counter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run.sh 669 Bytes
一键复制 编辑 原始数据 按行查看 历史
phil.wang 提交于 2019-08-12 20:01 . add
#!/bin/bash
#https://github.com/alexellis/href-counter
#https://docs.docker.com/develop/develop-images/multistage-build/
set -e
IMAGE=alexellis2/href-counter:build
CONTAINER=alexellis2_href_counter_build
pull() {
docker pull golang:1.12.1
}
build() {
docker build -t ${IMAGE} . -f Dockerfile.build
}
start() {
docker run --rm -tid -p 8088:8088 --name ${CONTAINER} ${IMAGE}
}
stop() {
docker stop ${CONTAINER}
}
logs() {
docker logs ${CONTAINER}
}
case $1 in
build)
build;;
start)
start;;
stop)
stop;;
test)
test;;
logs)
logs;;
*)
echo "./run.sh build|start|stop"
esac
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/piao/href-counter.git
git@gitee.com:piao/href-counter.git
piao
href-counter
href-counter
master

搜索帮助