mirror of
https://github.com/yavook/kiwi-nextcloud.git
synced 2024-11-22 07:13:00 +00:00
drone yml config
This commit is contained in:
parent
aaf4758513
commit
418c706bb9
2 changed files with 54 additions and 1 deletions
53
.drone.yml
Normal file
53
.drone.yml
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
type: docker
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: nextcloud stable
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
repo: yavook/kiwi-nextcloud
|
||||||
|
tags: stable
|
||||||
|
username:
|
||||||
|
from_secret: DOCKER_USERNAME
|
||||||
|
password:
|
||||||
|
from_secret: DOCKER_PASSWORD
|
||||||
|
build_args:
|
||||||
|
- NC_VERSION: stable
|
||||||
|
|
||||||
|
- name: nextcloud 21
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
repo: yavook/kiwi-nextcloud
|
||||||
|
tags: 21
|
||||||
|
username:
|
||||||
|
from_secret: DOCKER_USERNAME
|
||||||
|
password:
|
||||||
|
from_secret: DOCKER_PASSWORD
|
||||||
|
build_args:
|
||||||
|
- NC_VERSION: 21
|
||||||
|
|
||||||
|
- name: nextcloud 22
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
repo: yavook/kiwi-nextcloud
|
||||||
|
tags: 22
|
||||||
|
username:
|
||||||
|
from_secret: DOCKER_USERNAME
|
||||||
|
password:
|
||||||
|
from_secret: DOCKER_PASSWORD
|
||||||
|
build_args:
|
||||||
|
- NC_VERSION: 22
|
||||||
|
|
||||||
|
- name: nextcloud 23
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
repo: yavook/kiwi-nextcloud
|
||||||
|
tags: 23
|
||||||
|
username:
|
||||||
|
from_secret: DOCKER_USERNAME
|
||||||
|
password:
|
||||||
|
from_secret: DOCKER_PASSWORD
|
||||||
|
build_args:
|
||||||
|
- NC_VERSION: 23
|
|
@ -1,4 +1,4 @@
|
||||||
ARG NC_VERSION=22
|
ARG NC_VERSION=stable
|
||||||
FROM nextcloud:${NC_VERSION}-fpm-alpine
|
FROM nextcloud:${NC_VERSION}-fpm-alpine
|
||||||
LABEL maintainer="jmm@yavook.de"
|
LABEL maintainer="jmm@yavook.de"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue