19 lines
378 B
YAML
19 lines
378 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
ocis:
|
|
image: owncloud/ocis
|
|
ports:
|
|
- 9200:9200
|
|
volumes:
|
|
- type: bind
|
|
source: ./mounts/config
|
|
target: /etc/ocis
|
|
- type: bind
|
|
source: ./mounts/data
|
|
target: /var/lib/ocis
|
|
environment:
|
|
OCIS_INSECURE: 'true'
|
|
PROXY_HTTP_ADDR: 0.0.0.0:9200
|
|
OCIS_URL: https://localhost:9200/
|