Compare commits

...

9 Commits

Author SHA1 Message Date
ebf58d7b9a Update registry URL
All checks were successful
continuous-integration/drone/push Build is passing
2022-04-07 11:38:16 +00:00
8fe5bb6dbd Remove outdated info.
All checks were successful
continuous-integration/drone/push Build is passing
2021-12-01 18:40:23 +00:00
a809d46d4e Enable CI on pushes but exclude PRs
All checks were successful
continuous-integration/drone/push Build is passing
2021-05-13 22:14:24 +00:00
68ff64398e Change registry URL 2021-05-13 22:11:48 +00:00
618afa3e4a Update '.drone.yml' 2021-05-04 22:23:16 +00:00
877026caa7 Add build status badge 2021-04-13 16:10:44 +02:00
9a3cf2ab06 Update README 2021-04-13 14:16:49 +02:00
c6dcb8ec06 Only trigger builds on tags
Also change the step name to "build"
2021-04-13 14:03:18 +02:00
61debe218b Add .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
This will automatically build and push image to the local Docker
registry
2021-04-13 12:00:02 +02:00
2 changed files with 23 additions and 2 deletions

16
.drone.yml Normal file
View File

@ -0,0 +1,16 @@
kind: pipeline
name: build image
steps:
- name: build
image: plugins/docker
settings:
repo: registry.kucharczyk.xyz/nextcloud
tags: latest
trigger:
event:
- push
- cron
exclude:
- pull_request

View File

@ -1,3 +1,8 @@
# Nextcloud Docker image with cron
This is taken straight from the official repository here:
# Nextcloud Docker image
[![Build Status](https://drone.kucharczyk.xyz/api/badges/containers/nextcloud/status.svg)](https://drone.kucharczyk.xyz/containers/nextcloud)
I've made two changes to the base image:
1. Added cron to process chores. See:
https://github.com/nextcloud/docker/tree/master/.examples/dockerfiles/cron/apache
2. Added `imagemagick` to better support SVGs.