mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-03 03:40:25 +00:00
19 lines
699 B
YAML
19 lines
699 B
YAML
|
# Nano-wallet is a digital payment protocol designed to be accessible and
|
||
|
# lightweight, with a focus on removing inefficiencies present in other
|
||
|
# cryptocurrencies. With ultrafast transactions and zero fees on a secure, green
|
||
|
# and decentralized network, this makes Nano ideal for everyday transactions.
|
||
|
# This container is a simple nginx wrapper for the light wallet located
|
||
|
# [here](https://github.com/linuxserver/nano-wallet). You will need to pass a
|
||
|
# valid RPC host when accessing this container.
|
||
|
|
||
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
nano-wallet:
|
||
|
image: ghcr.io/linuxserver/nano-wallet
|
||
|
container_name: nano-wallet
|
||
|
ports:
|
||
|
# Webserver port
|
||
|
- 80:80
|
||
|
restart: unless-stopped
|