diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,21 +1,26 @@
 # Revision history for viewprof
 
-## 0.0.0.4 (2017-06-28)
+## 0.0.0.5 - 2017-07-10
 
 * Relax upper version bound for brick
+* Add Docker support on Windows
 
-## 0.0.0.3 (2017-06-12)
+## 0.0.0.4 - 2017-06-28
 
 * Relax upper version bound for brick
 
-## 0.0.0.2 (2017-02-14)
+## 0.0.0.3 - 2017-06-12
 
+* Relax upper version bound for brick
+
+## 0.0.0.2 - 2017-02-14
+
 * Update ghc-prof to 1.4.0
 
-## 0.0.0.1 (2017-01-25)
+## 0.0.0.1 - 2017-01-25
 
 * Relax upper version bounds for vty and brick
 
-## 0.0.0 (2017-01-20)
+## 0.0.0 - 2017-01-20
 
 * Initial release
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
 
 viewprof is a text-based interactive GHC .prof viewer.
 
-![screenshot](./img/screenshot.png)
+![screenshot](img/screenshot.png)
 
 It has three display modes:
 
@@ -17,10 +17,27 @@
 
 ## Installation
 
-Note: Currently viewprof doesn't support Windows because the underlying library (vty) doesn't support it yet. See [#1](https://github.com/maoe/viewprof/issues/1).
-
 ```
 stack install viewprof
+```
+
+### On Windows
+
+#### Prerequisites
+
+- [Docker for Windows](https://docs.docker.com/docker-for-windows/install/) or [Docker Toolbox](https://docs.docker.com/toolbox/overview/).
+    - Currently tried with: [Docker Toolbox v17.04.0ce](https://github.com/docker/toolbox/releases/tag/v17.04.0-ce) on Windows 10 Home.
+- [cygpath](https://cygwin.com/cygwin-ug-net/cygpath.html)
+    - Bundled with [Cygwin](https://www.cygwin.com/), [MSYS2](http://www.msys2.org/) etc.
+
+#### How to install and launch
+
+```bat
+git clone git@github.com:maoe/viewprof.git
+cd viewprof/docker
+docker-machine start
+docker build -t viewprof .
+.\viewprof.bat path/to/file.prof
 ```
 
 ## Usage
diff --git a/img/screenshot.png b/img/screenshot.png
new file mode 100644
Binary files /dev/null and b/img/screenshot.png differ
diff --git a/viewprof.cabal b/viewprof.cabal
--- a/viewprof.cabal
+++ b/viewprof.cabal
@@ -1,9 +1,9 @@
 name: viewprof
-version: 0.0.0.4
+version: 0.0.0.5
 synopsis: Text-based interactive GHC .prof viewer
 description: Text-based interactive GHC .prof viewer
 homepage: https://github.com/maoe/viewprof
-bug-reports: https://github.com/maoe/lifted-async/issues
+bug-reports: https://github.com/maoe/viewprof/issues
 license: BSD3
 license-file: LICENSE
 author: Mitsutoshi Aoe
@@ -14,6 +14,7 @@
 extra-source-files:
   CHANGELOG.md
   README.md
+  img/screenshot.png
 cabal-version: >= 1.10
 tested-with: GHC == 8.0.2
 
@@ -21,7 +22,7 @@
   main-is: viewprof.hs
   build-depends:
       base >= 4.9 && < 4.10
-    , brick >= 0.16 && < 0.20
+    , brick >= 0.16 && < 0.21
     , containers >= 0.5.7 && < 0.6
     , ghc-prof >= 1.4 && < 1.5
     , lens >= 4.14 && < 4.16
