Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-baseimage-ubuntu
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
JetBrains YouTrack
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Prosper
docker-baseimage-ubuntu
Commits
e721db9a
Unverified
Commit
e721db9a
authored
4 years ago
by
aptalca
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request
#57
from linuxserver/xenial-mod
update mod logic
parents
03e08980
4e84b60f
No related branches found
Tags
cdbe91e9-ls49
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Dockerfile
+1
-2
1 addition, 2 deletions
Dockerfile
Dockerfile.aarch64
+1
-2
1 addition, 2 deletions
Dockerfile.aarch64
Dockerfile.armhf
+1
-2
1 addition, 2 deletions
Dockerfile.armhf
root/docker-mods
+58
-16
58 additions, 16 deletions
root/docker-mods
with
61 additions
and
22 deletions
Dockerfile
+
1
−
2
View file @
e721db9a
FROM
alpine:3.9
as
rootfs-stage
MAINTAINER
sparkyballs,thelamer
# environment
ENV
REL=xenial
...
...
@@ -28,7 +27,7 @@ COPY --from=rootfs-stage /root-out/ /
ARG
BUILD_DATE
ARG
VERSION
LABEL
build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL
MAINTAINER="
sparkyballs,
TheLamer"
LABEL
MAINTAINER="TheLamer"
# set version for s6 overlay
ARG
OVERLAY_VERSION="v1.22.0.0"
...
...
This diff is collapsed.
Click to expand it.
Dockerfile.aarch64
+
1
−
2
View file @
e721db9a
FROM alpine:3.9 as rootfs-stage
MAINTAINER sparkyballs,thelamer
# environment
ENV REL=xenial
...
...
@@ -28,7 +27,7 @@ COPY --from=rootfs-stage /root-out/ /
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL MAINTAINER="
sparkyballs,
TheLamer"
LABEL MAINTAINER="TheLamer"
# set version for s6 overlay
ARG OVERLAY_VERSION="v1.22.0.0"
...
...
This diff is collapsed.
Click to expand it.
Dockerfile.armhf
+
1
−
2
View file @
e721db9a
FROM alpine:3.9 as rootfs-stage
MAINTAINER sparkyballs,thelamer
# environment
ENV REL=xenial
...
...
@@ -28,7 +27,7 @@ COPY --from=rootfs-stage /root-out/ /
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL MAINTAINER="
sparkyballs,
TheLamer"
LABEL MAINTAINER="TheLamer"
# set version for s6 overlay
ARG OVERLAY_VERSION="v1.22.0.0"
...
...
This diff is collapsed.
Click to expand it.
root/docker-mods
+
58
−
16
View file @
e721db9a
...
...
@@ -20,15 +20,66 @@ if [ ! -f /usr/bin/curl ]; then
fi
fi
## Functions
# Use different filtering depending on URL
get_blob_sha
()
{
if
[[
$1
==
"ghcr"
]]
;
then
curl
\
--silent
\
--location
\
--request
GET
\
--header
"Authorization: Bearer
$2
"
\
$3
|
\
grep
-A4
'layers'
|
\
grep
-m1
'digest'
|
\
awk
-F
'"'
'{print $4}'
else
curl
\
--silent
\
--location
\
--request
GET
\
--header
"Authorization: Bearer
$2
"
\
$3
|
\
grep
-m1
"blobSum"
|
\
awk
-F
'"'
'{print $4}'
fi
}
# Main run logic
echo
"[mod-init] Attempting to run Docker Modification Logic"
IFS
=
'|'
DOCKER_MODS
=(
${
DOCKER_MODS
}
)
for
DOCKER_MOD
in
"
${
DOCKER_MODS
[@]
}
"
;
do
FILENAME
=
$(
echo
${
DOCKER_MOD
}
|
sed
's/[:\/]/./g'
)
ENDPOINT
=
$(
echo
${
DOCKER_MOD
}
|
awk
-F
:
'{print $1}'
)
USERNAME
=
$(
echo
${
ENDPOINT
}
|
awk
-F
/
'{print $1}'
)
TAG
=
$(
echo
${
DOCKER_MOD
}
|
awk
-F
:
'{print $2}'
)
# Support alternative endpoints
if
[[
${
DOCKER_MOD
}
==
ghcr.io/
*
]]
||
[[
${
DOCKER_MOD
}
==
linuxserver/
*
]]
;
then
DOCKER_MOD
=
"
${
DOCKER_MOD
#ghcr.io/*
}
"
ENDPOINT
=
"
${
DOCKER_MOD
%%
:
*
}
"
USERNAME
=
"
${
DOCKER_MOD
%%/*
}
"
REPO
=
"
${
ENDPOINT
#*/
}
"
TAG
=
"
${
DOCKER_MOD
#*
:
}
"
if
[[
${
TAG
}
==
"
${
DOCKER_MOD
}
"
]]
;
then
TAG
=
"latest"
fi
FILENAME
=
"
${
USERNAME
}
.
${
REPO
}
.
${
TAG
}
"
AUTH_URL
=
"https://ghcr.io/token?scope=repository%3A
${
USERNAME
}
%2F
${
REPO
}
%3Apull"
MANIFEST_URL
=
"https://ghcr.io/v2/
${
ENDPOINT
}
/manifests/
${
TAG
}
"
BLOB_URL
=
"https://ghcr.io/v2/
${
ENDPOINT
}
/blobs/"
MODE
=
"ghcr"
else
ENDPOINT
=
"
${
DOCKER_MOD
%%
:
*
}
"
USERNAME
=
"
${
DOCKER_MOD
%%/*
}
"
REPO
=
"
${
ENDPOINT
#*/
}
"
TAG
=
"
${
DOCKER_MOD
#*
:
}
"
if
[[
${
TAG
}
==
"
${
DOCKER_MOD
}
"
]]
;
then
TAG
=
"latest"
fi
FILENAME
=
"
${
USERNAME
}
.
${
REPO
}
.
${
TAG
}
"
AUTH_URL
=
"https://auth.docker.io/token?service=registry.docker.io&scope=repository:
${
ENDPOINT
}
:pull"
MANIFEST_URL
=
"https://registry-1.docker.io/v2/
${
ENDPOINT
}
/manifests/
${
TAG
}
"
BLOB_URL
=
"https://registry-1.docker.io/v2/
${
ENDPOINT
}
/blobs/"
MODE
=
"dockerhub"
fi
# Kill off modification logic if any of the usernames are banned
BLACKLIST
=
$(
curl
-s
https://raw.githubusercontent.com/linuxserver/docker-mods/master/blacklist.txt
)
IFS
=
$'
\n
'
...
...
@@ -49,20 +100,11 @@ for DOCKER_MOD in "${DOCKER_MODS[@]}"; do
"
$(
curl
\
--silent
\
--header
'GET'
\
"
https://auth.docker.io/token?service=registry.docker.io&scope=repository:
${
ENDPOINT
}
:pull
"
\
"
${
AUTH_URL
}
"
\
|
awk
-F
'"'
'{print $4}'
\
)
"
# Determine first and only layer of image
SHALAYER
=
\
"
$(
curl
\
--silent
\
--location
\
--request
GET
\
--header
"Authorization: Bearer
${
TOKEN
}
"
\
https://registry-1.docker.io/v2/
${
ENDPOINT
}
/manifests/
${
TAG
}
\
|grep
-m1
"blobSum"
\
|
awk
-F
'"'
'{print $4}'
\
)
"
SHALAYER
=
$(
get_blob_sha
"
${
MODE
}
"
"
${
TOKEN
}
"
"
${
MANIFEST_URL
}
"
)
# Check if we have allready applied this layer
if
[
-f
"/
${
FILENAME
}
"
]
&&
[
"
${
SHALAYER
}
"
==
"
$(
cat
/
${
FILENAME
}
)
"
]
;
then
echo
"[mod-init]
${
DOCKER_MOD
}
at
${
SHALAYER
}
has been previously applied skipping"
...
...
@@ -73,7 +115,7 @@ for DOCKER_MOD in "${DOCKER_MODS[@]}"; do
--location
\
--request
GET
\
--header
"Authorization: Bearer
${
TOKEN
}
"
\
"
https://registry-1.docker.io/v2/
${
ENDPOINT
}
/blobs/
${
SHALAYER
}
"
\
"
${
BLOB_URL
}
${
SHALAYER
}
"
\
|
tar
xz
-C
/
echo
${
SHALAYER
}
>
"/
${
FILENAME
}
"
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment