You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/sh
- if [ $# -ne 1 ]; then
- echo "$0 <tag>"
- exit 0
- fi
-
- tag=$1
-
- echo "tag: ${tag}"
-
- rm -rf n9e pub
- cp ../n9e .
-
- docker build -t nightingale:${tag} .
-
- docker tag nightingale:${tag} ulric2019/nightingale:${tag}
- docker push ulric2019/nightingale:${tag}
-
- rm -rf n9e pub
|