diff --git a/deployments/examples/oc10_ocis_parallel/config/oc10/10-custom-config.sh b/deployments/examples/oc10_ocis_parallel/config/oc10/10-custom-config.sh index 543981d5e..350ec6a03 100755 --- a/deployments/examples/oc10_ocis_parallel/config/oc10/10-custom-config.sh +++ b/deployments/examples/oc10_ocis_parallel/config/oc10/10-custom-config.sh @@ -37,4 +37,9 @@ gomplate \ occ market:upgrade --major web occ app:enable web +# enable testing app +echo "Cloning and enabling testing app..." +git clone --depth 1 https://github.com/owncloud/testing.git /var/www/owncloud/apps/testing +occ app:enable testing + true diff --git a/deployments/examples/oc10_ocis_parallel/docker-compose.yml b/deployments/examples/oc10_ocis_parallel/docker-compose.yml index b489fff4c..87a25a47b 100644 --- a/deployments/examples/oc10_ocis_parallel/docker-compose.yml +++ b/deployments/examples/oc10_ocis_parallel/docker-compose.yml @@ -102,7 +102,7 @@ services: STORAGE_USERS_DRIVER_OWNCLOUDSQL_REDIS_ADDR: redis:6379 # TODO: redis is not yet supported # ownCloudSQL sharing driver STORAGE_SHARING_USER_DRIVER: oc10-sql - STORAGE_SHARING_USER_SQL_USERNAME: owncloud + STORAGE_SHARING_USER_SQL_USERNAME: owncloud STORAGE_SHARING_USER_SQL_PASSWORD: owncloud STORAGE_SHARING_USER_SQL_HOST: oc10-db STORAGE_SHARING_USER_SQL_PORT: 3306 @@ -123,6 +123,7 @@ services: OCIS_MACHINE_AUTH_API_KEY: ${OCIS_MACHINE_AUTH_API_KEY:-change-me-please} # INSECURE: needed if oCIS / Traefik is using self generated certificates OCIS_INSECURE: "${INSECURE:-false}" + PROXY_ENABLE_BASIC_AUTH: "${PROXY_ENABLE_BASIC_AUTH:-false}" volumes: - ./config/ocis/proxy.json:/etc/ocis/proxy.json - ocis-data:/var/lib/ocis @@ -143,6 +144,8 @@ services: image: owncloud/server:${OC10_DOCKER_TAG:-latest} networks: ocis-net: + ports: + - 8080:8080 environment: # make ownCloud Web the default frontend OWNCLOUD_DEFAULT_APP: ${OWNCLOUD_DEFAULT_APP:-files} # can be switched to "web" @@ -248,6 +251,8 @@ services: image: osixia/openldap:latest networks: ocis-net: + ports: + - 636:636 command: --copy-service --loglevel debug environment: LDAP_TLS_VERIFY_CLIENT: never