Nextcloud with SMB
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-02-24 10:08:51 +01:00
commit d28712abec
2 changed files with 19 additions and 0 deletions

16
.drone.yml Normal file
View File

@@ -0,0 +1,16 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
registry: https://git.ivasoft.cz
username:
from_secret: repo_user
password:
from_secret: repo_pass
repo: git.ivasoft.cz/sw/nextcloud
tags:
- latest
- ${DRONE_TAG:-latest}

3
Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM nextcloud:24
RUN apt-get update && apt-get install -y procps smbclient && rm -rf /var/lib/apt/lists/*