2 Commits
0.2 ... 0.3.0

4 changed files with 40 additions and 1 deletions

23
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,23 @@
image: docker:stable
variables:
DOCKER_HOST: tcp://docker:2375/
DOCKER_DRIVER: overlay2
services:
- docker:dind
stages:
- build
build:
stage: build
script:
- docker build -t $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG .
- docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
only:
- tags
after_script:
- docker images --filter "dangling=true" -q --no-trunc | xargs -r docker rmi

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 ».
# 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).