# mirror Debian arm64 main pool to local ## Build ~~~bash docker build -t arm64-debmirror:1.0 . ~~~ ## Before RUN You need a large space for store all pool in local disk. Make sure that you have freespace above 200GB. For Example empty DIR /data/debian/mirror is on a SSD with 500GB freespace. ## RUN ~~~bash export MIRROR_DATA=/data/debian/mirror sudo docker run -it -v ${MIRROR_DATA}:/mirror arm64-debmirror:1.0 ~~~