forked from anthonychung14/iota-nelson-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.sh
executable file
·52 lines (44 loc) · 2.17 KB
/
update.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#/bin/bash
# Automatically pull and update new container version
echo "###################################################"
echo "# iota-nelson-node update script #"
echo "# https://github.com/ioiobzit/iota-nelson-node #"
echo "# https://twitter.com/antonionardella #"
echo "###################################################"
echo "###################################################"
echo "# Pulling all iota-nelson-node containers updates #"
echo "###################################################"
docker-compose pull
echo "###################################################"
echo "# Stop all iota-nelson-node docker containers #"
echo "###################################################"
docker-compose stop
echo "###################################################"
echo "# Removing all old iota-nelson-node containers #"
echo "###################################################"
docker-compose rm -f iota
docker-compose rm -f nelson.cli
docker-compose rm -f nelson.mon
docker-compose rm -f nelson.gui
docker-compose rm -f prometheus
docker-compose rm -f iota-prom-exporter
docker-compose rm -f node-exporter
docker-compose rm -f grafana
echo "###################################################"
echo "# Restart all iota-nelson-node docker containers #"
echo "###################################################"
docker-compose up -d
echo "###################################################"
echo "# Thank you for using this project! #"
echo "# #"
echo "# Donations always welcome #"
echo "# #"
echo "# IOTA: #"
echo "# #"
echo "# CHQAYWPQUGQ9GANEWISFH99XBMTZAMHFFMPHWCLUZPFKJTF #"
echo "# DFIJXFWCBISUTVGSNW9JI9QCOAHUHFUQC9SYVFXDQ9D #"
echo "# #"
echo "# BTC: #"
echo "# #"
echo "# 1BFgqtMC2nfRxPRge5Db3gkYK7kDwWRF79 #"
echo "###################################################"