Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pskillen/pippin-wallet
https://github.com/pskillen/pippin-wallet
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pskillen/pippin-wallet
- Owner: pskillen
- Created: 2021-03-29T16:34:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-29T20:40:35.000Z (almost 4 years ago)
- Last Synced: 2023-08-01T10:24:07.915Z (over 1 year ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Pippin Wallet - developer wallet for Nano Currency
===> Pippin is a production-ready, high-performance developer wallet for [Nano](https://nano.org/) and [BANANO](https://banano.cc/).
> Pippin's API is a drop-in replacement for the Nano developer wallet that is built in to the Nano node software.[Pippin Wallet](https://github.com/appditto/pippin_nano_wallet) is a Python-based wallet for Nano and Banano, deployed
as a PIP package. This Docker image simply installs that PIP package and runs it.**Links:**
* Docker image - https://hub.docker.com/repository/docker/pskillen/pippin-wallet
* Git repo - https://github.com/pskillen/pippin-wallet## Example Docker Compose file
Full details at [docker-compose.yaml](docker-compose.yaml)
```yaml
services:
redis:
image: redis:6-alpine
...
db:
image: postgres:13-alpine
...nano_pippin:
image: pskillen/pippin:latest
build:
context: .
environment:
REDIS_HOST: redis
REDIS_PORT: 6379
REDIS_DB: 0
REDIS_PW: supersecretpasswordPOSTGRES_HOST: db
POSTGRES_DB: nano
POSTGRES_USER: nano
POSTGRES_PASSWORD: nano
volumes:
- ./docker-compose/nano-pippin-config.yaml:/root/PippinData/config.yaml
ports:
- "127.0.0.1:11338:11338/tcp" # RPC port
depends_on:
redis:
db:```