gitflow-feature-stash: init-caddy

develop
naicoi 2023-04-14 19:50:35 +07:00
parent 7866b43c9e
commit 8a5fbcc4ac
Signed by: naicoi
GPG Key ID: 7142E472DF7CF7D9
3 changed files with 21 additions and 0 deletions

13
.woodpecker.yml Normal file
View File

@ -0,0 +1,13 @@
pipeline:
image-build:
image: plugins/docker
settings:
registry: techio.dev
repo: techio.dev/${CI_REPO}
tags:
- alpine
username: deploy
password:
from_secret: deploy_password
when:
event: tag

6
Caddyfile Normal file
View File

@ -0,0 +1,6 @@
:80 {
root * /var/www/html
php_fastcgi wordpress:9000
encode gzip
file_server
}

2
Dockerfile Normal file
View File

@ -0,0 +1,2 @@
FROM caddy:alpine
COPY Caddyfile /etc/caddy/Caddyfile