diff --git a/docs/deployment.md b/docs/deployment.md
index 9c9c033..d0ac926 100644
--- a/docs/deployment.md
+++ b/docs/deployment.md
@@ -4,9 +4,40 @@ This guide is deliberately written at a high level and with minimal details
because it is assumed that VSP operators will already have a level of
familiarity with Decred software and a level of sysadmin experience.
-
-
-
+```mermaid
+%%{init:{
+ "theme": "neutral",
+ "themeVariables": {
+ "fontSize": "16px",
+ "clusterBkg": "#E9F8FE",
+ "clusterBorder": "#3D5873",
+ "mainBkg": "#2DD8A3",
+ "primaryColor": "#2970FF"
+ }
+}}%%
+
+graph LR
+
+subgraph Front-end Server
+ nginx(nginx) --> vspd(vspd)
+ vspd --> dcrd0(dcrd)
+end
+
+subgraph voting3 [Voting Server 3]
+ dcrwallet3(dcrwallet) --> dcrd3(dcrd)
+end
+
+subgraph voting2 [Voting Server 2]
+ dcrwallet2(dcrwallet) --> dcrd2(dcrd)
+end
+
+subgraph voting1 [Voting Server 1]
+ dcrwallet1(dcrwallet) --> dcrd1(dcrd)
+end
+
+vspd ----> dcrwallet1 & dcrwallet2 & dcrwallet3
+web(Internet
Traffic) ---> nginx
+```
## Prerequisites
diff --git a/docs/img/architecture-source.md b/docs/img/architecture-source.md
deleted file mode 100644
index e8206aa..0000000
--- a/docs/img/architecture-source.md
+++ /dev/null
@@ -1,38 +0,0 @@
-Below is the source for architecture.png in mermaid.js syntax.
-
-Can be rendered with any mermaid.js deployment, for example .
-
-```no-highlight
-%%{init:{
- "theme": "neutral",
- "themeVariables": {
- "fontSize": "16px",
- "clusterBkg": "#E9F8FE",
- "clusterBorder": "#3D5873",
- "mainBkg": "#2DD8A3",
- "primaryColor": "#2970FF"
- }
-}}%%
-
-graph LR
-
-subgraph Front-end Server
- nginx(nginx) --> vspd(vspd)
- vspd --> dcrd0(dcrd)
-end
-
-subgraph voting3 [Voting Server 3]
- dcrwallet3(dcrwallet) --> dcrd3(dcrd)
-end
-
-subgraph voting2 [Voting Server 2]
- dcrwallet2(dcrwallet) --> dcrd2(dcrd)
-end
-
-subgraph voting1 [Voting Server 1]
- dcrwallet1(dcrwallet) --> dcrd1(dcrd)
-end
-
-vspd ----> dcrwallet1 & dcrwallet2 & dcrwallet3
-web(Internet
Traffic) ---> nginx
-```
diff --git a/docs/img/architecture.png b/docs/img/architecture.png
deleted file mode 100644
index c45a5ef..0000000
Binary files a/docs/img/architecture.png and /dev/null differ