An open API service indexing awesome lists of open source software.

https://github.com/fabiang/docker-wix

WiX Toolset v3-v6 for creating MSI installers (Docker Image)
https://github.com/fabiang/docker-wix

docker docker-image windows wix wix-toolset

Last synced: 4 months ago
JSON representation

WiX Toolset v3-v6 for creating MSI installers (Docker Image)

Awesome Lists containing this project

README

          

# fabiang/wix — Wix Toolset Docker Image (Windows Container)

> THE MOST POWERFUL SET OF TOOLS AVAILABLE TO CREATE YOUR WINDOWS INSTALLATION EXPERIENCE.

… [as an Docker image](https://hub.docker.com/r/fabiang/wix) for Windows machines.

## Available images

### Windows

See [Docker hub page for available tags](https://hub.docker.com/r/fabiang/wix/tags?page=1&ordering=name).

## Usage

Version 5+:

```
docker run -it --rm `
-v "C:\Users\myuser\Documents\Projects\MyProject:C:\app" `
fabiang/docker-wix:6-windowsservercore-ltsc2022 `
wix build -define ProductVersion=${productVersion} -define SomeParam=Foobar .\\MyProject.wxs -arch x64
```

Version 3:

```
docker run -it --rm `
-v "C:\Users\myuser\Documents\Projects\MyProject:C:\app" `
fabiang/docker-wix:3-windowsservercore-ltsc2022 `
candle.exe -dProductVersion=${productVersion} -dSomeParam=Foobar .\\MyProject.wxs -arch x64

docker run -it --rm `
-v "C:\Users\myuser\Documents\Projects\MyProject:C:\app" `
fabiang/docker-wix:3-windowsservercore-ltsc2022 `
light.exe -sval .\\MyProject.wixobj'
```

## LICENSE

The Wix toolset is released under Microsoft Reciprocal License (MS-RL).
[The source code of the repository is licensed as:](LICENSE)

> BSD 2-Clause License
>
> Copyright (c) 2022-2025, Fabian Grutschus
> All rights reserved.