-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yml
35 lines (35 loc) · 964 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: "3.4"
services:
bee:
image: bee.swarm.public.dappnode.eth:2.3.2
build:
context: bee
args:
UPSTREAM_VERSION: v2.3.2
ports:
- "1634:1634"
volumes:
- bee-data:/home/bee/.bee
environment:
BEE_API_ADDR: ":1633"
BEE_BLOCKCHAIN_RPC_ENDPOINT: http://nethermind-xdai.dappnode:8545
BEE_RESOLVER_OPTIONS: http://erigon.dappnode:8545
BEE_FULL_NODE: "true"
BEE_DEBUG_API_ENABLE: "true"
BEE_SWAP_ENABLE: "true"
BEE_TARGET_NEIGHBORHOOD: ""
BEE_VERBOSITY: info
BEE_RESERVE_CAPACITY_DOUBLING: "0"
BEE_CORS_ALLOWED_ORIGINS: "*"
BEE_WELCOME_MESSAGE: Swarming on DAppNode 🐝
BEE_PASSWORD_FILE: /home/bee/.bee/password
BEE_DB_ACTION: none
EXTRA_OPTS: ""
restart: unless-stopped
dashboard:
image: dashboard.swarm.public.dappnode.eth:2.3.2
build:
context: dashboard
restart: unless-stopped
volumes:
bee-data: {}