Compare commits

..

No commits in common. "master" and "20160411" have entirely different histories.

8 changed files with 69 additions and 145 deletions

View File

@ -1,18 +0,0 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
network_mode: bridge
settings:
repo: sneak/ubuntumirror
username:
from_secret: docker_username
password:
from_secret: docker_password
tags:
- ${DRONE_BRANCH//\//-}-${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_SHA}
- ${DRONE_BRANCH/\//-}
- latest

View File

@ -1,40 +1,13 @@
FROM phusion/baseimage:0.11 FROM phusion/baseimage:0.9.18
VOLUME /var/mirror VOLUME /var/mirror
ENV MIRROR_UPDATE_INTERVAL_SECONDS 43200
ENV UBUNTU_MIRROR_ARCHITECTURES amd64
# set to anything but 'false' to mirror source code as well
ENV UBUNTU_ENABLE_SOURCE_MIRRORING false
ENV UBUNTU_MIRROR_CATEGORIES main,universe,restricted,multiverse,main/debian-installer
ENV UBUNTU_MIRROR_UPSTREAM archive.ubuntu.com
ENV UBUNTU_MIRROR_UPSTREAM_PATH /ubuntu
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/
ADD ./sources.list /etc/apt/sources.list ADD ./sources.list /etc/apt/sources.list
RUN echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d RUN echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d
# phusion baseimage says i'm not supposed to do this # phusion baseimage says i'm not supposed to do this
# and i don't care: # and i don't care:
RUN apt-get update && apt-get upgrade -y RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y run-one nginx make debmirror xz-utils RUN apt-get install -y run-one nginx make debmirror
ADD ./mirror /opt/mirror ADD ./mirror /opt/mirror
ADD ./mirror.run /etc/service/mirror/run ADD ./mirror.run /etc/service/mirror/run
@ -49,7 +22,6 @@ RUN \
mkdir -p $GNUPGHOME && \ mkdir -p $GNUPGHOME && \
chmod go-rwx $GNUPGHOME && \ chmod go-rwx $GNUPGHOME && \
gpg --import /usr/share/keyrings/ubuntu-archive-keyring.gpg && \ gpg --import /usr/share/keyrings/ubuntu-archive-keyring.gpg && \
cp $GNUPGHOME/pubring.kbx $GNUPGHOME/trustedkeys.kbx cp $GNUPGHOME/pubring.gpg $GNUPGHOME/trustedkeys.gpg
EXPOSE 80 EXPOSE 80

View File

@ -1,70 +1,45 @@
# sneak/ubuntumirror # sneak/ubuntumirror
Docker image for syncing ubuntu LTS mirrors to reduce network traffic and Docker container for syncing trusty and xenial ubuntu LTS mirrors
speed up build times. to reduce network traffic and speed up build times.
Then even your builds (where you can't specify links to other containers by I recommend deploying this with a `--dns 172.17.0.1` in your
hostname) will go fast. `/etc/default/docker` and dnsmasq bound to 172.17.0.1:53 to rewrite
`archive.ubuntu.com` to `172.17.0.1` (which this image will be listening and
serving on).
Then even your builds (where you can't specify links) will go fast.
# Levers # Levers
## Paths * `MIRROR_ARCHITECTURES`
The mirror stores all the data in a docker volume at path
`/var/mirror/ubuntu`. Map that somewhere else if you like.
## Environment Variables
* `UBUNTU_MIRROR_ARCHITECTURES`
* default `amd64`. * default `amd64`.
* You may want `i386,amd64`. * You may want `i386,amd64`.
* `UBUNTU_MIRROR_CATEGORIES` * `MIRROR_CATEGORIES`
* Default `main,universe,restricted,multiverse`. Will use lots of disk. * default `main,universe`.
* You may want `main,universe`. * You may want `main,universe,restricted,multiverse`. Will use lots of
* `UBUNTU_MIRROR_PROJECTS` disk.
* Default * `UBUNTU_MIRROR_SOURCE`
`bionic,bionic-updates,bionic-security,bionic-backports,focal,focal-updates,focal-security,focal-backports`.
* You may want only `focal,focal-updates,focal-security,focal-backports`.
* `UBUNTU_MIRROR_UPSTREAM` - upstream server to mirror from
* default `archive.ubuntu.com`. * default `archive.ubuntu.com`.
* You may want `xx.archive.ubuntu.com` (where `xx` is your country * You may want `xx.archive.ubuntu.com` (where `xx` is your country
code). code).
* `UBUNTU_ENABLE_SOURCE_MIRRORING` - do we want to mirror all the source code too? * `MIRROR_INTERVAL_SECONDS` - mirror sync interval
* Default ``
* You may want `1` if you want to use up even more disk for your mirror
* `MIRROR_UPDATE_INTERVAL_SECONDS` - mirror update interval
* default `43200` (12h) * default `43200` (12h)
* You may want `10800` (3h) * You may want `10800` (3h)
# Example Startup # Example dnsmasq setup
``` ```
docker rm -f local-ubuntu-mirror apt-get update && apt-get -y install dnsmasq
docker run -d --name local-ubuntu-mirror \ cat > /etc/dnsmasq.d/docker <<EOF
-v /storage/mirrors/ubuntu:/var/mirror/ubuntu \ no-resolv
--env MIRROR_UPDATE_INTERVAL_SECONDS=3600 \ server=8.8.8.8
--env UBUNTU_MIRROR_ARCHITECTURES=amd64 \ server=8.8.4.4
--env UBUNTU_MIRROR_UPSTREAM=us.archive.ubuntu.com \ EOF
--env UBUNTU_MIRROR_PROJECTS=focal,focal-updates,focal-security,focal-backports \ echo "172.17.0.1 archive.ubuntu.com" >> /etc/hosts
-p 8080:80 \ service dnsmasq restart
--restart unless-stopped \
sneak/ubuntumirror@sha256:7de7cc8245106bb574029a2dedca5aa218af08d802b989cdc7857fb57f876a02
``` ```
# Example CapRover Definition File Then, just add `--dns 172.17.0.1` to your /etc/default/docker opts
and bounce the docker daemon. Future containers will talk to your local
``` mirror.
{
"schemaVersion": 2,
"imageName": "sneak/ubuntumirror@sha256:7de7cc8245106bb574029a2dedca5aa218af08d802b989cdc7857fb57f876a02"
}
```
# Author
sneak &lt;[sneak@sneak.berlin](mailto:sneak@sneak.berlin)&gt;
# License
This software is released into the public domain.

15
docker-compose.yml Normal file
View File

@ -0,0 +1,15 @@
version: '2.0'
services:
mirror:
hostname: mirror
image: sneak/ubuntumirror
build: .
network_mode: bridge
volumes:
- "/mnt/scratch/mirror:/var/mirror"
ports:
- "172.17.0.1:80:80"
environment:
- UBUNTU_MIRROR_SOURCE=de.archive.ubuntu.com
- MIRROR_CATEGORIES=main,universe,restricted

View File

@ -6,8 +6,8 @@ export HOME=/root
# cleanup previous runs # cleanup previous runs
rm -rf /var/mirror/ubuntu/.temp rm -rf /var/mirror/ubuntu/.temp
while sleep 1 ; do while true ; do
cd /opt/mirror && make cd /opt/mirror && make
sleep ${MIRROR_UPDATE_INTERVAL_SECONDS} sleep ${MIRROR_INTERVAL_SECONDS:-43200}
done done

37
mirror/syncubuntu.sh Normal file → Executable file
View File

@ -4,42 +4,25 @@ 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 [[ "$UBUNTU_ENABLE_SOURCE_MIRRORING" != "false" ]]; then
SOURCEOPT="--source"
fi
DONE=0
DIDIST="$(
echo -n "$UBUNTU_MIRROR_PROJECTS" | tr "," "\n" | grep -v "\-" | tr "\n" ","
)"
while [[ $DONE -eq 0 ]]; do
debmirror \ debmirror \
-a ${UBUNTU_MIRROR_ARCHITECTURES} \ -a ${MIRROR_ARCHITECTURES:-amd64} \
-s ${UBUNTU_MIRROR_CATEGORIES} \ --no-source \
-h ${UBUNTU_MIRROR_UPSTREAM} \ -s ${MIRROR_CATEGORIES:-main,universe} \
-d ${UBUNTU_MIRROR_PROJECTS} \ -h ${UBUNTU_MIRROR_SOURCE:-archive.ubuntu.com} \
$SOURCEOPT \ -d trusty,trusty-updates,trusty-security,trusty-backports \
--di-dist="$DIDIST" \ -d xenial,xenial-updates,xenial-security,xenial-backports \
--di-arch=arches \
--ignore-small-errors \ --ignore-small-errors \
-r "$UBUNTU_MIRROR_UPSTREAM_PATH" \ -r /ubuntu \
--getcontents \
--progress \ --progress \
--method=http \ --method=http \
$DST/ubuntu $DST/ubuntu
if [[ $? -eq 0 ]]; then
DONE=1
fi
chmod -R a+rX $DST chmod -R a+rX $DST
sleep 1
done

View File

@ -3,14 +3,11 @@ worker_processes auto;
pid /var/run/nginx.pid; pid /var/run/nginx.pid;
error_log /dev/stdout info;
events { events {
worker_connections 1024; worker_connections 1024;
} }
http { http {
access_log /dev/stdout;
include /etc/nginx/mime.types; include /etc/nginx/mime.types;
default_type application/octet-stream; default_type application/octet-stream;
@ -33,12 +30,12 @@ http {
index index.html index.htm; index index.html index.htm;
location /ubuntu/ { #location /ubuntu/ {
# # alias, not root! # # alias, not root!
# # trailing slash important! # # trailing slash important!
# alias /var/mirror/ubuntu/; # alias /var/mirror/ubuntu/;
autoindex on; # autoindex on;
} #}
} }
} }

View File

@ -1,4 +1,4 @@
deb mirror://mirrors.ubuntu.com/mirrors.txt bionic main universe restricted multiverse deb mirror://mirrors.ubuntu.com/mirrors.txt trusty main universe
deb mirror://mirrors.ubuntu.com/mirrors.txt bionic-updates main universe restricted multiverse deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-updates main universe
deb mirror://mirrors.ubuntu.com/mirrors.txt bionic-security main universe restricted multiverse deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-backports main universe
deb mirror://mirrors.ubuntu.com/mirrors.txt bionic-backports main universe restricted multiverse deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-security main universe