diff --git a/ocis/compose.yml b/ocis/compose.yml index 30ddca3..fe9f962 100644 --- a/ocis/compose.yml +++ b/ocis/compose.yml @@ -2,17 +2,18 @@ version: '3' services: ocis: + container_name: ocis image: owncloud/ocis:latest environment: # INSECURE: needed if oCIS / Traefik is using self generated certificates OCIS_INSECURE: "true" - # OCIS_URL: the external domain / ip address of oCIS (with protocol, must always be https) OCIS_URL: "https://192.168.1.33:9200" - # OCIS_LOG_LEVEL: error / info / ... / debug OCIS_LOG_LEVEL: info - + restart: always + ports: + - 9200:9200 volumes: # mount the ocis config file inside the container - ${DOCKER_CONFIGS}/ocis/ocis.yaml:/etc/ocis/ocis.yaml