File tree 4 files changed +12
-12
lines changed
4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Build
4
4
5
- * docker build -t <name >/storm-base base
6
- * docker build -t <name >/storm-nimbus nimbus
7
- * docker build -t <name >/storm-worker worker
5
+ * ``` docker build -t <name>/storm-base base ```
6
+ * ``` docker build -t <name>/storm-nimbus nimbus ```
7
+ * ``` docker build -t <name>/storm-worker worker```
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ environment for interacting with a Storm cluster.
5
5
6
6
# Build
7
7
8
- * docker build -t <name >/storm-base .
8
+ * ``` docker build -t <name>/storm-base . ```
9
9
10
10
# Use
11
11
12
- * docker run -it <name >/storm-base sh
13
- * cd /opt/apache/storm
14
- * /configure.sh <zookeeper_ip> <nimbus_ip>
15
- * ./bin/storm ...
12
+ * ``` docker run -it <name>/storm-base sh ```
13
+ * ``` cd /opt/apache/storm ```
14
+ * ``` /configure.sh <zookeeper_ip> <nimbus_ip> ```
15
+ * ``` ./bin/storm ... ```
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ This image is the head node for a Storm cluster.
4
4
5
5
# Build
6
6
7
- * docker build -t <name >/storm-nimbus .
7
+ * ``` docker build -t <name>/storm-nimbus . ```
8
8
9
9
# Use
10
10
11
- * docker run -d --name nimbus <name >/storm-nimbus <zookeeper_ip>
11
+ * ``` docker run -d --name nimbus <name>/storm-nimbus <zookeeper_ip> ```
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ This image is a worker for a Storm cluster.
4
4
5
5
# Build
6
6
7
- * docker build -t <name >/storm-worker .
7
+ * ``` docker build -t <name>/storm-worker . ```
8
8
9
9
# Use
10
10
11
- * docker run -d <name >/storm-worker <zookeeper_ip> <nimbus_ip>
11
+ * ``` docker run -d <name>/storm-worker <zookeeper_ip> <nimbus_ip> ```
You can’t perform that action at this time.
0 commit comments