Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sitecore

Alias

DFS 10.1.0

Sitecore Experience Platform 10.3 (Sitecore 10.3.0 rev. 008463)

10.3

Sitecore Experience Platform 10.2 (Sitecore 10.2.0 rev. 006766)

10.2

Sitecore Experience Platform 10.1 Update 1 (Sitecore 10.1.1 rev. 005862)

10.1 U1

Sitecore Experience Platform 10.0 Update 1 (Sitecore 10.0.1 rev. 004842)

10.0 U1

Sitecore Experience Platform 10.0 Initial Release (Sitecore 10.0 rev. 004346)

10.0

...

Testing the image

The docker image has been tested with the Sitecore’s custom-images site from their docker-examples repo, which runs Sitecore 10.3. In the following we will describe how what we installed the module as part of the docker containers.

  1. Open docker-examples/custom-images/docker-compose.override.yml and add the image digizuiternd/dfs:10.1.0.

    Code Block
    languagexml
     cm:
        image: ${REGISTRY}${COMPOSE_PROJECT_NAME}-xp0-cm:${VERSION:-latest}
        build:
          context: ./docker/build/cm
          args:
            BASE_IMAGE: ${SITECORE_DOCKER_REGISTRY}sitecore-xp0-cm:${SITECORE_VERSION}
            SPE_IMAGE: ${SITECORE_MODULE_REGISTRY}sitecore-spe-assets:${SPE_VERSION}
            SXA_IMAGE: ${SITECORE_MODULE_REGISTRY}sitecore-sxa-xp1-assets:${SXA_VERSION}
            CET_IMAGE: digizuiternd/dfs:10.1.0
            TOOLING_IMAGE: ${SITECORE_TOOLS_REGISTRY}sitecore-docker-tools-assets:${TOOLS_VERSION}
            SOLUTION_IMAGE: ${REGISTRY}${COMPOSE_PROJECT_NAME}-solution:${VERSION:-latest}        
        depends_on:
          - solution
        volumes:
          - ${LOCAL_DEPLOY_PATH}\website:C:\deploy
          - ${LOCAL_DATA_PATH}\cm:C:\inetpub\wwwroot\App_Data\logs
          - ${LOCAL_DATA_PATH}\devicedetection:C:\inetpub\wwwroot\App_Data\DeviceDetection
        environment:
          SITECORE_DEVELOPMENT_PATCHES: CustomErrorsOff
        entrypoint: powershell -Command "& C:\\tools\\entrypoints\\iis\\Development.ps1"