v3.0.2
What's Changed
- Update [id].vue by @El-Jay-Crypto in #171
- Apply carmenBold font style by @RaulBernal in #174
- Fix fonts at TX waiting & TX confirmation forms by @RaulBernal in #175
New Contributors
- @El-Jay-Crypto made their first contribution in #171
- @RaulBernal made their first contribution in #174
Run Docker Hub image
docker run -d -p 4200:4200 --name wallet-mainnet bernalraul/weedwallet:mainnet
Logs check:
docker container logs wallet-mainnet
Create the systemd file:
cat <<'EOF' >>wallet-mainnet.service
[Unit]
Description=wallet-mainnet container
Requires=docker.service
After=docker.service
[Service]
Restart=always
ExecStart=/usr/bin/docker start -a wallet-mainnet
ExecStop=/usr/bin/docker stop -t 2 wallet-mainnet
[Install]
WantedBy=default.target
EOF
Move it, enable in the init and start it
sudo mv wallet-mainnet.service /lib/systemd/system/
docker stop -t 2 wallet-mainnet && sudo systemctl enable wallet-mainnet
sudo systemctl start wallet-mainnet && sudo journalctl -fu wallet-mainnet -o cat
Full Changelog: v3.0.1...v3.0.2