-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
64 additions
and
4 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
File renamed without changes.
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,14 @@ | ||
FROM alma9 | ||
|
||
RUN dnf install -y https://ecsft.cern.ch/dist/cvmfs/cvmfs-release/cvmfs-release-latest.noarch.rpm && \ | ||
dnf install -y cvmfs && \ | ||
mkdir /cvmfs/cvmfs-config.cern.ch /cvmfs/sw.hsf.org /cvmfs/sw-nightlies.hsf.org && \ | ||
echo "CVMFS_CONFIG_REPOSITORY=cvmfs-config.cern.ch" > /etc/cvmfs/default.local && \ | ||
echo "CVMFS_CLIENT_PROFILE=single" >> /etc/cvmfs/default.local && \ | ||
echo "CVMFS_QUOTA_LIMIT='15000'" >> /etc/cvmfs/default.local && \ | ||
echo "CVMFS_USE_CDN='yes'" >> /etc/cvmfs/default.local && \ | ||
dnf clean all | ||
|
||
COPY mount.sh /mount.sh | ||
|
||
ENTRYPOINT ["/bin/bash"] |
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,4 @@ | ||
set -e | ||
mount -t cvmfs cvmfs-config.cern.ch /cvmfs/cvmfs-config.cern.ch | ||
mount -t cvmfs sw.hsf.org /cvmfs/sw.hsf.org | ||
mount -t cvmfs sw-nightlies.hsf.org /cvmfs/sw-nightlies.hsf.org |
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,2 @@ | ||
docker build -t alma9 alma9-build | ||
docker build -t alma9-cvmfs alma9-cvmfs |
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,2 @@ | ||
docker build -t centos7 centos7-build | ||
docker build -t centos7-cvmfs centos7-cvmfs |
File renamed without changes.
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,14 @@ | ||
FROM centos7 | ||
|
||
RUN yum install -y https://ecsft.cern.ch/dist/cvmfs/cvmfs-release/cvmfs-release-latest.noarch.rpm && \ | ||
yum install -y cvmfs && \ | ||
mkdir /cvmfs/cvmfs-config.cern.ch /cvmfs/sw.hsf.org /cvmfs/sw-nightlies.hsf.org && \ | ||
echo "CVMFS_CONFIG_REPOSITORY=cvmfs-config.cern.ch" > /etc/cvmfs/default.local && \ | ||
echo "CVMFS_CLIENT_PROFILE=single" >> /etc/cvmfs/default.local && \ | ||
echo "CVMFS_QUOTA_LIMIT='15000'" >> /etc/cvmfs/default.local && \ | ||
echo "CVMFS_USE_CDN='yes'" >> /etc/cvmfs/default.local && \ | ||
yum clean all | ||
|
||
COPY mount.sh /mount.sh | ||
|
||
ENTRYPOINT ["/bin/bash"] |
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,2 @@ | ||
docker build -t ubuntu22 ubuntu22-build | ||
docker build -t ubuntu22-cvmfs ubuntu22-cvmfs |
File renamed without changes.
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,19 @@ | ||
FROM ubuntu22 | ||
|
||
RUN apt update && \ | ||
apt install -y lsb-release && \ | ||
wget https://ecsft.cern.ch/dist/cvmfs/cvmfs-release/cvmfs-release-latest_all.deb && \ | ||
dpkg -i cvmfs-release-latest_all.deb && \ | ||
rm -rf cvmfs-release-latest_all.deb && \ | ||
apt update && \ | ||
apt install -y cvmfs && \ | ||
mkdir /cvmfs/cvmfs-config.cern.ch /cvmfs/sw.hsf.org /cvmfs/sw-nightlies.hsf.org && \ | ||
echo "CVMFS_CLIENT_PROFILE=single" >> /etc/cvmfs/default.local && \ | ||
echo "CVMFS_QUOTA_LIMIT='15000'" >> /etc/cvmfs/default.local && \ | ||
echo "CVMFS_USE_CDN='yes'" >> /etc/cvmfs/default.local && \ | ||
apt clean &&\ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY mount.sh /mount.sh | ||
|
||
CMD ["/bin/bash"] |
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,4 @@ | ||
set -e | ||
mount -t cvmfs cvmfs-config.cern.ch /cvmfs/cvmfs-config.cern.ch | ||
mount -t cvmfs sw.hsf.org /cvmfs/sw.hsf.org | ||
mount -t cvmfs sw-nightlies.hsf.org /cvmfs/sw-nightlies.hsf.org |