简体   繁体   中英

Docker build dockerfile

I am trying to build a docker image from dockerfile which I have written.

docker build -f ~/www/node-beta.dockerfile

This however results in the error:

docker: "build" requires 1 argument. See 'docker build --help'.
sudo docker build -t yee/haw -f ~/www/node-beta.dockerfile ~/www/

The docker build command always requires a location argument. In this case you should use ~/www/ as the for the location argument, and the file name, "node-beta.dockerfile" for the -f (filename) argument.

docker build -f node-beta.dockerfile ~/www

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM