docker-documentation/images/docker-nano.md

370 wiersze
20 KiB
Markdown
Czysty Zwykły widok Historia

2020-06-29 07:29:55 +00:00
# linuxserver/nano
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
## [linuxserver/nano](https://github.com/linuxserver/docker-nano)
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-nano.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-nano) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-nano.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-nano/releases) [![GitHub Package Repository](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub%20Package&logo=github)](https://github.com/linuxserver/docker-nano/packages) [![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/Linuxserver.io/docker-nano/container_registry) [![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/nano.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/nano) [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/nano.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/nano) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/nano.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/nano) [![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-nano%2Fjob%2Fmaster%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-nano/job/master/) [![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Flsio-ci.ams3.digitaloceanspaces.com%2Flinuxserver%2Fnano%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/nano/latest/index.html)
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
[Nano](https://nano.org/) 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.
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
### Supported Architectures
2020-05-23 05:21:52 +00:00
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
Simply pulling `linuxserver/nano` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
The architectures supported by this image are:
| Architecture | Tag |
2020-06-29 07:29:55 +00:00
| :---: | :--- |
2020-05-23 05:21:52 +00:00
| x86-64 | amd64-latest |
| arm64 | arm64v8-latest |
2020-06-29 07:29:55 +00:00
### Version Tags
2020-05-29 03:30:20 +00:00
This image provides various versions that are available via tags. `latest` tag usually provides the latest stable version. Others are considered under development and caution must be exercised when using them.
| Tag | Description |
2020-06-29 07:29:55 +00:00
| :---: | :--- |
2020-05-29 03:30:20 +00:00
| latest | Stable Nano releases |
| beta | Beta Nano releases |
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
### Usage
2020-05-23 05:21:52 +00:00
Here are some example snippets to help you get started creating a container from this image.
2020-06-29 07:29:55 +00:00
#### docker
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
```text
2020-05-23 05:21:52 +00:00
docker create \
--name=nano \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-e PEER_HOST=localhost `#optional` \
-e LIVE_GENESIS_PUB=GENESIS_PUBLIC `#optional` \
-e LIVE_GENESIS_ACCOUNT=nano_xxxxxx `#optional` \
-e LIVE_GENESIS_WORK=WORK_FOR_BLOCK `#optional` \
-e LIVE_GENESIS_SIG=BLOCK_SIGNATURE `#optional` \
2020-05-29 03:30:20 +00:00
-e CLI_OPTIONS=--config node.enable_voting=true `#optional` \
2020-05-23 05:21:52 +00:00
-e LMDB_BOOTSTRAP_URL=http://example.com/Nano_64_version_20.7z `#optional` \
2020-05-30 15:27:02 +00:00
-p 8075:8075 \
2020-05-23 05:21:52 +00:00
-p 7076:3000 \
-p 7077:3001 \
-v /path/to/data:/config \
--restart unless-stopped \
linuxserver/nano
```
2020-06-29 07:29:55 +00:00
#### docker-compose
2020-05-23 05:21:52 +00:00
Compatible with docker-compose v2 schemas.
```yaml
---
version: "2.1"
services:
nano:
image: linuxserver/nano
container_name: nano
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- PEER_HOST=localhost #optional
- LIVE_GENESIS_PUB=GENESIS_PUBLIC #optional
- LIVE_GENESIS_ACCOUNT=nano_xxxxxx #optional
- LIVE_GENESIS_WORK=WORK_FOR_BLOCK #optional
- LIVE_GENESIS_SIG=BLOCK_SIGNATURE #optional
2020-05-29 03:30:20 +00:00
- CLI_OPTIONS=--config node.enable_voting=true #optional
2020-05-23 05:21:52 +00:00
- LMDB_BOOTSTRAP_URL=http://example.com/Nano_64_version_20.7z #optional
volumes:
- /path/to/data:/config
ports:
2020-05-30 15:27:02 +00:00
- 8075:8075
2020-05-23 05:21:52 +00:00
- 7076:3000
- 7077:3001
restart: unless-stopped
```
2020-06-29 07:29:55 +00:00
### Parameters
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
Docker images are configured using parameters passed at runtime \(such as those above\). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
#### Ports \(`-p`\)
2020-05-23 05:21:52 +00:00
| Parameter | Function |
2020-06-29 07:29:55 +00:00
| :---: | :--- |
2020-05-30 15:27:02 +00:00
| `8075` | Nano communication port |
2020-05-23 05:21:52 +00:00
| `3000` | RPC interface filtered through a proxy |
| `3001` | Https RPC interface filtered through a proxy |
2020-06-29 07:29:55 +00:00
#### Environment Variables \(`-e`\)
2020-05-23 05:21:52 +00:00
| Env | Function |
2020-06-29 07:29:55 +00:00
| :---: | :--- |
2020-05-23 05:21:52 +00:00
| `PUID=1000` | for UserID - see below for explanation |
| `PGID=1000` | for GroupID - see below for explanation |
| `TZ=Europe/London` | Specify a timezone to use EG Europe/London |
2020-06-29 07:29:55 +00:00
| `PEER_HOST=localhost` | Default peer host \(can be overidden with an array by command line options\) |
2020-05-23 05:21:52 +00:00
| `LIVE_GENESIS_PUB=GENESIS_PUBLIC` | Genesis block public key |
| `LIVE_GENESIS_ACCOUNT=nano_xxxxxx` | Genesis block account |
| `LIVE_GENESIS_WORK=WORK_FOR_BLOCK` | Genesis block proof of work |
| `LIVE_GENESIS_SIG=BLOCK_SIGNATURE` | Genesis block signature |
2020-05-29 03:30:20 +00:00
| `CLI_OPTIONS=--config node.enable_voting=true` | Node run command cli args |
2020-05-23 05:21:52 +00:00
| `LMDB_BOOTSTRAP_URL=http://example.com/Nano_64_version_20.7z` | HTTP/HTTPS endpoint to download a 7z file with the data.ldb to bootstrap to this node |
2020-06-29 07:29:55 +00:00
#### Volume Mappings \(`-v`\)
2020-05-23 05:21:52 +00:00
| Volume | Function |
2020-06-29 07:29:55 +00:00
| :---: | :--- |
2020-05-29 03:30:20 +00:00
| `/config` | Main storage for config and blockchain |
2020-06-29 07:29:55 +00:00
### Environment variables from files \(Docker secrets\)
2020-05-29 03:30:20 +00:00
You can set any environment variable from a file by using a special prepend `FILE__`.
As an example:
2020-06-29 07:29:55 +00:00
```text
2020-05-29 03:30:20 +00:00
-e FILE__PASSWORD=/run/secrets/mysecretpassword
```
Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file.
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
### Umask for running applications
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional `-e UMASK=022` setting. Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up [here](https://en.wikipedia.org/wiki/Umask) before asking for support.
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
### User / Group Identifiers
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
When using volumes \(`-v` flags\), permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`.
2020-05-23 05:21:52 +00:00
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
2020-06-29 07:29:55 +00:00
```text
2020-05-23 05:21:52 +00:00
$ id username
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
```
2020-06-29 07:29:55 +00:00
### Application Setup
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
#### Your Genesis account
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
By default this container will launch with a genesis block based on the private key `0000000000000000000000000000000000000000000000000000000000000000`, this should obviously only ever be used for testing purposes. Before you run your node you should use a script baked into this image to determine your private key and required environment variables:
```text
2020-05-23 05:21:52 +00:00
docker run --rm --entrypoint /genesis.sh linuxserver/nano
Generating Genesis block
!!!!!!! ACCOUNT INFO SAVE THIS INFORMATION IT WILL NOT BE SHOWN AGAIN !!!!!!!!
Private Key: CD4CD6B1E5523D4B5AEDD2B1E5A447C6C6797E729A531A95F9AD7937FC7CD9EA
Public Key: 2D057DF2EB09E918D3F95B5FCA69A5FD3EA406EF7D1810106324CD7A99FAA32D
Account: nano_1da7hqsgp4hb55bzkptzsbntdzbyni5gyzar41a88b8fhcezoasfjkgmyk5y
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Container Environment Values:
-e LIVE_GENESIS_PUB=2D057DF2EB09E918D3F95B5FCA69A5FD3EA406EF7D1810106324CD7A99FAA32D \
-e LIVE_GENESIS_ACCOUNT=nano_1da7hqsgp4hb55bzkptzsbntdzbyni5gyzar41a88b8fhcezoasfjkgmyk5y \
-e LIVE_GENESIS_WORK=7fd88e48684600b7 \
-e LIVE_GENESIS_SIG=D1DF3A64BB43C131944401632215569A40AAE858ACF6CB59D5C77070E69DBF6435D93807877628A8B142DBF1AC4C562CD2F4CEBEB7D15486BDB7494A6146E007 \
```
2020-06-29 07:29:55 +00:00
These environment variables will be used for all of the peers in your payment network, but if you are running what you would consider a public or live network never share your private key even if you have drained the funds from that account it can be potentionally used to create valid forks. **Even Better**, you should never even trust our Docker image for generating a private key and open block. Do it on an airgapped machine and keep it on a paper wallet.
#### RPC Proxy settings
2020-05-23 05:21:52 +00:00
By default this container will enable RPC control and publish a custom service that acts as an RPC firewall giving you the ability to whitelist specific RPC calls and overide/add default values.
2020-06-29 07:29:55 +00:00
The default proxy config is stored in `/config/rpc-proxy.json`:
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
```text
2020-05-23 05:21:52 +00:00
{
"port":3000,
"httpsport":3001,
"rpchost":"127.0.0.1",
"rpcport":7076,
"certfile":"/config/ssl/cert.crt",
"keyfile":"/config/ssl/cert.key",
"whitelist":[
"account_info",
"account_history",
2020-06-15 22:14:31 +00:00
"block_count",
2020-05-23 05:21:52 +00:00
"block_info",
"pending",
"process"
],
"overrides":{
"account-history":{
"count":"64"
},
"pending":{
2020-05-29 03:30:20 +00:00
"count":"8"
2020-05-23 05:21:52 +00:00
}
}
}
```
2020-06-29 07:29:55 +00:00
This should be a minimal amount of RPC access needed to run a local light wallet against this endpoint. If you plan on having your network users only run clientside light wallets \(local blake2b block generation and block `process` call publishing\) you should publically publish this port for access for both port 7076 and 7077. For functional light wallets on Https endpoints we will generate a self signed cert/key combo but you should add the ones associated with your domain. This will allow yours and other https hosted light wallets to hit your RPC endpoint clientside from the users web browser.
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
Outside of potential https tunneling and actual object parsing \(will remove duplicate keys\) this is not a conventional API, it simply acts as a firewall and will send and return data just like a local RPC server would. The goal is to be compatible with any existing Nano software if the developers decide to add the ability to connect to alternative network endpoints.
2020-05-23 05:21:52 +00:00
**Our Proxy has not been audited by any security team and is provided as is, though we make the best effort to keep it simple and secure**
2020-06-29 07:29:55 +00:00
#### Node configuration via environment
2020-05-23 05:21:52 +00:00
Before you get started please review the configuration docs [here](https://docs.nano.org/running-a-node/configuration/)
We will pass the `CLI_OPTIONS` to the node, here is a run command example:
2020-06-29 07:29:55 +00:00
```text
2020-05-23 05:21:52 +00:00
-e CLI_OPTIONS='--config node.preconfigured_peers=["peering.yourhost.com","peering.yourhost2.com"] \
--config node.enable_voting=true'
```
There are many options to know here to run an actual live node especially peering and voting, again please review the docs if you plan to run something outside of a local setup.
2020-06-29 07:29:55 +00:00
#### Quickstart Guide
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
Here we are going to cover the bare minimum commands needed to spinup a local payment network and wallet.
2020-05-23 05:21:52 +00:00
2020-05-29 03:30:20 +00:00
First spinup your containers:
2020-06-29 07:29:55 +00:00
```text
2020-05-29 03:30:20 +00:00
docker run -d \
--name node \
-e CLI_OPTIONS='--config node.enable_voting=true' \
-p 7076:3000 \
--restart unless-stopped \
linuxserver/nano
2020-05-23 05:21:52 +00:00
```
2020-06-29 07:29:55 +00:00
```text
2020-05-29 03:30:20 +00:00
docker run -d \
--name=wallet \
-p 80:80 \
--restart unless-stopped \
linuxserver/nano-wallet
2020-05-23 05:21:52 +00:00
```
2020-06-29 07:29:55 +00:00
Then unlock the Genesis funds on the local node to allow it to confirm transactions:
```text
2020-05-29 03:30:20 +00:00
docker exec -it node bash
root@f1df092971f0:/# curl -d '{ "action": "wallet_create" }' localhost:7076
{
"wallet": "A3D63F1B28AC68BCD9E0FF74278C7984A36841C803EF1A81DF92BCD6E3BB18F9"
}
root@f1df092971f0:/# curl -d '{ "action": "wallet_add", "wallet": "A3D63F1B28AC68BCD9E0FF74278C7984A36841C803EF1A81DF92BCD6E3BB18F9", "key": "0000000000000000000000000000000000000000000000000000000000000000" }' localhost:7076
{
"account": "nano_18gmu6engqhgtjnppqam181o5nfhj4sdtgyhy36dan3jr9spt84rzwmktafc"
}
2020-05-23 05:21:52 +00:00
```
2020-06-29 07:29:55 +00:00
Here we are using the default private key of `0000000000000000000000000000000000000000000000000000000000000000` for the image. Navigate to [http://localhost/\#/localhost](http://localhost/#/localhost) and enter this key. You should be greeted by the genesis account wallet with 340.28 Million Nano.
2020-05-23 05:21:52 +00:00
2020-05-29 03:30:20 +00:00
From here you can generate new wallets from the home screen and send/receive funds on your local network. Now you will be running an insecure centralized network with a single voting representative and a zero security private key using the commands above. To spinup a standard private or even public network you should read up on Nano's documentation [HERE](https://docs.nano.org/) and continue reading the network design section below.
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
#### Network design
2020-05-23 05:21:52 +00:00
There are 4 main concepts to grasp from a network standpoint as far as types of endpoints. Before we get started here is a basic network diagram:
![image](https://raw.githubusercontent.com/linuxserver/image-docs/master/img/nano-network.png)
2020-06-29 07:29:55 +00:00
**Principle nodes and voting representatives**
2020-05-23 05:21:52 +00:00
Principle nodes are network representatives with the ability to vote due to having a certain threshold of funds unlocked on that node or pointed to that unlocked address. These nodes should be as airgapped as possible while still being an active 24/7 peer of the network. From a tecnical perspective this is a node with an account private key that either has the funds it needs itself or enough users have pointed their accounts to it as a representative. In a live and secure configuration to protect the funds of this account you would use an inactive private key account with the funds in it and locally sign a change of representative block to point to the always online representative.
These nodes should never process external RPC calls even on a local network, the same rules go for any node with a local unlocked wallet.
2020-06-29 07:29:55 +00:00
Keep in mind the key to the security of the network is that 51% of the funds are pointed to trusted representatives that will generally not argue about chain forks.
2020-05-23 05:21:52 +00:00
In most deployments the best bet is to heavily centralize your voting nodes, this is unless you are intentionally trying to build a distributed ledger and security model like the main Nano live net. Achieving that will be a long and difficult task.
2020-06-29 07:29:55 +00:00
**Network peers**
2020-05-23 05:21:52 +00:00
To a normal user simply transacting on the network using off the shelf tools like a web wallet and web based block explorers is generally all that is required. They get a number in a ledger somewhere and are able to locally sign and publish blocks using their private key using your published RPC endpoints.
For advanced users and just to generally make the network more robust, network operators should promote people running their own nodes. Using this image a network peer simply needs to run a docker run command with your pre-configured variables. IE given the generation example from above in the `Your Genesis account` section:
2020-06-29 07:29:55 +00:00
```text
2020-05-23 05:21:52 +00:00
docker create \
--name=nano \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-e PEER_HOST=peering.mydomain.com \
-e LIVE_GENESIS_PUB=2D057DF2EB09E918D3F95B5FCA69A5FD3EA406EF7D1810106324CD7A99FAA32D \
-e LIVE_GENESIS_ACCOUNT=nano_1da7hqsgp4hb55bzkptzsbntdzbyni5gyzar41a88b8fhcezoasfjkgmyk5y \
-e LIVE_GENESIS_WORK=7fd88e48684600b7 \
-e LIVE_GENESIS_SIG=D1DF3A64BB43C131944401632215569A40AAE858ACF6CB59D5C77070E69DBF6435D93807877628A8B142DBF1AC4C562CD2F4CEBEB7D15486BDB7494A6146E007 \
2020-05-30 15:27:02 +00:00
-p 8075:8075 \
2020-05-23 05:21:52 +00:00
-p 7076:3000 \
-p 7077:3001 \
-v /path/to/data:/config \
--restart unless-stopped \
linuxserver/nano
```
When the container spins up it will reach out to the node to bootstrap it's local ledger from peering.mydomain.com . This node once fully synced will be able to run local RPC commands to plug into a wallet and default Nano node wallet commands for automated pocketing of transactions etc. It will also get a list of other peers on the network from it's initial network peering and start participating in your distributed cryptocurrency network.
2020-06-29 07:29:55 +00:00
**Public RPC endpoints**
The key to users going to a webpage and managing the funds on your network is the ability to get blockchain information and publish new blocks to theirs. As mentioned earlier we bundle a basic firewall with a core set of RPC functions whitelisted that should be safe to expose publically.
2020-05-23 05:21:52 +00:00
From a network design perspective these nodes should be purely what you would consider client peers and never have any wallets registered or private keys stored on them. Also for redundancy optmimally these peers should be run in a cluster behind a load balancer. For standard nodes you are building out a large P2P network, but in the case of the RPC endpoint and specifically the URL the end user is going to pass when accessing their wallet it is up to you to make that resilient.
2020-06-29 07:29:55 +00:00
**Clientside javascript wallet**
Currently we publish a pure javascript clientside wallet located here:
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
[https://github.com/linuxserver/nano-wallet](https://github.com/linuxserver/nano-wallet)
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
It is designed to be run 100% clientside in any web browser and use public RPC endpoints to hook into any network and conduct transactions by locally signing then publishing the result. This can be hosted locally with any simple webserver and pointed to a locally run peer, but for full functionality we reccomend providing a public Https URL with these files along with plugging in legitamite SSL certificates into your RPC endpoints running on 7077.
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
## Running a node on the LinuxServer network
2020-05-29 03:30:20 +00:00
We maintain our own network which users can get funds to transact on from our [Discord](https://discord.gg/YWrKVTn) server. If you would like to run a node on our network here is our Docker run command:
2020-06-29 07:29:55 +00:00
```text
2020-05-29 03:30:20 +00:00
docker create \
--name=lsio-node \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-e PEER_HOST=peering.linuxserver.io \
-e LIVE_GENESIS_PUB=79F2E157B5667F1C8B6CCB6DF691DAC032B85DEC39E231D29976DCED05F5B1BE \
-e LIVE_GENESIS_ACCOUNT=nano_1yhkw7ducsmz5k7pskufytaxoi3kq3gyrgh489bbkxpwxn4zdefyn4rmrrkk \
-e LIVE_GENESIS_WORK=c51204c6b69384cb \
-e LIVE_GENESIS_SIG=90DDE7B4DC038811180FF5DDE8594F1774542A7AADE3DB71A57AA38A5AED42672E1E8D7ACFAC315BDB0EB5DCB542C610B9C49B2560AE575073855259AF065509 \
2020-05-30 15:27:02 +00:00
-p 8075:8075 \
2020-05-29 03:30:20 +00:00
-p 7076:3000 \
-p 7077:3001 \
-v /path/to/data:/config \
--restart unless-stopped \
linuxserver/nano
```
2020-06-29 07:29:55 +00:00
### Docker Mods
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=mods&query=%24.mods%5B%27nano%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=nano)
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image \(if any\) can be accessed via the dynamic badge above.
2020-05-23 05:21:52 +00:00
2020-06-29 07:29:55 +00:00
### Support Info
2020-05-23 05:21:52 +00:00
* Shell access whilst the container is running:
* `docker exec -it nano /bin/bash`
* To monitor the logs of the container in realtime:
* `docker logs -f nano`
* Container version number
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' nano`
* Image version number
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/nano`
2020-06-29 07:29:55 +00:00
### Versions
2020-05-23 05:21:52 +00:00
2020-06-02 20:54:07 +00:00
* **02.06.20:** - Rebase to Alpine 3.12.
2020-05-29 03:30:20 +00:00
* **28.05.20:** - Add beta tag.
2020-05-23 05:21:52 +00:00
* **17.05.20:** - Initial Release.
2020-06-29 07:29:55 +00:00