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
Copy file name to clipboardExpand all lines: content/waf/install/disconnected-environment.md
+44Lines changed: 44 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,7 @@ You will need `git` and `wget` in your connected environment.
57
57
58
58
Run the following two commands: replace `<hugo-release>` with the tarball appropriate to the environment from [the release page](https://github.com/gohugoio/hugo/releases/tag/v0.147.8):
Once you've obtained the package files and transferred them to your disconnected environment, you can directly install them or add them to a local repository.
78
103
79
104
## Download Docker images
80
105
106
+
After pulling or building Docker images in a connected environment, you can save them to `.tar` files:
107
+
108
+
```shell
109
+
docker save -o waf-enforcer.tar waf-enforcer:5.2.0
110
+
docker save -o waf-config-mgr.tar waf-config-mgr:5.2.0
111
+
# Optional, if using IP intelligence
112
+
docker save -o waf-ip-intelligence.tar waf-ip-intelligence:5.2.0
113
+
```
114
+
115
+
You can then transfer the files and load the images in your disconnected environment:
116
+
117
+
```shell
118
+
docker load -i waf-enforcer.tar
119
+
docker load -i waf-config-mgr.tar
120
+
# Optional, if using IP intelligence
121
+
docker load -i waf-ip-intelligence.tar
122
+
```
123
+
124
+
Ensure your Docker compose files use the tagged images you've transferred.
0 commit comments