Commit f92c66fc authored by Ivan Vandot's avatar Ivan Vandot Committed by GitHub

fix multiple typos in docker-compose (#1058)

parent 58256d98
# Docker # Docker compose
The docker-compose provides an app container for bee itself and a signer container for Clef. The docker-compose provides an app container for Bee itself and a signer container for Clef.
To prepare your machine to run docker compose execute To prepare your machine to run docker compose execute
``` ```
mkdir -p bee && cd bee mkdir -p bee && cd bee
...@@ -26,7 +26,7 @@ Mount password file local file system by adding ...@@ -26,7 +26,7 @@ Mount password file local file system by adding
``` ```
- ./password:/password - ./password:/password
``` ```
to app volumes inside `docker-compose.yml` to bee volumes inside `docker-compose.yml`
Start it with Start it with
``` ```
...@@ -35,5 +35,5 @@ docker-compose up -d ...@@ -35,5 +35,5 @@ docker-compose up -d
From logs find URL line with `on goerli you can get both goerli eth and goerli bzz from` and prefund your node From logs find URL line with `on goerli you can get both goerli eth and goerli bzz from` and prefund your node
``` ```
docker-compose logs -f app docker-compose logs -f bee
``` ```
...@@ -48,9 +48,9 @@ services: ...@@ -48,9 +48,9 @@ services:
- BEE_VERBOSITY - BEE_VERBOSITY
- BEE_WELCOME_MESSAGE - BEE_WELCOME_MESSAGE
ports: ports:
- "${API_ADDR:-1633}:${BEE_API_ADDR:-1633}" - "${API_ADDR:-1633}${BEE_API_ADDR:-:1633}"
- "${P2P_ADDR:-1634}:${BEE_P2P_ADDR:-1634}" - "${P2P_ADDR:-1634}${BEE_P2P_ADDR:-:1634}"
- "127.0.0.1:${DEBUG_API_ADDR:-1635}:${BEE_DEBUG_API_ADDR:-1635}" - "${DEBUG_API_ADDR:-127.0.0.1:1635}${BEE_DEBUG_API_ADDR:-:1635}"
volumes: volumes:
- bee:/home/bee/.bee - bee:/home/bee/.bee
command: start command: start
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
## debug HTTP API listen address (default ":1635") ## debug HTTP API listen address (default ":1635")
# BEE_DEBUG_API_ADDR=:1635 # BEE_DEBUG_API_ADDR=:1635
## enable debug HTTP API ## enable debug HTTP API
# BEE_DEBUG_API_ENABLE=true # BEE_DEBUG_API_ENABLE=false
## disable a set of sensitive features in the api ## disable a set of sensitive features in the api
# BEE_GATEWAY_MODE=false # BEE_GATEWAY_MODE=false
## enable global pinning ## enable global pinning
...@@ -35,8 +35,8 @@ ...@@ -35,8 +35,8 @@
# BEE_NAT_ADDR="" # BEE_NAT_ADDR=""
## ID of the Swarm network (default 1) ## ID of the Swarm network (default 1)
# BEE_NETWORK_ID=1 # BEE_NETWORK_ID=1
## P2P listen address (default ":1644") ## P2P listen address (default ":1634")
# BEE_P2P_ADDR=:1644 # BEE_P2P_ADDR=:1634
## enable P2P QUIC protocol ## enable P2P QUIC protocol
# BEE_P2P_QUIC_ENABLE=false # BEE_P2P_QUIC_ENABLE=false
## enable P2P WebSocket transport ## enable P2P WebSocket transport
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment