Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
4578e39c2d | |||
c42584f401 | |||
73da43db70 |
29
.gitlab-ci.yml
Normal file
29
.gitlab-ci.yml
Normal 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
10
Caddyfile
Normal 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
6
Dockerfile
Normal 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/
|
Reference in New Issue
Block a user