You can configure DTR to store Docker images in an NFS directory. Starting in DTR 2.6, changing storage backends involves initializing a new metadatastore instead of reusing an existing volume. This helps facilitate online garbage collection. See changes to NFS reconfiguration below if you have previously configured DTR to use NFS.
Before installing or configuring DTR to use an NFS directory, make sure that:
To confirm that the hosts can connect to the NFS server, try to list the directories exported by your NFS server:
showmount -e <nfsserver>
You should also try to mount one of the exported directories:
mkdir /tmp/mydir && sudo mount -t nfs <nfs server>:<directory> /tmp/mydir
One way to configure DTR to use an NFS directory is at install time:
docker run -it --rm docker/dtr:2.7.5 install \
--nfs-storage-url <nfs-storage-url> \
<other options>
Use the format nfs://<nfs server>/<directory>
for the NFS storage
URL. To support NFS v4, you can now specify additional options when
running docker/dtr install with
--nfs-storage-url
.
When joining replicas to a DTR cluster, the replicas will pick up your storage configuration, so you will not need to specify it again.
To support NFS v4, more NFS options have been added to the CLI. See New Features for 2.6.0 - CLI for updates to docker/dtr reconfigure.
Warning
When running DTR 2.5 (with experimental online garbage collection) and 2.6.0
to 2.6.3, there is an issue with reconfiguring and restoring DTR with
–nfs-storage-url which leads to erased tags. Make sure to
back up your DTR metadata before you proceed.
To work around the --nfs-storage-url
flag issue, manually create a
storage volume. If DTR is already installed in your cluster, reconfigure
DTR<dtr-cli-reconfigure> with the --dtr-storage-volume
flag using your
newly-created volume.
See Reconfigure Using a Local NFS Volume for Docker’s recommended recovery strategy.
In DTR 2.6.4, a new flag, --storage-migrated
, has been added to
docker/dtr reconfigure which lets you indicate the
migration status of your storage data during a reconfigure. Upgrade to
2.6.4<dtr-cli-upgrade and follow Best practice for data migration
in 2.6.4 when switching storage backends.
The following shows you how to reconfigure DTR using an NFSv4 volume as a
storage backend:
docker run --rm -it \
docker/dtr:{{ page.dtr_version}} reconfigure \
--ucp-url <ucp_url> \
--ucp-username <ucp_username> \
--nfs-storage-url <dtr-registry-nf>
--async-nfs
--storage-migrated
To reconfigure DTR to stop using NFS storage, leave the
--nfs-storage-url
option blank:
docker run -it --rm docker/dtr:{{ page.dtr_version}} reconfigure \
--nfs-storage-url ""