Compare commits
No commits in common. "3e27d9bf2606fca29f3cf19fc0e830101e44fc79" and "9cbf6878fda4661cf5115c2ab97a6d54e204c8cc" have entirely different histories.
3e27d9bf26
...
9cbf6878fd
18
Dockerfile
18
Dockerfile
@ -3,27 +3,11 @@ FROM phusion/baseimage:0.11
|
|||||||
VOLUME /var/mirror
|
VOLUME /var/mirror
|
||||||
|
|
||||||
ENV MIRROR_ARCHITECTURES amd64
|
ENV MIRROR_ARCHITECTURES amd64
|
||||||
ENV UBUNTU_SOURCE_MIRROR
|
ENV SOURCE_MIRROR
|
||||||
ENV MIRROR_CATEGORIES main,universe,restricted,multiverse
|
ENV MIRROR_CATEGORIES main,universe,restricted,multiverse
|
||||||
ENV UBUNTU_MIRROR_SOURCE archive.ubuntu.com
|
ENV UBUNTU_MIRROR_SOURCE archive.ubuntu.com
|
||||||
ENV UBUNTU_MIRROR_PROJECTS bionic,bionic-updates,bionic-security,bionic-backports,focal,focal-updates,focal-security,focal-backports
|
ENV UBUNTU_MIRROR_PROJECTS bionic,bionic-updates,bionic-security,bionic-backports,focal,focal-updates,focal-security,focal-backports
|
||||||
|
|
||||||
# The following is the URL populated in /mirrors.txt as used by mirror://
|
|
||||||
# protocol scheme in sources.list
|
|
||||||
# the idea is that you can DNS rewrite 'mirrors.ubuntu.com' to this mirror
|
|
||||||
# and it will return a "list" of mirrors that includes only itself.
|
|
||||||
# then you can safely use something like the following in your sources.list
|
|
||||||
# and it will work with max speed on your own dns-rewritten lan and in the
|
|
||||||
# unmodified datacenter talking to the real mirrors.ubuntu.com:
|
|
||||||
#
|
|
||||||
# MURM="main universe restricted multiverse"
|
|
||||||
# C="$(lsb_release -cs)"
|
|
||||||
# M="mirror://mirrors.ubuntu.com/mirrors.txt"
|
|
||||||
# echo "deb $M $C $MURM" > /etc/apt/sources.list.new
|
|
||||||
# echo "deb $M $C-updates $MURM" >> /etc/apt/sources.list.new
|
|
||||||
# echo "deb $M $C-backports $MURM" >> /etc/apt/sources.list.new
|
|
||||||
# echo "deb $M $C-security $MURM" >> /etc/apt/sources.list.new
|
|
||||||
# mv /etc/apt/sources.list.new /etc/apt/sources.list
|
|
||||||
ENV THIS_MIRROR_URL http://172.17.0.1/ubuntu/
|
ENV THIS_MIRROR_URL http://172.17.0.1/ubuntu/
|
||||||
|
|
||||||
ADD ./sources.list /etc/apt/sources.list
|
ADD ./sources.list /etc/apt/sources.list
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
docker rm -f local-ubuntu-mirror
|
|
||||||
docker run -d --name local-ubuntu-mirror \
|
|
||||||
-v /storage/mirrors/ubuntu:/var/mirror/ubuntu \
|
|
||||||
--env MIRROR_INTERVAL_SECONDS=10800 \
|
|
||||||
--env MIRROR_ARCHITECTURES=amd64 \
|
|
||||||
--dns 8.8.8.8 \
|
|
||||||
--dns 8.8.4.4 \
|
|
||||||
-p 8080:80 \
|
|
||||||
--restart unless-stopped \
|
|
||||||
sneak/ubuntumirror:latest
|
|
@ -4,24 +4,19 @@ set -x
|
|||||||
THISDIR="$(cd $(dirname "$BASH_SOURCE") && pwd -P)"
|
THISDIR="$(cd $(dirname "$BASH_SOURCE") && pwd -P)"
|
||||||
DST="/var/mirror"
|
DST="/var/mirror"
|
||||||
|
|
||||||
echo "$THIS_MIRROR_URL" > $DST/mirrors.txt
|
echo "http://172.17.0.1/ubuntu/" > $DST/mirrors.txt
|
||||||
chmod a+r $DST/mirrors.txt
|
chmod a+r $DST/mirrors.txt
|
||||||
|
|
||||||
mkdir -p "$DST/ubuntu"
|
mkdir -p "$DST/ubuntu"
|
||||||
|
|
||||||
export GNUPGHOME="/etc/debmirror/ubuntu"
|
export GNUPGHOME="/etc/debmirror/ubuntu"
|
||||||
|
|
||||||
SOURCEOPT="--nosource"
|
|
||||||
if [[ ! -z "$UBUNTU_SOURCE_MIRROR" ]]; then
|
|
||||||
SOURCEOPT="--source"
|
|
||||||
fi
|
|
||||||
|
|
||||||
debmirror \
|
debmirror \
|
||||||
-a ${MIRROR_ARCHITECTURES} \
|
-a ${MIRROR_ARCHITECTURES:-amd64} \
|
||||||
$SOURCEOPT \
|
--no-source \
|
||||||
-s ${MIRROR_CATEGORIES} \
|
-s ${MIRROR_CATEGORIES:-main,universe,multiverse,restricted} \
|
||||||
-h ${UBUNTU_MIRROR_SOURCE} \
|
-h ${UBUNTU_MIRROR_SOURCE:-archive.ubuntu.com} \
|
||||||
-d ${UBUNTU_MIRROR_PROJECTS} \
|
-d ${UBUNTU_MIRROR_PROJECTS:-focal,focal-updates,focal-security,focal-backports} \
|
||||||
--ignore-small-errors \
|
--ignore-small-errors \
|
||||||
-r /ubuntu \
|
-r /ubuntu \
|
||||||
--getcontents \
|
--getcontents \
|
||||||
|
15
start-local-mirror.sh
Normal file
15
start-local-mirror.sh
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
docker rm -f local-ubuntu-mirror
|
||||||
|
docker run -d --name local-ubuntu-mirror \
|
||||||
|
-v /storage/mirrors/ubuntu/ubuntu:/var/mirror/ubuntu \
|
||||||
|
--env UBUNTU_MIRROR_SOURCE=archive.ubuntu.com \
|
||||||
|
--env MIRROR_INTERVAL_SECONDS=10800 \
|
||||||
|
--env MIRROR_CATEGORIES=main,universe,restricted,multiverse \
|
||||||
|
--env MIRROR_ARCHITECTURES=amd64 \
|
||||||
|
--env UBUNTU_MIRROR_PROJECTS=bionic,bionic-updates,bionic-security,bionic-backports,focal,focal-updates,focal-security,focal-backports \
|
||||||
|
--dns 8.8.8.8 \
|
||||||
|
--dns 8.8.4.4 \
|
||||||
|
-p 172.17.0.1:80:80 \
|
||||||
|
--restart unless-stopped \
|
||||||
|
sneak/ubuntumirror:latest
|
Loading…
Reference in New Issue
Block a user