Compare commits

..

2 Commits

Author SHA1 Message Date
janic
c578376ff5 Drone File
Some checks reported errors
continuous-integration/drone/push Build was killed
2022-05-08 16:52:00 +02:00
janic
faf84ada69 Initial Push 2022-05-08 16:50:53 +02:00
3 changed files with 35 additions and 0 deletions

29
.drone.yml Normal file
View File

@ -0,0 +1,29 @@
---
kind: pipeline
type: docker
name: Build AMD64
platform:
os: linux
arch: amd64
trigger:
branche:
- master
# event:
# - tag
steps:
- name: Harbor AMD64
image: plugins/docker # Check Entrypoint
privileged: true
settings:
username:
from_secret: harbor_username
password:
from_secret: harbor_password
repo: goharbor.voser.cloud/homelab/nextcloud-smb
auto_tag: true
build_args:
- ARCH=amd64
dockerfile: ./Dockerfiles/Dockerfile

4
Dockerfiles/Dockerfile Normal file
View File

@ -0,0 +1,4 @@
ARG ARCH=
FROM nextcloud:latest
RUN apt-get update; \
apt-get install smbclient -y -qq

2
docker-compose.yml Normal file
View File

@ -0,0 +1,2 @@
nextcloud-smb:
build: ./Docker