commit
114e8d3a40
2 changed files with 21 additions and 0 deletions
9
.woodpecker.yml
Normal file
9
.woodpecker.yml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
pipeline:
|
||||||
|
build-image:
|
||||||
|
image: docker.io/woodpeckerci/plugin-docker-buildx
|
||||||
|
secrets: [docker_password]
|
||||||
|
settings:
|
||||||
|
registry: https://gitea.nulo.in
|
||||||
|
username: nulo
|
||||||
|
repo: gitea.nulo.in/nulo/nextcloud
|
||||||
|
dockerfile: Containerfile
|
12
Containerfile
Normal file
12
Containerfile
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
FROM docker.io/nextcloud:apache
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
supervisor \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& mkdir /var/log/supervisord /var/run/supervisord
|
||||||
|
|
||||||
|
COPY supervisord.conf /
|
||||||
|
|
||||||
|
ENV NEXTCLOUD_UPDATE=1
|
||||||
|
|
||||||
|
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"]
|
Loading…
Reference in a new issue