How to add operator.wallet-features in docker-compose.yml

Hi, i have docker-compose.yml like this:

Blockquote
version: “3.3”
services:
storagenode1:
image: storjlabs/storagenode:latest
container_name: storagenode1
volumes:
- type: bind
source: “/media/storj1/storagenode”
target: /app/identity
- type: bind
source: “/media/storj1/storage”
target: /app/config
ports:
- “28967:28967/tcp”
- “28967:28967/udp”
- 14002:14002
restart: unless-stopped
stop_grace_period: 300s
environment:
- WALLET=0x0xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
- EMAIL=xxxxxxxxxxxx@gmail.com
- ADDRESS=xxxxxxxxxxxxxx:28967
- STORAGE=10.75TB

How to add --operator.wallet-features=zksync

This month I received the payout on ETH L1.
I have my storj on zksync lite.

I answer myself:
add a “command” section

command: “–operator.wallet-features=zksync-era,zksync”

However, in this way payments will be sent to which layer? Will I continue to receive them on zksync lite ?

zksync-era, if that fails — fallback to zksync lite.

You shall replace the quotes with the " and with -- at the very least.

You can also not mess with command line and just edit config file.

2 Likes