commit 7c0fd4b193da9ce4a74e9a19ec87ac06948f8329 Author: Severin Kaderli Date: Sat Jan 16 13:44:35 2021 +0100 Initial commit Signed-off-by: Severin Kaderli diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..8d6748f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +stages: + - Image + +Image: + image: docker:19.03.8 + stage: Image + services: + - docker:19.03.8-dind + variables: + IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG + script: + - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY + - docker build -t $IMAGE_TAG . + - docker push $IMAGE_TAG \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5b1c92e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM registry.gitlab.com/severinkaderli/nginx-docker:master + +COPY index.html /usr/share/nginx/html \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..002aae9 --- /dev/null +++ b/index.html @@ -0,0 +1,145 @@ + + + + + + Start + + + + + +
+
+

Hello Severin!

+
+ +
+
+
+
+

Organization

+ +
+
+

Entertainment

+ +
+
+

Social

+ +
+
+

Programming

+ +
+
+

Hosting

+ +
+
+

Gaming

+ +
+
+
+ + + \ No newline at end of file