-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: port el7 Dokcerfile from main branch
- Loading branch information
Showing
16 changed files
with
1,177 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
-----BEGIN PGP PUBLIC KEY BLOCK----- | ||
Version: GnuPG v2.0.22 (GNU/Linux) | ||
|
||
mQENBFYM/AoBCADR9Q5cb+H5ndx+QkzNBQ88wcD+g112yvnHNlSiBMOnNEGHuKPJ | ||
tujZ+eWXP3K6ucJckT91WxfQ2fxPr9jQ0xpZytcHcZdTfn3vKL9+OwR0npp+qmcz | ||
rK8/EzVz/SWSgBQ5xT/HUvaeoVAbzBHSng0r2njnBAqABKAoTxgyRGKSCWduKD32 | ||
7PF2ZpqeDFFhd99Ykt6ar8SlV8ToqH6F7An0ILeejINVbHUxd6+wsbpcOwQ4mGAa | ||
/CPXeqqLGj62ASBv36xQr34hlN/9zQMViaKkacl8zkuvwhuHf4b4VlGVCe6VILpQ | ||
8ytKMV/lcg7YpMfRq4KVWBjCwkvk6zg6KxaHABEBAAG0aENlbnRPUyBTb2Z0d2Fy | ||
ZUNvbGxlY3Rpb25zIFNJRyAoaHR0cHM6Ly93aWtpLmNlbnRvcy5vcmcvU3BlY2lh | ||
bEludGVyZXN0R3JvdXAvU0NMbykgPHNlY3VyaXR5QGNlbnRvcy5vcmc+iQE5BBMB | ||
CgAjAhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AFAmIgbg0ACgkQTrhOcfLu | ||
nVUzkAgAgJSl++PWo69OGI8eUn53whhfJ6ZyKCOyI9+Flghtfwq1mdcP4dIoAubw | ||
nlQcvEsE4Erob2I1S+n/dXYh9y2+Si3HdXRreKzC1rCSG5ebYRrEqeMoJhBoDFSd | ||
xydtxi03l+Dh2iWtLtXpAM85qHvgIrPfdUnLRVbDBT52Ph5igZl8ux2ooJ94CPm4 | ||
yTG/0aPIebNQsLP8LEpa2wad2WJfIeFgjEHranWIzhzapGgwyf2Iu9Sz3L8ljiz2 | ||
2HixHpI2es3IqgLyRsTBo2/EdbvMJWlFwiESe1UQIW6ObKNnVabIHUAxZgOlj59o | ||
JhPOzTBG+Ma2fLs+ZFBV88cpKdctFQ== | ||
=+Gr2 | ||
-----END PGP PUBLIC KEY BLOCK----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# CentOS-Base.repo | ||
# | ||
# The mirror system uses the connecting IP address of the client and the | ||
# update status of each mirror to pick mirrors that are updated to and | ||
# geographically close to the client. You should use this for CentOS updates | ||
# unless you are manually picking other mirrors. | ||
# | ||
# If the mirrorlist= does not work for you, as a fall back you can try the | ||
# remarked out baseurl= line instead. | ||
# | ||
# | ||
|
||
[base] | ||
name=CentOS-$releasever - Base | ||
baseurl=https://vault.centos.org/centos/$releasever/os/$basearch/ | ||
gpgcheck=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
|
||
#released updates | ||
[updates] | ||
name=CentOS-$releasever - Updates | ||
baseurl=https://vault.centos.org/centos/$releasever/updates/$basearch/ | ||
gpgcheck=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
|
||
#additional packages that may be useful | ||
[extras] | ||
name=CentOS-$releasever - Extras | ||
baseurl=https://vault.centos.org/centos/$releasever/extras/$basearch/ | ||
gpgcheck=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
enabled=1 | ||
|
||
#additional packages that extend functionality of existing packages | ||
[centosplus] | ||
name=CentOS-$releasever - Plus | ||
baseurl=https://vault.centos.org/centos/$releasever/centosplus/$basearch/ | ||
gpgcheck=1 | ||
enabled=0 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
|
||
[centos-sclo-rh] | ||
name=CentOS-$releasever - SCLo rh | ||
baseurl=https://vault.centos.org/centos/$releasever/sclo/$basearch/rh/ | ||
gpgcheck=1 | ||
enabled=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo | ||
|
||
[centos-sclo-sclo] | ||
name=CentOS-$releasever - SCLo sclo | ||
baseurl=https://vault.centos.org/centos/$releasever/sclo/$basearch/sclo/ | ||
gpgcheck=1 | ||
enabled=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# CentOS-CR.repo | ||
# | ||
# The Continuous Release ( CR ) repository contains rpms that are due in the next | ||
# release for a specific CentOS Version ( eg. next release in CentOS-7 ); these rpms | ||
# are far less tested, with no integration checking or update path testing having | ||
# taken place. They are still built from the upstream sources, but might not map | ||
# to an exact upstream distro release. | ||
# | ||
# These packages are made available soon after they are built, for people willing | ||
# to test their environments, provide feedback on content for the next release, and | ||
# for people looking for early-access to next release content. | ||
# | ||
# The CR repo is shipped in a disabled state by default; its important that users | ||
# understand the implications of turning this on. | ||
# | ||
# NOTE: We do not use a mirrorlist for the CR repos, to ensure content is available | ||
# to everyone as soon as possible, and not need to wait for the external | ||
# mirror network to seed first. However, many local mirrors will carry CR repos | ||
# and if desired you can use one of these local mirrors by editing the baseurl | ||
# line in the repo config below. | ||
# | ||
|
||
[cr] | ||
name=CentOS-$releasever - cr | ||
baseurl=https://vault.centos.org/centos/$releasever/cr/$basearch/ | ||
gpgcheck=1 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
enabled=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# CentOS-Media.repo | ||
# | ||
# This repo can be used with mounted DVD media, verify the mount point for | ||
# CentOS-7. You can use this repo and yum to install items directly off the | ||
# DVD ISO that we release. | ||
# | ||
# To use this repo, put in your DVD and use it with the other repos too: | ||
# yum --enablerepo=c7-media [command] | ||
# | ||
# or for ONLY the media repo, do this: | ||
# | ||
# yum --disablerepo=\* --enablerepo=c7-media [command] | ||
|
||
[c7-media] | ||
name=CentOS-$releasever - Media | ||
baseurl=file:///media/CentOS/ | ||
file:///media/cdrom/ | ||
file:///media/cdrecorder/ | ||
gpgcheck=1 | ||
enabled=0 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# CentOS-Sources.repo | ||
# | ||
# The mirror system uses the connecting IP address of the client and the | ||
# update status of each mirror to pick mirrors that are updated to and | ||
# geographically close to the client. You should use this for CentOS updates | ||
# unless you are manually picking other mirrors. | ||
# | ||
# If the mirrorlist= does not work for you, as a fall back you can try the | ||
# remarked out baseurl= line instead. | ||
# | ||
# | ||
|
||
[base-source] | ||
name=CentOS-$releasever - Base Sources | ||
baseurl=https://vault.centos.org/centos/$releasever/os/Source/ | ||
gpgcheck=1 | ||
enabled=0 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
|
||
#released updates | ||
[updates-source] | ||
name=CentOS-$releasever - Updates Sources | ||
baseurl=https://vault.centos.org/centos/$releasever/updates/Source/ | ||
gpgcheck=1 | ||
enabled=0 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
|
||
#additional packages that may be useful | ||
[extras-source] | ||
name=CentOS-$releasever - Extras Sources | ||
baseurl=https://vault.centos.org/centos/$releasever/extras/Source/ | ||
gpgcheck=1 | ||
enabled=0 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 | ||
|
||
#additional packages that extend functionality of existing packages | ||
[centosplus-source] | ||
name=CentOS-$releasever - Plus Sources | ||
baseurl=https://vault.centos.org/centos/$releasever/centosplus/Source/ | ||
gpgcheck=1 | ||
enabled=0 | ||
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 |
Oops, something went wrong.