This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
mosquitto: | |
image: opensourcefoundries/simple-mosquitto-broker:latest | |
read_only: true | |
restart: always | |
network_mode: "host" | |
iota-mqtt: | |
image: miota/iota-mqtt-broker:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) Install Docker - https://docs.docker.com/install/ | |
2) Create your blockchain and wallet volume mounts (This will store your persistent data) | |
2a) mkdir /home/user/blockchain/haven | |
2b) mkdir /home/user/wallet/haven | |
3) Start havend | |
3a) docker run -dit --name havend --restart=always -v /home/user/blockchains/haven:/root/.haven -v /home/user/wallets/haven:/wallet cryptowallets/havend:latest | |
4) Monitor havend sync status | |
4a) docker logs -f havend | |
5) Access your wallet | |
5a) docker exec -ti havend /bin/bash -c 'cd /wallet && haven-wallet-cli' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
registry: | |
image: registry:2 | |
ports: | |
- 5000:5000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
registry: | |
image: registry:2 | |
ports: | |
- 5000:5000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
GIT_SSL_NO_VERIFY=true git clone https://github.com/EmbeddedAndroid/alpine-docker.git | |
cd alpine-docker | |
chmod a+x wrapper.sh mkimage-alpine.sh | |
if [ $ARCH = "arm64" ]; then | |
if [ $REL == "edge" ]; then | |
./wrapper.sh -a aarch64 -o alpine -r $REL | |
else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd /root | |
install_packages debootstrap debian-archive-keyring git devscripts build-essential | |
GIT_SSL_NO_VERIFY=true git clone https://github.com/bitnami/minideb.git | |
cd minideb | |
./mkimage stretch-$ARCH.tar stretch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo docker pull kernelci/lava-slave-docker-v2-lab-tbaker:latest | |
sudo docker stop lava-slave-01 | |
sudo docker rm lava-slave-01 | |
sudo docker run -dit -v /dev:/dev -e LAVA_SERVER_IP='192.168.1.21' -e LAVA_MASTER=192.168.1.16 --name=lava-slave-01 -h lava-slave-01 --privileged kernelci/lava-slave-docker-v2-lab-tbaker:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd /root | |
apt-get update | |
apt-get install -y debootstrap debian-archive-keyring git devscripts build-essential | |
git clone https://github.com/bitnami/minideb.git | |
cd minideb | |
./mkimage stretch-armhf.tar stretch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd /root | |
apt-get update | |
apt-get install -y debootstrap debian-archive-keyring git devscripts build-essential | |
git clone https://github.com/bitnami/minideb.git | |
cd minideb | |
./mkimage stretch-arm64.tar stretch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ip -6 route add <ipv6-prefix>::/<subnet> dev docker0 | |
sysctl net.ipv6.conf.default.forwarding=1 | |
sysctl net.ipv6.conf.all.forwarding=1 | |
sysctl net.ipv6.conf.enP2p1s0.accept_ra=2 | |
service ndppd restart | |
service docker restart |