Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boris1993/gridcoin-headless-docker
Non-official headless Gridcoin wallet in Docker
https://github.com/boris1993/gridcoin-headless-docker
cryptocurrency docker docker-image grc gridcoin gridcoin-wallet
Last synced: 11 days ago
JSON representation
Non-official headless Gridcoin wallet in Docker
- Host: GitHub
- URL: https://github.com/boris1993/gridcoin-headless-docker
- Owner: boris1993
- License: mit
- Created: 2022-10-08T07:54:51.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T04:07:44.000Z (15 days ago)
- Last Synced: 2024-10-24T21:33:08.750Z (14 days ago)
- Topics: cryptocurrency, docker, docker-image, grc, gridcoin, gridcoin-wallet
- Language: Shell
- Homepage: https://hub.docker.com/r/boris1993/gridcoin-headless-docker
- Size: 111 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gridcoin Headless Wallet in Docker
[![Build and publish the image](https://github.com/boris1993/gridcoin-headless-docker/actions/workflows/build.yml/badge.svg)](https://github.com/boris1993/gridcoin-headless-docker/actions/workflows/build.yml)
![Docker Pulls](https://img.shields.io/docker/pulls/boris1993/gridcoin-headless-docker)A non-official headless GridCoin wallet in Docker.
## Usage
### Docker command
```bash
# Remove the comments between lines when executing
docker run \
--name gridcoin \
--restart=unless-stopped \
-d \
-v /path/to/data/dir:/root/.GridcoinResearch \
-v /path/to/boinc/data/dir:/var/lib/boinc \
# Optional. You can pass your wallet into the container if you want
-v /path/to/your/wallet/wallet.dat:/root/.GridcoinResearch/wallet.dat \
# Use your timezone instead
-e TZ=Asia/Shanghai \
# Optional. Required when you are solo mining
-e [email protected] \
# Optional. Required when your wallet is encrypted
-e PASSPHRASE=your_wallet_passphrase
# Optional. Specify a SOCKS5 proxy
-e SOCKS_PROXY=192.168.1.200:7890 \
# Optional. Only when you want to specify the RPC username
-e RPC_USER=your_rpc_username \
# Optional. Only when you want to specify the RPC password.
# A random string will be used as password by default.
-e RPC_PASSWORD=your_rpc_password \
boris1993/gridcoin-headless-docker:latest
```### Docker Compose
```yaml
version: '3'services:
gridcoin:
image: boris1993/gridcoin-headless-docker:latest
container_name: gridcoin
restart: unless-stopped
environment:
# Use your timezone instead
- TZ=Asia/Shanghai
# Optional. Required when you are solo mining
- [email protected]
# Optional. Required when your wallet is encrypted
- PASSPHRASE=your_wallet_passphrase
# Optional. Specify a SOCKS5 proxy
- SOCKS_PROXY=192.168.1.200:7890
# Optional. Only when you want to specify the RPC username
- RPC_USER=your_rpc_username
# Optional. Only when you want to specify the RPC password.
# A random string will be used as password by default.
- RPC_PASSWORD=your_rpc_password
volumes:
- /path/to/data/dir:/root/.GridcoinResearch
# Optional. You can pass your wallet into the container if you want
- /path/to/your/wallet/wallet.dat:/root/.GridcoinResearch/wallet.dat
- /path/to/boinc/data/dir:/var/lib/boinc```
## Donation
Love this project? Please consider donating to my address `S4vA3tjgkoBMEWu8EJESmQZbnKtqNPTYFX`.