Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
version: "3.5"
services:
storej:
image: storjlabs/storagenode:latest
network_mode: "bridge"
container_name: storej
ports:
- "28967:28967"
- "14002:14002"
volumes:
- type: bind
source: /yourLocalNASVolume/app/identity
target: /app/identity
- type: bind
source: /yourLocalNASVolume/app/config
target: /app/config
environment:
- WALLET="0xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
- EMAIL="[email protected]"
- ADDRESS="DDNS:28967"
- STORAGE="2TB"
restart: always
"QUIC is misconfigured. You must forward port 28967 for both TCP and UDP to enable QUIC.
See Step 3. Setup Port Forwarding - Storj Node Operator Docs on how to do this"
...
ports:
- "28967:28967/tcp"
- "28967:28967/udp"
- "14002:14002"
volumes:
...
Considering the thread is over 2y old it is no wonder certain things changes. Tnx for the update.Thanks @Rusty for this summary!
I set it up today like this, but my Storj monitor showed a minor error regarding QUIC:
Code:"QUIC is misconfigured. You must forward port 28967 for both TCP and UDP to enable QUIC. See Step 3. Setup Port Forwarding - Storj Node Operator Docs on how to do this"
Root cause was located in the "ports" section of the compose script. It needed to be modified to the following, basically allowing both tcp and udp. Otherwise, docker is only opening the tcp connection.
Code:... ports: - "28967:28967/tcp" - "28967:28967/udp" - "14002:14002" volumes: ...
Thanks again mate for posting! Cheers.
Maybe this helps for anyone else stumbling through web search over this posting.
We use essential cookies to make this site work, and optional cookies to enhance your experience.