You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sitecore Docker Tools are utilities which improve developer experience when running Sitecore in a Docker environment. This includes:
4
+
5
+
*`sitecore-docker-tools-assets`, a Docker image with development scripts and entrypoints which can be used during Sitecore container builds.
6
+
*`SitecoreDockerTools`, a PowerShell module with functions used on the Sitecore container host to initialize the Sitecore Docker environment.
7
+
8
+
## Usage
9
+
10
+
Released versions of these utilities can be found on the Sitecore Container Registry and the Sitecore PowerShell Gallery. Usage details can be found in the [Sitecore container development documentation](https://doc.sitecore.com/developers/100/developer-tools/en/containers-in-sitecore-development.html).
11
+
12
+
### Docker Image
13
+
The scripts found in the Docker image are intended to be copied in via your custom `Dockerfile`, then used within it or your `docker-compose` override.
14
+
15
+
```Dockerfile
16
+
FROM ${TOOLS_IMAGE} as tools
17
+
FROM ${PARENT_IMAGE}
18
+
COPY --from=tools C:\tools C:\tools
19
+
```
20
+
21
+
### PowerShell Module
22
+
The PowerShell module can be installed and imported from the Sitecore PowerShell Gallery.
0 commit comments