Last active
December 4, 2021 13:53
-
-
Save pakonda/f52375f6ddbe45d6f64861125c85e39c to your computer and use it in GitHub Desktop.
Revisions
-
pakonda renamed this gist
Dec 4, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
pakonda created this gist
Dec 4, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,36 @@ version: '3' services: storagenode: container_name: storagenode image: storjlabs/storagenode:latest environment: - WALLET=xxx - EMAIL=xxx - ADDRESS=xxx:1234 - STORAGE=1TB # - STARTUP=true ports: - 28967:28967 - 14002:14002 volumes: - /root/.local/share/storj/identity:/app/identity - /mnt/storj/storagenode:/app/config command: "--operator.wallet-features=zksync" restart: unless-stopped logging: driver: "json-file" options: max-size: "100m" watchtower: container_name: watchtower image: storjlabs/watchtower:latest volumes: - /var/run/docker.sock:/var/run/docker.sock command: storagenode watchtower --stop-timeout 300s --interval 21600 restart: unless-stopped logging: driver: "json-file" options: max-size: "20m"