Giter Site home page Giter Site logo

arm image about chia-docker HOT 5 CLOSED

chia-network avatar chia-network commented on July 17, 2024 6
arm image

from chia-docker.

Comments (5)

justinengland avatar justinengland commented on July 17, 2024 5

i think this is a valid feature request though. have my thumb up. ill add it to the todo list.

from chia-docker.

Tezonis avatar Tezonis commented on July 17, 2024 2

Thank you @Cyber1000, I didn't know it was so simple to build in docker-compose, I can confirm it's working too on my NAS.
Good workaround while waiting for a proper arm image :)

from chia-docker.

Cyber1000 avatar Cyber1000 commented on July 17, 2024 1

2 Options

  • disclaimer: it will work on anything which is more like a full linux-system, like a rpi (testet on rpi4 with raspbery os 64bit), it may depend on systems like NAS-devices which may be limited in their tooling.

docker-compose

If you get docker-compose running you may do a git clone of this repo and add the following to a new file named docker-compose.yml

version: "3"

services:
  chia:
    container_name: chia
    build:
       context: .
       args:
             BRANCH: 1.1.3
    ports:
      - "8444:8444/tcp"
      - "8555:8555/tcp"
    volumes:
      - ./plots:/plots
    restart: always
  • explanation
    • BRANCH 1.1.3 -> as far as I see 1.1.3 seems to be the latest stable version for now
    • ./plots maps a local plots dir to the internal plots-dir
  • after that you can start it with docker-compose up -d
  • this builds the image locally on your device and starts the container afterwards

docker only

  • git clone this repo
  • docker build --build-arg BRANCH=1.1.3 -t chia:latest
  • after that you can use chia:latest (your local build image) instead of ghcr.io/chia-network/chia:latest
    docker run --name <container-name> -d chia:latest

from chia-docker.

justinengland avatar justinengland commented on July 17, 2024

this docker image does not support arm atm. that arm build is for the chia gui installer.

from chia-docker.

na avatar na commented on July 17, 2024

docker only

  • git clone this repo
  • docker build --build-arg BRANCH=1.1.3 -t chia:latest
  • after that you can use chia:latest (your local build image) instead of ghcr.io/chia-network/chia:latest
    docker run --name <container-name> -d chia:latest

I can confirm that this option worked on my QNAP NAS.

from chia-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.