Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Bitcoin node on Akash Network

Deploy on Akash

Variable Description
"LINK_BINARY=" The download address of the binary file.
"SNAPSHOT=" Link to lz4 node snapshot (disable if you want to sync the full node).
"ARGS=" bitcoind startup flags.

Resources

  • If you want use ephimeral storage (WARNING! Data will be lost when the container is restarted!):
profiles:
  compute:
    app:
      resources:
        cpu:
          units: 2.0
        memory:
          size: 2Gi
        storage:
          size: 600Gi
  • If you want use persistens storage:
  1. Uncomment in app section:
    params:
      storage:
        data:
          mount: /root/
  1. Uncomment in profiles section:
profiles:
  compute:
    app:
      resources:
        cpu:
          units: 2.0
        memory:
          size: 2Gi
        storage:
          size: 10Gi 
          - name: data
            size: 600Gi
            attributes:
              persistent: true
              class: beta3

Развертка Bitcoin ноды на Akash Network

Переменная Описание
"LINK_BINARY=" Ссылка на скачивание архива бинарного файла.
"SNAPSHOT=" Сслыка на lz4 снепшот ноды (отключите, если хотите загрузить полную историю блокчейна).
"ARGS=" Флаги запуска bitcoind.

Resources

  • Если вы хотите использовать эфимерное хранилище (ПРЕДУПРЕЖДЕНИЕ! При перезагрузке контейнера данные будут сброщшены!):
profiles:
  compute:
    app:
      resources:
        cpu:
          units: 2.0
        memory:
          size: 2Gi
        storage:
          size: 600Gi
  • Если вы хотите использовать постоянное хранилище:
  1. Раскомментируйте в секции app:
    params:
      storage:
        data:
          mount: /root/
  1. Раскомментируйте в секции profiles:
profiles:
  compute:
    app:
      resources:
        cpu:
          units: 2.0
        memory:
          size: 2Gi
        storage:
          size: 10Gi 
          - name: data
            size: 600Gi
            attributes:
              persistent: true
              class: beta3