Compare commits

...

2 Commits

Author SHA1 Message Date
naicoi 8f814df8fd
Merge branch 'release/0.1.0' into main 2023-04-14 19:50:46 +07:00
naicoi 8a5fbcc4ac
gitflow-feature-stash: init-caddy 2023-04-14 19:50:35 +07:00
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