Compare commits
17 Commits
0b821850d2
...
prod
| Author | SHA1 | Date | |
|---|---|---|---|
| 46c0505f04 | |||
| b4c6017871 | |||
| 3b7d6a38e9 | |||
| 6f8da3c8e4 | |||
| caece7197d | |||
| c549c75107 | |||
| bc3736a5a4 | |||
| 6f8096650c | |||
| 2e84d93951 | |||
| be0d3cb859 | |||
| d402abd69b | |||
| a2b750a71e | |||
| 3b4e6fdc38 | |||
| 587425b1ed | |||
| 0d8f43c685 | |||
| 1256279e1c | |||
| 9217e7367e |
@@ -12,8 +12,7 @@ steps:
|
|||||||
password:
|
password:
|
||||||
from_secret: docker_password
|
from_secret: docker_password
|
||||||
tags:
|
tags:
|
||||||
|
- ${DRONE_BRANCH//\//-}-${DRONE_COMMIT_SHA:0:8}
|
||||||
- ${DRONE_COMMIT_SHA}
|
- ${DRONE_COMMIT_SHA}
|
||||||
- ${DRONE_BRANCH/\//-}
|
- ${DRONE_BRANCH/\//-}
|
||||||
- ${DRONE_BRANCH/master/latest}
|
- latest
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,9 @@ ENV MIRROR_UPDATE_INTERVAL_SECONDS 43200
|
|||||||
ENV UBUNTU_MIRROR_ARCHITECTURES amd64
|
ENV UBUNTU_MIRROR_ARCHITECTURES amd64
|
||||||
# set to anything but 'false' to mirror source code as well
|
# set to anything but 'false' to mirror source code as well
|
||||||
ENV UBUNTU_ENABLE_SOURCE_MIRRORING false
|
ENV UBUNTU_ENABLE_SOURCE_MIRRORING false
|
||||||
ENV UBUNTU_MIRROR_CATEGORIES main,universe,restricted,multiverse
|
ENV UBUNTU_MIRROR_CATEGORIES main,universe,restricted,multiverse,main/debian-installer
|
||||||
ENV UBUNTU_MIRROR_UPSTREAM archive.ubuntu.com
|
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
|
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://
|
# The following is the URL populated in /mirrors.txt as used by mirror://
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ docker run -d --name local-ubuntu-mirror \
|
|||||||
--env UBUNTU_MIRROR_PROJECTS=focal,focal-updates,focal-security,focal-backports \
|
--env UBUNTU_MIRROR_PROJECTS=focal,focal-updates,focal-security,focal-backports \
|
||||||
-p 8080:80 \
|
-p 8080:80 \
|
||||||
--restart unless-stopped \
|
--restart unless-stopped \
|
||||||
sneak/ubuntumirror:latest
|
sneak/ubuntumirror@sha256:7de7cc8245106bb574029a2dedca5aa218af08d802b989cdc7857fb57f876a02
|
||||||
```
|
```
|
||||||
|
|
||||||
# Example CapRover Definition File
|
# Example CapRover Definition File
|
||||||
@@ -56,7 +56,7 @@ docker run -d --name local-ubuntu-mirror \
|
|||||||
```
|
```
|
||||||
{
|
{
|
||||||
"schemaVersion": 2,
|
"schemaVersion": 2,
|
||||||
"imageName": "sneak/ubuntumirror:latest"
|
"imageName": "sneak/ubuntumirror@sha256:7de7cc8245106bb574029a2dedca5aa218af08d802b989cdc7857fb57f876a02"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -67,3 +67,4 @@ sneak <[sneak@sneak.berlin](mailto:sneak@sneak.berlin)>
|
|||||||
# License
|
# License
|
||||||
|
|
||||||
This software is released into the public domain.
|
This software is released into the public domain.
|
||||||
|
|
||||||
|
|||||||
@@ -9,5 +9,5 @@ rm -rf /var/mirror/ubuntu/.temp
|
|||||||
while sleep 1 ; do
|
while sleep 1 ; do
|
||||||
cd /opt/mirror && make
|
cd /opt/mirror && make
|
||||||
|
|
||||||
sleep ${MIRROR_INTERVAL_SECONDS}
|
sleep ${MIRROR_UPDATE_INTERVAL_SECONDS}
|
||||||
done
|
done
|
||||||
|
|||||||
17
mirror/syncubuntu.sh
Executable file → Normal file
17
mirror/syncubuntu.sh
Executable file → Normal file
@@ -16,17 +16,30 @@ if [[ "$UBUNTU_ENABLE_SOURCE_MIRRORING" != "false" ]]; then
|
|||||||
SOURCEOPT="--source"
|
SOURCEOPT="--source"
|
||||||
fi
|
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 ${UBUNTU_MIRROR_ARCHITECTURES} \
|
||||||
-s ${UBUNTU_MIRROR_CATEGORIES} \
|
-s ${UBUNTU_MIRROR_CATEGORIES} \
|
||||||
-h ${UBUNTU_MIRROR_UPSTREAM} \
|
-h ${UBUNTU_MIRROR_UPSTREAM} \
|
||||||
-d ${UBUNTU_MIRROR_PROJECTS} \
|
-d ${UBUNTU_MIRROR_PROJECTS} \
|
||||||
$SOURCEOPT \
|
$SOURCEOPT \
|
||||||
|
--di-dist="$DIDIST" \
|
||||||
|
--di-arch=arches \
|
||||||
--ignore-small-errors \
|
--ignore-small-errors \
|
||||||
-r /ubuntu \
|
-r "$UBUNTU_MIRROR_UPSTREAM_PATH" \
|
||||||
--getcontents \
|
--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
|
||||||
|
|||||||
@@ -3,11 +3,14 @@ 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;
|
||||||
|
|
||||||
@@ -30,12 +33,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;
|
||||||
#}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user