Unofficial monero wallet GUI docker image to be run standalone or inside a browser window using Xpra.
Having the wallet available as docker container has some advantages like:
We use docker-compose
to build the images. Clone this repository and then:
cd docker-monero-wallet
sudo docker-compose -f docker-compose-dev.yml build
This command will build the wallet and the monero daemon as separate images that you can launch independently.
The wallet can be run in two ways:
Currently the separate monerod container is still under development, so the wallet will start the daemon up as when run in your desktop.
The docker-compose
file mounts your X11 session's socket (/tmp/.X11-unix) so the container can connect back to your X server. To start the wallet with docker-compose
:
sudo docker-compose -p monerowallet up
To start the wallet in production mode the the -d
parameter to the previous
command:
sudo docker-compose -p monerowallet up -d
You can see the container logs with this command:
sudo docker-compose -p monerowallet logs -f
After the container finish starting up the Monero wallet will show up in your screen
This is useful to run the wallet (and leave it running if you want) on a remote server and avoid wasting huge amounts of space locally holding the blockchain copy. I run it on a Synology NAS, which compared to my laptop it has tons of spare space and is always on and connected to the Internet.
To run the wallet inside a web browser you need to define the environment variable ENABLE_WEB_VIEW=yes
. Then start the wallet with docker-compose
as before:
sudo docker-compose -p monerowallet up
After some minutes the wallet will be available in http://[host]:10000, were host is the server name or IP address of the server running the wallet container.
You can change the port using the environment variable WEB_VIEW_PORT
.
Note: Firefox is recommended, I have had issues with chrome when repainting the browser screen.
If you just want to start the monerod daemon, for example to have it running permanently on a remote server or a NAS system, you can only start the monerod container:
sudo docker-compose -f docker-compose-prod.yml -p monerowallet monerod up -d
The docker-compose
file exposes to the host the port 18081 so you can connect
with your local desktop wallet (in that case you should configure an username
and password for the daemon).
To enable debug output, set the environment variable DEBUG=yes
.