Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gpu Cluster Image Test
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package registry
Container Registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Insights
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
Hans Eckardt
Gpu Cluster Image Test
Commits
f4fbf00f
Commit
f4fbf00f
authored
1 month ago
by
Hans Eckardt
Browse files
Options
Downloads
Patches
Plain Diff
init
parents
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Dockerfile
+18
-0
18 additions, 0 deletions
Dockerfile
README.md
+6
-0
6 additions, 0 deletions
README.md
gitlab-ci.yml
+29
-0
29 additions, 0 deletions
gitlab-ci.yml
with
53 additions
and
0 deletions
Dockerfile
0 → 100644
+
18
−
0
View file @
f4fbf00f
# Use the official Ubuntu base image
FROM
ubuntu:22.04
# Set environment variables
ENV
DEBIAN_FRONTEND=noninteractive
# Install Python and pip
RUN
apt-get update
&&
apt-get
install
-y
\
python3
\
python3-pip
&&
\
rm
-rf
/var/lib/apt/lists/
*
# Install PyTorch
RUN
pip3
install
torch
# Command to check the number of GPUs available
CMD
["python3", "-c", "import torch; print('GPUs available:', torch.cuda.device_count())"]
\ No newline at end of file
This diff is collapsed.
Click to expand it.
README.md
0 → 100644
+
6
−
0
View file @
f4fbf00f
# GPU-Cluster-Image-Test
Dieses Projekt enthält einen
`Dockerfile`
und eine
`.gitlab-ci.yml`
.
Die Pipeline definiert in
`.gitlab-ci.yml`
baut das Docker-Image und lädt dieses in die
Image-Registry
`mcr.informatik.uni-halle.de`
.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
gitlab-ci.yml
0 → 100644
+
29
−
0
View file @
f4fbf00f
image
:
docker:24.0.5
# Use the latest version of Docker available
services
:
-
name
:
docker:24.0.5-dind
# Use the Docker-in-Docker image
command
:
[
"
--tls=false"
]
variables
:
# Define the Docker image name using the GitLab CI environment variables
IMAGE_NAME
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
# Ensure Docker commands are sent to the Docker-in-Docker service
DOCKER_HOST
:
tcp://docker:2375/
DOCKER_TLS_CERTDIR
:
"
"
# Disable Docker's TLS feature since it's not needed here
before_script
:
# Login to the GitLab Container Registry
-
docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
stages
:
-
build
-
deploy
build
:
stage
:
build
script
:
# Build the Docker image using the Dockerfile
-
docker build -t $IMAGE_NAME .
# Push the Docker image to the GitLab Container Registry
-
docker push $IMAGE_NAME
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