3 Commits
0.2 ... 0.3.1

4 changed files with 46 additions and 1 deletions

29
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,29 @@
image: docker:cli
services:
- docker:dind
stages:
- build
- deploy
build:
stage: build
script:
- docker build -t $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG .
# Run this job in a branch where a Dockerfile exists
rules:
- if: $CI_COMMIT_BRANCH
exists:
- Dockerfile
deploy:
stage: deploy
script:
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
tags:
- docker
only:
- tags
when: on_success

10
Caddyfile Normal file
View File

@ -0,0 +1,10 @@
:80 {
root * /usr/share/caddy
file_server
handle_errors {
rewrite * /{http.error.status_code}.html
file_server
}
}

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM caddy:2-alpine
COPY Caddyfile /etc/caddy/Caddyfile
COPY index.html /usr/share/caddy/
COPY bulma.min.css /usr/share/caddy/
COPY fa-5.1.0.js /usr/share/caddy/

View File

@ -2,6 +2,6 @@
Site web pour présenter le projet « Carnet De Jeu ». Site web pour présenter le projet « Carnet De Jeu ».
# License # Licence
Cette page est délivrée sous les termes de la licence publique WTF. Pour plus d'informations, veuillez lire la [licence WTFP](./LICENSE). Cette page est délivrée sous les termes de la licence publique WTF. Pour plus d'informations, veuillez lire la [licence WTFP](./LICENSE).