We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9889f12 commit 261916eCopy full SHA for 261916e
1 file changed
chapters/mitigations-and-defensive-strategies/defense-mechanisms/activities/03-rwslotmachine3/deploy/README.md
@@ -0,0 +1,36 @@
1
+#Build, Run and Stop the container
2
+
3
+- Build docker images for build and runtime stages:
4
5
+ ```bash
6
+ make create_build
7
+ make create_runtime
8
+ ```
9
10
+- Run the containers:
11
12
13
+ make run_build
14
+ make run_runtime
15
16
17
+- Stop the containers:
18
19
20
+ make stop_build
21
+ make stop_runtime
22
23
24
+- Clean
25
26
27
+ make clean_all
28
29
30
+#Use the container and the executable
31
32
+Build and run the runtime container and from host run:
33
34
35
+ nc 127.0.0.1 32001
36
0 commit comments