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: README.md
+15
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,21 @@ This will call the script in [`emscr/builds/openssl/build.sh`](https://github.co
51
51
52
52
The created files `openssl.wasm` and `openssl.js` are then copied into `emscr/binary`, where the webpack server will deliver them from.
53
53
54
+
## Docker Integration
55
+
56
+
The source code contains `Dockerfile` which allows you to create a [`docker`](https://www.docker.com/) image. To create a new one use the following command. Note that built app inside the image will be hosted on the [`nginx`](https://github.com/nginx/nginx) http server.
57
+
58
+
```shell
59
+
$ docker build -t openssl-wt .
60
+
```
61
+
62
+
For create a docker container use the:
63
+
64
+
```shell
65
+
$ docker run --rm -it -p 10080:80 -d openssl-wt
66
+
```
67
+
68
+
After that you can view the OpenSSL Webterm at http://localhost:10080
0 commit comments