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
31 changes: 31 additions & 0 deletions blueprints/owncloud-infinite-scale/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
version: "3.8"

services:
owncloud-infinite-scale:
image: owncloud/ocis:8.0.3
restart: unless-stopped
entrypoint:
- /bin/sh
command: ["-c", "ocis init --insecure yes || true; ocis server"]
expose:
- "9200"
environment:
OCIS_URL: ${OCIS_URL}
OCIS_LOG_LEVEL: ${OCIS_LOG_LEVEL}
OCIS_INSECURE: "true"
PROXY_TLS: "false"
PROXY_HTTP_ADDR: 0.0.0.0:9200
IDM_ADMIN_PASSWORD: ${IDM_ADMIN_PASSWORD}
SETTINGS_GRPC_ADDR: 0.0.0.0:9191
GATEWAY_GRPC_ADDR: 0.0.0.0:9142
STORAGE_USERS_DATA_GATEWAY_URL: http://owncloud-infinite-scale:9200/data
THUMBNAILS_FILESYSTEMSTORAGE_ROOT: /var/lib/ocis-thumbnails
volumes:
- owncloud-infinite-scale-config:/etc/ocis
- owncloud-infinite-scale-data:/var/lib/ocis
- owncloud-infinite-scale-thumbnails:/var/lib/ocis-thumbnails

volumes:
owncloud-infinite-scale-config:
owncloud-infinite-scale-data:
owncloud-infinite-scale-thumbnails:
11 changes: 11 additions & 0 deletions blueprints/owncloud-infinite-scale/owncloud-infinite-scale.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions blueprints/owncloud-infinite-scale/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[variables]
main_domain = "${domain}"
owncloud_url = "http://${main_domain}"
admin_password = "${password:32}"
Comment thread
BinkyTwin marked this conversation as resolved.
log_level = "info"

[[config.domains]]
serviceName = "owncloud-infinite-scale"
port = 9200
host = "${main_domain}"
path = "/"

[[config.mounts]]
filePath = "README.md"
content = """# ownCloud Infinite Scale

This template deploys ownCloud Infinite Scale (oCIS), a modern file sync and share platform with WebDAV and ownCloud client support.

## Access

- URL: `http://${main_domain}`
- Admin user: `admin`
- Admin password: the generated `admin_password` value

The `owncloud_url` value is written into the initial oCIS configuration. Set it to `https://${main_domain}` before the first deployment if your Dokploy domain enforces TLS. Change it before the first deployment if your public URL is different, because `ocis init` does not rewrite an existing `ocis.yaml` file.

## Storage

The template creates persistent volumes for:

- `/etc/ocis` configuration
- `/var/lib/ocis` application data and user storage
- `/var/lib/ocis-thumbnails` generated thumbnails

Back up these volumes together before upgrades or migrations.
"""

[config.env]
OCIS_URL = "${owncloud_url}"
IDM_ADMIN_PASSWORD = "${admin_password}"
OCIS_LOG_LEVEL = "${log_level}"
19 changes: 19 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4835,6 +4835,25 @@
"rtmp"
]
},
{
"id": "owncloud-infinite-scale",
"name": "ownCloud Infinite Scale",
"version": "8.0.3",
"description": "ownCloud Infinite Scale is a modern file sync and share platform with WebDAV and ownCloud client support.",
"logo": "owncloud-infinite-scale.svg",
"links": {
"github": "https://github.com/owncloud/ocis",
"website": "https://owncloud.com/infinite-scale/",
"docs": "https://doc.owncloud.com/ocis/latest/"
},
"tags": [
"storage",
"files",
"sync",
"webdav",
"collaboration"
]
},
{
"id": "palmr",
"name": "Palmr",
Expand Down
Loading