How to run wget inside Ubuntu Docker image?

前端 未结 3 1990
情话喂你
情话喂你 2021-01-30 06:34

I\'m trying to download a Debian package inside a Ubuntu container as follows:

sudo docker run ubuntu:14.04 wget https://downloads-packages.s3.amazonaws.com/ubun         


        
3条回答
  •  天涯浪人
    2021-01-30 06:39

    If you're running ubuntu container directly without a local Dockerfile you can ssh into the container and enable root control by entering su then apt-get install -y wget

提交回复
热议问题