29 lines
653 B
YAML
29 lines
653 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
ocis:
|
|
image: owncloud/ocis
|
|
expose: [ 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
|
|
PROXY_TLS: false
|
|
OCIS_URL: https://${PUBLIC_URL}
|
|
networks: [ web ]
|
|
labels:
|
|
traefik.http.routers.ocis.rule: Host(`${PUBLIC_URL}`)
|
|
traefik.http.routers.ocis.tls: true
|
|
traefik.http.routers.ocis.tls.certprovider: letsencrypt
|
|
traefik.enable: true
|
|
|
|
networks:
|
|
web:
|
|
external: true
|