- added Hugo
This commit is contained in:
parent
0bd804c45f
commit
a8f5a21546
|
@ -11,4 +11,17 @@ pipeline:
|
||||||
username:
|
username:
|
||||||
from_secret: docker_username
|
from_secret: docker_username
|
||||||
dockerfile: ./Container/kontify/Dockerfile
|
dockerfile: ./Container/kontify/Dockerfile
|
||||||
context: ./Container//kontify
|
context: ./Container/kontify
|
||||||
|
docker-buildx-hugo:
|
||||||
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
|
settings:
|
||||||
|
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm64/v8
|
||||||
|
repo: git.mertens.digital/heri410/hugo
|
||||||
|
registry: git.mertens.digital
|
||||||
|
tags: latest
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
dockerfile: ./Container/hugo/Dockerfile
|
||||||
|
context: ./Container/hugo
|
6
Container/hugo/Dockerfile
Normal file
6
Container/hugo/Dockerfile
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
FROM debian
|
||||||
|
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
|
||||||
|
git \
|
||||||
|
hugo \
|
||||||
|
ncftp \
|
||||||
|
rsync
|
Loading…
Reference in a new issue