Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mybee
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
mybee
Commits
28f54779
Unverified
Commit
28f54779
authored
Feb 24, 2021
by
Ivan Vandot
Committed by
GitHub
Feb 24, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix default config values and bump version inside docker-compose.yml (#1327)
parent
f9aaf29b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
31 deletions
+28
-31
bee.yaml
packaging/bee.yaml
+11
-11
README.md
packaging/docker/README.md
+1
-4
docker-compose.yml
packaging/docker/docker-compose.yml
+3
-3
env
packaging/docker/env
+2
-2
bee.yaml
packaging/homebrew/bee.yaml
+11
-11
No files found.
packaging/bee.yaml
View file @
28f54779
...
...
@@ -5,7 +5,7 @@
## initial nodes to connect to (default [/dnsaddr/bootnode.ethswarm.org])
# bootnode: [/dnsaddr/bootnode.ethswarm.org]
## enable clef signer
# clef-signer-enable: fals
e
clef-signer-enable
:
tru
e
## clef signer endpoint
clef-signer-endpoint
:
/var/lib/bee-clef/clef.ipc
## config file (default is /home/<user>/.bee.yaml)
...
...
@@ -17,9 +17,9 @@ data-dir: /var/lib/bee
## db capacity in chunks, multiply by 4096 to get approximate capacity in bytes
# db-capacity: 5000000
## debug HTTP API listen address (default ":1635")
#
debug-api-addr: 127.0.0.1:1635
debug-api-addr
:
127.0.0.1:1635
## enable debug HTTP API
# debug-api-enable: fals
e
debug-api-enable
:
tru
e
## disable a set of sensitive features in the api
# gateway-mode: false
## enable global pinning
...
...
@@ -38,12 +38,12 @@ data-dir: /var/lib/bee
# password: ""
## path to a file that contains password for decrypting keys
password-file
:
/var/lib/bee/password
## amount in BZZ below the peers payment threshold when we initiate settlement (default 10000)
# payment-early: 10000
## threshold in BZZ where you expect to get paid from your peers (default 100000)
# payment-threshold: 100000
## excess debt above payment threshold in BZZ where you disconnect from your peer (default
1
0000)
# payment-tolerance:
1
0000
## amount in BZZ below the peers payment threshold when we initiate settlement (default 10000
00000000
)
# payment-early: 10000
00000000
## threshold in BZZ where you expect to get paid from your peers (default 100000
00000000
)
# payment-threshold: 100000
00000000
## excess debt above payment threshold in BZZ where you disconnect from your peer (default
5000000000
0000)
# payment-tolerance:
5000000000
0000
## ENS compatible API endpoint for a TLD and with contract address, can be repeated, format [tld:][contract-addr@]url
# resolver-options: []
## whether we want the node to start with no listen addresses for p2p
...
...
@@ -54,8 +54,8 @@ password-file: /var/lib/bee/password
swap-endpoint
:
https://rpc.slock.it/goerli
## swap factory address
# swap-factory-address: ""
## initial deposit if deploying a new chequebook (default 100000000)
# swap-initial-deposit: 100000000
## initial deposit if deploying a new chequebook (default 100000000
000000000
)
# swap-initial-deposit: 100000000
000000000
## enable tracing
# tracing-enable: false
## endpoint to send tracing data (default "127.0.0.1:6831")
...
...
packaging/docker/README.md
View file @
28f54779
...
...
@@ -9,12 +9,9 @@ wget -q https://raw.githubusercontent.com/ethersphere/bee/master/packaging/docke
```
Set all configuration variables inside
`.env`
To configure
`clef`
set:
-
`CLEF_CHAINID=5`
for goerli
`clef`
is configured with
`CLEF_CHAINID=5`
for goerli
To configure
`bee`
set:
-
`BEE_CLEF_SIGNER_ENABLE=true`
to enable clef support
-
`BEE_CLEF_SIGNER_ENDPOINT=http://clef:8550`
-
`BEE_SWAP_ENDPOINT=https://rpc.slock.it/goerli`
Set bee password by either setting
`BEE_PASSWORD`
or
`BEE_PASSWORD_FILE`
...
...
packaging/docker/docker-compose.yml
View file @
28f54779
...
...
@@ -2,7 +2,7 @@ version: "3"
services
:
clef-1
:
image
:
ethersphere/clef:0.4.
7
image
:
ethersphere/clef:0.4.
8
restart
:
unless-stopped
environment
:
-
CLEF_CHAINID
...
...
@@ -11,13 +11,13 @@ services:
command
:
full
bee-1
:
image
:
ethersphere/bee:0.5.
0
image
:
ethersphere/bee:0.5.
1
restart
:
unless-stopped
environment
:
-
BEE_API_ADDR
-
BEE_BOOTNODE
-
BEE_CLEF_SIGNER_ENABLE
-
BEE_CLEF_SIGNER_ENDPOINT
-
BEE_CLEF_SIGNER_ENDPOINT
=http://clef-1:8550
-
BEE_CONFIG
-
BEE_CORS_ALLOWED_ORIGINS
-
BEE_DATA_DIR
...
...
packaging/docker/env
View file @
28f54779
...
...
@@ -3,7 +3,7 @@
### CLEF
## chain id to use for signing (1=mainnet, 3=ropsten, 4=rinkeby, 5=goerli) (default: 12345)
# CLEF_CHAINID=1234
5
CLEF_CHAINID=
5
### BEE
...
...
@@ -12,7 +12,7 @@
## initial nodes to connect to (default [/dnsaddr/bootnode.ethswarm.org])
# BEE_BOOTNODE=[/dnsaddr/bootnode.ethswarm.org]
## enable clef signer
# BEE_CLEF_SIGNER_ENABLE=fals
e
BEE_CLEF_SIGNER_ENABLE=tru
e
## clef signer endpoint
# BEE_CLEF_SIGNER_ENDPOINT=
## config file (default is /home/<user>/.bee.yaml)
...
...
packaging/homebrew/bee.yaml
View file @
28f54779
...
...
@@ -5,7 +5,7 @@
## initial nodes to connect to (default [/dnsaddr/bootnode.ethswarm.org])
# bootnode: [/dnsaddr/bootnode.ethswarm.org]
## enable clef signer
# clef-signer-enable: fals
e
clef-signer-enable
:
tru
e
## clef signer endpoint
clef-signer-endpoint
:
/usr/local/var/lib/swarm-clef/clef.ipc
## config file (default is /home/<user>/.bee.yaml)
...
...
@@ -17,9 +17,9 @@ data-dir: /usr/local/var/lib/swarm-bee
## db capacity in chunks, multiply by 4096 to get approximate capacity in bytes
# db-capacity: 5000000
## debug HTTP API listen address (default ":1635")
#
debug-api-addr: 127.0.0.1:1635
debug-api-addr
:
127.0.0.1:1635
## enable debug HTTP API
# debug-api-enable: fals
e
debug-api-enable
:
tru
e
## disable a set of sensitive features in the api
# gateway-mode: false
## enable global pinning
...
...
@@ -38,12 +38,12 @@ data-dir: /usr/local/var/lib/swarm-bee
# password: ""
## path to a file that contains password for decrypting keys
password-file
:
/usr/local/var/lib/swarm-bee/password
## amount in BZZ below the peers payment threshold when we initiate settlement (default 10000)
# payment-early: 10000
## threshold in BZZ where you expect to get paid from your peers (default 100000)
# payment-threshold: 100000
## excess debt above payment threshold in BZZ where you disconnect from your peer (default
1
0000)
# payment-tolerance:
1
0000
## amount in BZZ below the peers payment threshold when we initiate settlement (default 10000
00000000
)
# payment-early: 10000
00000000
## threshold in BZZ where you expect to get paid from your peers (default 100000
00000000
)
# payment-threshold: 100000
00000000
## excess debt above payment threshold in BZZ where you disconnect from your peer (default
5000000000
0000)
# payment-tolerance:
5000000000
0000
## ENS compatible API endpoint for a TLD and with contract address, can be repeated, format [tld:][contract-addr@]url
# resolver-options: []
## whether we want the node to start with no listen addresses for p2p
...
...
@@ -54,8 +54,8 @@ password-file: /usr/local/var/lib/swarm-bee/password
swap-endpoint
:
https://rpc.slock.it/goerli
## swap factory address
# swap-factory-address: ""
## initial deposit if deploying a new chequebook (default 100000000)
# swap-initial-deposit: 100000000
## initial deposit if deploying a new chequebook (default 100000000
000000000
)
# swap-initial-deposit: 100000000
000000000
## enable tracing
# tracing-enable: false
## endpoint to send tracing data (default "127.0.0.1:6831")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment