You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
186 B

3 years ago
IMAGE="registry.bing89.com/tools/demo:1.0"
# Build the docker image
docker-build:
docker build . -t ${IMAGE}
# Push the docker image
docker-push: docker-build
docker push ${IMAGE}