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
1.**`-p 1634:1634`**: This maps port 1634 on all network interfaces of your host machine to port 1634 inside the container. This is used for P2P communication.
308
308
309
-
1.**`ethersphere/bee:2.2.0`**: This specifies the Docker image to use for the container. In this case, it is the `ethersphere/bee` image with the tag `2.2.0`.
309
+
1.**`ethersphere/bee:2.3.0`**: This specifies the Docker image to use for the container. In this case, it is the `ethersphere/bee` image with the tag `2.3.0`.
310
310
311
311
1.**`start --config /home/bee/bee.yml`**: This specifies the command to run inside the container. It starts the Bee node using the configuration file located at `/home/bee/bee.yml`.
312
312
:::
@@ -324,7 +324,7 @@ If everything is set up correctly, you should see your Bee node listed:
324
324
```bash
325
325
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
326
326
NAMES
327
-
e53aaa4e76ec ethersphere/bee:2.2.0 "bee start --config …" 17 seconds ago Up 16 seconds 127.0.0.1:1633->1633/tcp, 0.0.0.0:1634->1634/tcp, :::1634->1634/tcp, bee-node
327
+
e53aaa4e76ec ethersphere/bee:2.3.0 "bee start --config …" 17 seconds ago Up 16 seconds 127.0.0.1:1633->1633/tcp, 0.0.0.0:1634->1634/tcp, :::1634->1634/tcp, bee-node
328
328
```
329
329
330
330
And check the logs:
@@ -497,14 +497,14 @@ cat ./node_01/bee.yml
497
497
You can use the same Docker Compose configuration for all the node types.
498
498
499
499
:::info
500
-
Note that we have specified the exact version number of the image using the 2.2.0 tag. It's recommended to always specify the exact version number you need using the version tag. You can find all available tags for Bee on [Docker Hub](https://hub.docker.com/r/ethersphere/bee/tags).
500
+
Note that we have specified the exact version number of the image using the 2.3.0 tag. It's recommended to always specify the exact version number you need using the version tag. You can find all available tags for Bee on [Docker Hub](https://hub.docker.com/r/ethersphere/bee/tags).
501
501
:::
502
502
503
503
```yml
504
504
services:
505
505
bee_01:
506
506
container_name: bee-node_01
507
-
image: ethersphere/bee:2.2.0
507
+
image: ethersphere/bee:2.3.0
508
508
command: start --config /home/bee/bee.yml
509
509
volumes:
510
510
- ./node_01/.bee:/home/bee/.bee
@@ -565,7 +565,7 @@ If we did everything properly we should see our node listed here:
565
565
```bash
566
566
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
567
567
NAMES
568
-
e53aaa4e76ec ethersphere/bee:2.2.0 "bee start --config …" 17 seconds ago Up 16 seconds 127.0.0.1:1636->1633/tcp, 0.0.0.0:1637->1634/tcp, :::1637->1634/tcp, bee-node_01
568
+
e53aaa4e76ec ethersphere/bee:2.3.0 "bee start --config …" 17 seconds ago Up 16 seconds 127.0.0.1:1636->1633/tcp, 0.0.0.0:1637->1634/tcp, :::1637->1634/tcp, bee-node_01
569
569
```
570
570
571
571
Now let's check our logs:
@@ -676,7 +676,7 @@ Here is the Docker compose configuration for running a hive of two Bee nodes:
676
676
services:
677
677
bee_01:
678
678
container_name: bee-node_01
679
-
image: ethersphere/bee:2.2.0
679
+
image: ethersphere/bee:2.3.0
680
680
command: start --config /home/bee/bee.yml
681
681
volumes:
682
682
- ./node_01/.bee:/home/bee/.bee
@@ -686,7 +686,7 @@ services:
686
686
- 1634:1634# p2p port
687
687
bee_02:
688
688
container_name: bee-node_02
689
-
image: ethersphere/bee:2.2.0
689
+
image: ethersphere/bee:2.3.0
690
690
command: start --config /home/bee/bee.yml
691
691
volumes:
692
692
- ./node_02/.bee:/home/bee/.bee
@@ -720,8 +720,8 @@ docker ps
720
720
```shell
721
721
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS
722
722
NAMES
723
-
a62ec5143d30 ethersphere/bee:2.2.0 "bee start --config …" 2 seconds ago Up 1 second 127.0.0.1:1636->1633/tcp, 0.0.0.0:1637->1634/tcp, :::1637->1634/tcp, bee-node_02
724
-
a3496b9bb2c8 ethersphere/bee:2.2.0 "bee start --config …" 2 seconds ago Up 1 second 127.0.0.1:1633->1633/tcp, 0.0.0.0:1634->1634/tcp, :::1634->1634/tcp bee-node_01
723
+
a62ec5143d30 ethersphere/bee:2.3.0 "bee start --config …" 2 seconds ago Up 1 second 127.0.0.1:1636->1633/tcp, 0.0.0.0:1637->1634/tcp, :::1637->1634/tcp, bee-node_02
724
+
a3496b9bb2c8 ethersphere/bee:2.3.0 "bee start --config …" 2 seconds ago Up 1 second 127.0.0.1:1633->1633/tcp, 0.0.0.0:1634->1634/tcp, :::1634->1634/tcp bee-node_01
If neither of the above methods works for your system, you can see our guide for [building directly from source](/docs/bee/installation/build-from-source).
@@ -771,7 +771,7 @@ bee version
771
771
```
772
772
773
773
```
774
-
2.2.0
774
+
2.3.0
775
775
```
776
776
777
777
Once the Bee node has been funded, the chequebook deployed, and postage stamp
0 commit comments