From 9fa3e53b1f61cd72a6533e629edb09c3690ae0d6 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Mon, 6 Dec 2021 12:09:22 +0100 Subject: [PATCH] fix deployment example --- deployments/examples/ocis_web/docker-compose.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/deployments/examples/ocis_web/docker-compose.yml b/deployments/examples/ocis_web/docker-compose.yml index 9f372942c77..56ee15a504e 100644 --- a/deployments/examples/ocis_web/docker-compose.yml +++ b/deployments/examples/ocis_web/docker-compose.yml @@ -65,17 +65,15 @@ services: OCIS_MACHINE_AUTH_API_KEY: ${OCIS_MACHINE_AUTH_API_KEY:-change-me-please} OCIS_TRANSFER_SECRET: ${STORAGE_TRANSFER_SECRET:-replace-me-with-a-transfer-secret} # app registry - STORAGE_APP_REGISTRY_MIMETYPES_JSON: /var/tmp/ocis/app-config/mimetypes.json STORAGE_GATEWAY_GRPC_ADDR: 0.0.0.0:9142 # make the REVA gateway accessible to the app drivers - # proxy - PROXY_CONFIG_FILE: "/var/tmp/ocis/proxy-config/config.json" + STORAGE_APP_REGISTRY_MIMETYPES_JSON: /var/tmp/ocis/app-config/mimetypes.json # INSECURE: needed if oCIS / Traefik is using self generated certificates OCIS_INSECURE: "${INSECURE:-false}" volumes: - ./config/ocis/entrypoint-override.sh:/entrypoint-override.sh - - ./config/ocis/proxy-config.json:/var/tmp/ocis/proxy-config/config.json + - ./config/ocis/proxy.json:/etc/ocis/proxy.json - ./config/ocis/mimetypes.json:/var/tmp/ocis/app-config/mimetypes.json - - ocis-data:/var/tmp/ocis + - ocis-data:/var/lib/ocis labels: - "traefik.enable=true" - "traefik.http.routers.ocis.entrypoints=https"