ocis-deployment/docker-compose.yml

28 lines
626 B
YAML
Raw Normal View History

2023-09-01 19:46:27 +00:00
version: '3.5'
services:
ocis:
image: owncloud/ocis
expose: [ 9200 ]
2023-09-01 19:46:27 +00:00
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
networks:
web:
external: true