All Projects → AXErunners → docker-axed

AXErunners / docker-axed

Licence: MIT license
dockerized「AXE」daemon

Programming Languages

shell
77523 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to docker-axed

docker-ttrss
Tiny Tiny RSS feed reader as a Docker image.
Stars: ✭ 55 (+323.08%)
Mutual labels:  container
expfactory
software to generate a reproducible container with a battery of experiments
Stars: ✭ 29 (+123.08%)
Mutual labels:  container
dockupdater
Automatically keep your docker services and your docker containers up-to-date with the latest version
Stars: ✭ 76 (+484.62%)
Mutual labels:  container
chubbyphp-container
A minimal Dependency Injection Container (DIC) which implements PSR-11.
Stars: ✭ 14 (+7.69%)
Mutual labels:  container
prepopulated-mysql-container-example
This is an example on how to make a prepopulated container image.
Stars: ✭ 61 (+369.23%)
Mutual labels:  container
navio
Navio is a program to create and manage linux containers. This project exists only for study purposes, so feel free to contribute :)
Stars: ✭ 14 (+7.69%)
Mutual labels:  container
dioc
A dart simple dependency container based on code generation.
Stars: ✭ 47 (+261.54%)
Mutual labels:  container
docker-jre
Lean JRE 8 Docker container
Stars: ✭ 25 (+92.31%)
Mutual labels:  container
ibm-spectrum-scale-csi
The IBM Spectrum Scale Container Storage Interface (CSI) project enables container orchestrators, such as Kubernetes and OpenShift, to manage the life-cycle of persistent storage.
Stars: ✭ 41 (+215.38%)
Mutual labels:  container
ProxmoxVE PHP API
ProxmoxVE PHP API
Stars: ✭ 78 (+500%)
Mutual labels:  container
BitLens
🔎 Have your bits and eat them too! A C++17 bit lens container for vector types.
Stars: ✭ 20 (+53.85%)
Mutual labels:  container
CNeptune
CNeptune improve productivity & efficiency by urbanize .net module with meta-code to lay foundation for frameworks
Stars: ✭ 30 (+130.77%)
Mutual labels:  container
singularityware.github.io
base documentation site for Singularity software
Stars: ✭ 27 (+107.69%)
Mutual labels:  container
falcon-helm
Helm Charts for running CrowdStrike Falcon with Kubernetes
Stars: ✭ 34 (+161.54%)
Mutual labels:  container
k8s-knative-gitlab-harbor
Build container images with Knative + Gitlab + Harbor inside Kops cluster running on AWS
Stars: ✭ 23 (+76.92%)
Mutual labels:  container
devtoolset-container
Devtoolset container images based on Red Hat Software Collections, that provide a platform for building and running C and C++ applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 40 (+207.69%)
Mutual labels:  container
rkt-compose
CLI to run Docker Compose file as pod on rkt with integrated service discovery using Consul - EOL
Stars: ✭ 24 (+84.62%)
Mutual labels:  container
docker-compose-moodle
This project quickly builds a local workspace for Moodle (Apache2, PHP-FPM with XDEBUG y Postgres) using containers for each of its main components. The local workspace is built and managed by Docker Compose
Stars: ✭ 33 (+153.85%)
Mutual labels:  container
micromamba-docker
Rapid builds of small Conda-based containers using micromamba.
Stars: ✭ 97 (+646.15%)
Mutual labels:  container
crane
Crane is a easy-to-use and beautiful desktop application helps you build manage your container images.
Stars: ✭ 223 (+1615.38%)
Mutual labels:  container

axed for Docker

Docker Stats

Build Status

Docker image that runs the axed node in a container for easy deployment.

Requirements

  • Physical machine, cloud instance, or VPS that supports Docker (i.e. Vultr, Digital Ocean, KVM or XEN based VMs) running Ubuntu 14.04 or later (not OpenVZ containers!)
  • At least 4 GB to store the block chain files
  • At least 1 GB RAM + 2 GB swap file

Recommended and tested on Vultr 1024 MB RAM/320 GB disk instance @ $8/mo. Vultr also accepts Bitcoin payments! May run on the 512 MB instance, but took forever (1+ week) to initialize due to swap and disk thrashing.

Really Fast Quick Start

One liner for Ubuntu 14.04 LTS machines with JSON-RPC enabled on localhost and adds upstart init script:

curl https://raw.githubusercontent.com/axerunners/docker-axed/master/bootstrap-host.sh | sh -s trusty

Quick Start

  1. Create a axed-data volume to persist the axed blockchain data, should exit immediately. The axed-data container will store the blockchain when the node container is recreated (software upgrade, reboot, etc):

     docker volume create --name=axed-data
     docker run -v axed-data:/axe --name=axed-node -d \
         -p 9937:9937 \
         -p 127.0.0.1:9337:9337 \
         axerunners/axed
    
  2. Verify that the container is running and axed node is downloading the blockchain

     $ docker ps
     CONTAINER ID        IMAGE                         COMMAND             CREATED             STATUS              PORTS                                              NAMES
     d0e1076b2dca        axerunners/axed:latest          "axe_oneshot"      2 seconds ago       Up 1 seconds        127.0.0.1:9337->9337/tcp, 0.0.0.0:9937->9937/tcp   axed-node
    
  3. You can then access the daemon's output thanks to the docker logs command

     docker logs -f axed-node
    
  4. Install optional init scripts for upstart and systemd are in the init directory.

Documentation

  • To run in testnet, add environment variable TESTNET=1 to docker run as such:

      docker run -v axed-data:/axe --name=axed-node -d \
          --env TESTNET=1 \
          -p 9937:9937 \
          -p 127.0.0.1:9337:9337 \
          axerunners/axed
    
  • Additional documentation in the docs folder.

Credits

Original work by Kyle Manna https://github.com/kylemanna/docker-bitcoind. Modified to use AXE Core instead of Bitcoin Core.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].