Downloading Files with Dragonfly
Things are done differently when you download container images and download general files with Dragonfly.
Prerequisites
You are using Linux operating system.
You have installed Python 2.7+, and added the Python directory to the
PATH
environment variable.The SuperNode service is started.
Tip: For more information on the dfget command, see dfget. For more information on the installation of supernodes, see Installing Server.
Downloading container images
Specify the supernodes.
a. Open the Dragonfly configuration file.
vi /etc/dragonfly.conf
b. Add the IP of supernodes separated by comma to the configuration file.
[node]
address=nodeIp1,nodeIp2
Start the dfget proxy (dfdaemon).
# Start dfdaemon and specify the image repo URL. The default port is `65001`.
dfdaemon --registry https://xxx.xx.x
# Review dfdaemon logs
tailf ~/.small-dragonfly/logs/dfdaemon.log
Tip: To list all available parameters for dfdaemon, run
dfdeaemon -h
.Configure the Daemon Mirror.
a. Modify the configuration file
/etc/docker/daemon.json
.vi /etc/docker/daemon.json
Tip: For more information on
/etc/docker/daemon.json
, see Docker documentation.b. Add or update the configuration item
registry-mirrors
in the configuration file."registry-mirrors": ["http://127.0.0.1:65001"]
c. Restart Docker daemon.
systemctl restart docker
Download an image with Dragonfly.
docker pull {imageName}
Note: Don’t include the image repo URL in {imageName}, because the repo URL has been specified with the
registry
parameter when starting dfdaemon.
Downloading General Files
Specify the supernodes in one of the following ways.
Specifying with the configuration file.
# Open the Dragonfly configuration file.
vi /etc/dragonfly.conf
# Add the IP of supernodes separated by comma to the configuration file
[node]
address=nodeIp1,nodeIp2
Specifying with the parameter in the command line.
dfget -u "http://www.taobao.com" -o /tmp/test.html --node nodeIp1,nodeIp2
Note: When using this method, you must add the
node
parameter every time when you run the dfget command. And the parameter in the command line takes precedence over the configuration file.
Download general files with Dragonfly in one of the following ways.
Download files with the default
/etc/dragonfly.conf
configuration.dfget --url "http://xxx.xx.x"
Tip: To list all available parameters for dfget, run
dfget -h
.Download files with your specified supernodes.
dfget --url "http://xxx.xx.x" --node "127.0.0.1"
Download files to your specified output file.
dfget --url "http://xxx.xx.x" -o a.txt
After this Task
To review the downloading log, run less ~/.small-dragonfly/logs/dfclient.log
.