Compare commits

..

4 commits

Author SHA1 Message Date
1b6e8ff336 feat: Add support for clamdscan
Some checks failed
continuous-integration/drone/push Build is failing
2023-02-21 14:47:56 +01:00
1631b8f07b ci: Add deploy step 2023-02-21 14:47:21 +01:00
652ce7a56b feat: Bump version to 25.0.1 2022-11-15 12:33:48 +01:00
56c50cd8fb doc: update process 2022-11-15 12:33:35 +01:00
4 changed files with 115 additions and 2 deletions

2
.dockerignore Normal file
View file

@ -0,0 +1,2 @@
.drone.yml
.git

101
.drone.yml Normal file
View file

@ -0,0 +1,101 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: debug
image: alpine
commands:
- 'echo "Repository: glenux/service-nextcloud"'
- 'echo "Git commit: ${DRONE_COMMIT_SHA:0:8}"'
- name: publish:commit_sha
image: plugins/docker
# pull: never
# volumes:
# - name: cache
# path: /stupid
environment:
DOCKER_REPO: glenux/service-nextcloud
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
cache_from: "glenux/service-nextcloud:latest_${DRONE_BRANCH/\\//-}"
repo: glenux/service-nextcloud
tags: "${DRONE_COMMIT_SHA:0:8}"
purge: false
- name: publish:commit_branch
image: plugins/docker
# volumes:
# - name: cache
# path: /stupid
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
cache_from: "glenux/service-nextcloud:latest_${DRONE_BRANCH/\\//-}"
repo: glenux/service-nextcloud
tags: "latest_${DRONE_BRANCH/\\//-}"
purge: false
when:
branch:
- "master"
- "develop"
- "feature/*"
- name: publish:latest
image: plugins/docker
settings:
username:
from_secret: DOCKERHUB_USERNAME
password:
from_secret: DOCKERHUB_PASSWORD
cache_from: "glenux/service-nextcloud:latest_${DRONE_BRANCH/\\//-}"
repo: glenux/service-nextcloud
tags: latest
purge: false
when:
branch:
- master
- name: deploy:dokku
image: alpine
when:
branch:
- master
environment:
SSH_USER:
from_secret: SSH_USER
SSH_HOST:
from_secret: SSH_HOST
SSH_PRIVATE_KEY:
from_secret: SSH_PRIVATE_KEY
commands:
- echo $SSH_USER
- echo $SSH_HOST
- echo $SSH_PRIVATE_KEY
- apk update && apk add openssh-client
- mkdir -p ~/.ssh && chmod 700 ~/.ssh
- echo "$SSH_PRIVATE_KEY" | base64 -d > ~/.ssh/deploy_key
- chmod 600 ~/.ssh/deploy_key
- ssh -o StrictHostKeyChecking=no
-i ~/.ssh/deploy_key
"$SSH_USER@$SSH_HOST"
ps:stop social
- ssh -o StrictHostKeyChecking=no
-i ~/.ssh/deploy_key
"$SSH_USER@$SSH_HOST"
git:from-image cloud
"glenux/service-nextcloud:${DRONE_COMMIT_SHA:0:8}"
#
- echo "SUCCESS"
# volumes:
# - name: cache
# temp: {}
#

View file

@ -9,12 +9,13 @@
# FROM nextcloud:21.0.2-apache # FROM nextcloud:21.0.2-apache
# FROM nextcloud:22.2-apache # FROM nextcloud:22.2-apache
# FROM nextcloud:23.0.2-apache # FROM nextcloud:23.0.2-apache
FROM nextcloud:24.0.2-apache # FROM nextcloud:24.0.2-apache
FROM nextcloud:25.0.1-apache
# This is a stupid comment for a demo (remove later) # This is a stupid comment for a demo (remove later)
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y nano \ && apt-get install -y clamdscan nano \
&& apt-get clean && apt-get clean
# #

View file

@ -6,3 +6,12 @@
dokku storage:mount cloud /var/lib/dokku/data/storage/cloud/config:/var/www/html/config dokku storage:mount cloud /var/lib/dokku/data/storage/cloud/config:/var/www/html/config
dokku storage:mount cloud /var/lib/dokku/data/storage/cloud/data:/var/www/html/data dokku storage:mount cloud /var/lib/dokku/data/storage/cloud/data:/var/www/html/data
# Process
1. commit
2. push to git repo
3. run CI/CD
* build image
* push image to local registry
4.