Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ARG UPSTREAM_VERSION
FROM owncloud/server:${UPSTREAM_VERSION}
11 changes: 1 addition & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- :female_detective: Looking for a new champion -->

# DAppNode package _Owncloud_
# Dappnode package _Owncloud_

<!--DAppNode package logo (could be added with an hyperlink to a youtube video): -->

Expand All @@ -23,12 +23,3 @@ Be confident your data storage and maintenance complies with regulation. Increas

- **User and password**: you will have to define a user and password to manage your account
- **Disk space**: enough disk space to storage your data

### Manteinance

<!--Table with champion/s mantainers, versions and update status -->
<!--UPDATED: :x: OR :heavy_check_mark: -->

| Updated | Champion/s |
| :----------------: | :------------: |
| :heavy_check_mark: | @tropicar |
8 changes: 6 additions & 2 deletions dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
"version": "1.0.0",
"shortDescription": "OwnCloud is a suite of client-server FOSS for creating file hosting services and using them.",
"description": "Collaborate easier, safely. [OwnCloud](https://owncloud.com/), an open-source file sync, share and content collaboration software that lets teams work on data easily.",
"type": "service",
"type": "service",
"upstreamVersion": "10.5",
"upstreamRepo": "owncloud/core",
"upstreamArg": "UPSTREAM_VERSION",
"author": "DAppNode Association <admin@dappnode.io> (https://github.com/dappnode)",
"contributors": [
"Eduardo Antuña <eduadiez@gmail.com> (https://github.com/eduadiez)"
Expand All @@ -18,7 +21,8 @@
"mainService":"owncloud",
"minimumDappnodeVersion": "0.2.39",
"links": {
"homepage": "http://owncloud.dappnode"
"Homepage": "https://owncloud.com/",
"Ui": "http://owncloud.dappnode"
},
"repository": {
"type": "git",
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
version: '3.4'
services:
owncloud:
build:
context: .
args:
UPSTREAM_VERSION: "10.5"
image: 'owncloud/server:10.5'
restart: always
depends_on:
Expand Down