Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukechilds/docker-vertcoind
Run a full Vertcoin node with one command
https://github.com/lukechilds/docker-vertcoind
container cryptocurrencies cryptocurrency docker vertcoin vertcoind
Last synced: about 2 months ago
JSON representation
Run a full Vertcoin node with one command
- Host: GitHub
- URL: https://github.com/lukechilds/docker-vertcoind
- Owner: lukechilds
- License: mit
- Created: 2017-09-17T07:54:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-05T05:06:58.000Z (about 1 year ago)
- Last Synced: 2024-10-26T12:36:11.743Z (2 months ago)
- Topics: container, cryptocurrencies, cryptocurrency, docker, vertcoin, vertcoind
- Language: Dockerfile
- Homepage:
- Size: 13.7 KB
- Stars: 10
- Watchers: 5
- Forks: 13
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# docker-vertcoind
[![Build Status](https://travis-ci.org/lukechilds/docker-vertcoind.svg?branch=master)](https://travis-ci.org/lukechilds/docker-vertcoind)
[![Image Layers](https://images.microbadger.com/badges/image/lukechilds/vertcoind.svg)](https://microbadger.com/images/lukechilds/vertcoind)
[![Docker Pulls](https://img.shields.io/docker/pulls/lukechilds/vertcoind.svg)](https://hub.docker.com/r/lukechilds/vertcoind/)> Run a full Vertcoin node with one command
A Docker configuration with sane defaults for running a full
Vertcoin node.## Usage
```
docker run -v /home/username/vertcoin:/data -p 5889:5889 lukechilds/vertcoind
```If there's a `vertcoin.conf` in the `/data` volume it'll be used. If not, one will be created for you with a randomly generated JSON-RPC password.
### JSON-RPC
To access JSON-RPC you'll also need to expose port 5888. You probably only want this available to localhost:
```
docker run -v /home/username/vertcoin:/data -p 5889:5889 -p 127.0.0.1:5888:5888 lukechilds/vertcoind
```### CLI Arguments
All CLI arguments are passed directly through to vertcoind.
You can use this to configure via CLI args without a config file:
```
docker run -v /home/username/vertcoin:/data \
-p 5889:5889 \
-p 127.0.0.1:5888:5888 \
lukechilds/vertcoind -rpcuser=jonsnow -rpcpassword=ikn0wnothin
```Or just use the container like a vertcoind binary:
```
$ docker run lukechilds/vertcoind -version
Vertcoin Core Daemon version v0.11.1.0-9c5018b
Copyright (C) 2009-2017 The Vertcoin Core developers
Copyright (C) 2009-2017 The Bitcoin Core developersPlease contribute if you find Vertcoin Core useful. Visit
for further information about the software.
The source code is available from .This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
orThis product includes software developed by the OpenSSL Project for use in the
OpenSSL Toolkit and cryptographic software written by
Eric Young and UPnP software written by Thomas Bernard.
```### Version
You can also run a specific version of vertcoind if you want.
```
docker run -v /home/username/vertcoin:/data -p 5889:5889 lukechilds/vertcoind:v0.11.1.0
```## License
MIT © Luke Childs