This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
Hi!,
I'm really new to Sia and lately I wanted to set up a node on my personal server, I've used Docker. I've created a stack with two containers: nebulouslabs/sia
and siacentral/host-dashboard
.
This is my configuration:
```
version: "3.7"
services:
sia:
image: nebulouslabs/sia:alpine-latest
container_name: siahost
volumes:
- /*************/sia/data:/sia-data
- /**********/renter-data:/sia-renter
restart: unless-stopped
environment:
- SIA_WALLET_PASSWORD=*************
- SIA_API_PASSWORD=****************
ports:
- 127.0.0.1:9980:9980
- 9981:9981
- 9982:9982
- 9983:9983
- 9984:9984
networks:
- sia
dashboard:
container_name: siahost-dashboard
image: siacentral/host-dashboard:latest
depends_on:
- sia
links:
- sia
environment:
- SIA_API_ADDR=sia:9980
volumes:
- /****************/sia/dashboard-data:/data
ports:
- 8884:8884
restart: unless-stopped
networks:
- sia
networks: sia: driver: bridge ```
Everything seems working, consensus is synced and I've moved some SC to my new wallet. I've forwarded the ports 9981-9984 to my host (I'm not totally sure that this is correct) and I've announced it.
I've also setup the pricing (I'm not sure that I've input reasonable prices, do you have any example for that?)
I've also stopped all the contracts for now.
Now the problem is that opening the dashboard I can see 2 alerts:
- Host is not accepting contracts (That it's fine)
- Skynet registry disabled
How do I unlock the skynet functionalities? Is it connected with the "accepting contracts" flag?
I've also saw that on SiaStats there is a benchmark for each server, is there a way to run that benchmark locally and check the score before to start to accept contracts? Just to be sure that I've configured everything correctly.
Thanks in advance. H2K
Post Details
- Posted
- 3 years ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/siacoin/com...