mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 12:50:21 -06:00
We changed the default to `metadata` before the 2.0 release. This PR alos removes the associated `SETTINGS_STORE_TYPE` and `SETTINGS_DATA_PATH` settings as they are no longer needed with `metadata` as the only available backend.
56 lines
2.0 KiB
YAML
56 lines
2.0 KiB
YAML
services:
|
|
ocis-server:
|
|
build:
|
|
dockerfile: ocis.Dockerfile
|
|
context: ./
|
|
args:
|
|
OCIS_IMAGE_TAG: $OCIS_IMAGE_TAG
|
|
user: root
|
|
environment:
|
|
WITH_WRAPPER: $WITH_WRAPPER
|
|
OCIS_URL: "https://ocis-server:9200"
|
|
STORAGE_USERS_DRIVER: $STORAGE_DRIVER
|
|
STORAGE_USERS_DRIVER_LOCAL_ROOT: /srv/app/tmp/ocis/local/root
|
|
STORAGE_USERS_DRIVER_OCIS_ROOT: /srv/app/tmp/ocis/storage/users
|
|
STORAGE_SYSTEM_DRIVER_OCIS_ROOT: /srv/app/tmp/ocis/storage/metadata
|
|
SHARING_USER_JSON_FILE: /srv/app/tmp/ocis/shares.json
|
|
PROXY_ENABLE_BASIC_AUTH: "true"
|
|
WEB_UI_CONFIG_FILE: /drone/src/tests/config/drone/ocis-config.json
|
|
ACCOUNTS_HASH_DIFFICULTY: 4
|
|
OCIS_INSECURE: "true"
|
|
IDM_CREATE_DEMO_USERS: "true"
|
|
IDM_ADMIN_PASSWORD: "admin"
|
|
FRONTEND_SEARCH_MIN_LENGTH: "2"
|
|
OCIS_ASYNC_UPLOADS: $OCIS_ASYNC_UPLOADS
|
|
OCIS_ADD_RUN_SERVICES: $OCIS_ADD_RUN_SERVICES
|
|
|
|
# s3ng specific settings
|
|
STORAGE_USERS_S3NG_ENDPOINT: http://ceph:8080
|
|
STORAGE_USERS_S3NG_REGION: default
|
|
STORAGE_USERS_S3NG_ACCESS_KEY: test
|
|
STORAGE_USERS_S3NG_SECRET_KEY: test
|
|
STORAGE_USERS_S3NG_BUCKET: test
|
|
# email
|
|
NOTIFICATIONS_SMTP_HOST: email
|
|
NOTIFICATIONS_SMTP_PORT: 2500
|
|
NOTIFICATIONS_SMTP_INSECURE: "true"
|
|
NOTIFICATIONS_SMTP_SENDER: "owncloud <noreply@example.com>"
|
|
|
|
# antivirus
|
|
ANTIVIRUS_SCANNER_TYPE: "clamav"
|
|
ANTIVIRUS_CLAMAV_SOCKET: tcp://clamav:3310
|
|
|
|
# postprocessing step
|
|
POSTPROCESSING_STEPS: $POSTPROCESSING_STEPS
|
|
|
|
# tika
|
|
SEARCH_EXTRACTOR_TYPE: $SEARCH_EXTRACTOR_TYPE
|
|
SEARCH_EXTRACTOR_TIKA_TIKA_URL: "http://tika:9998"
|
|
SEARCH_EXTRACTOR_CS3SOURCE_INSECURE: "true"
|
|
|
|
# fonts map for txt thumbnails (including unicode support)
|
|
THUMBNAILS_TXT_FONTMAP_FILE: "/drone/src/tests/config/drone/fontsMap.json"
|
|
volumes:
|
|
- ../../../config:/drone/src/tests/config
|
|
- ../../../ociswrapper/bin/ociswrapper:/usr/bin/ociswrapper
|