This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
| #!/usr/bin/env python3 | |
| # Copyright (c) 2018 Foundries.io | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| import argparse | |
| from collections import namedtuple | |
| import struct |
This file contains hidden or 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 | |
| set -eu | |
| echo "steps:" | |
| for TEST in $TESTS; do | |
| cat <<EOF | |
| - trigger: "jtest" | |
| label: "${TARGET}-${TEST}-${FW_VER}" |
This file contains hidden or 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.2' | |
| services: | |
| rtunnel: | |
| image: foundries/rtunnel-sshd:latest | |
| restart: always | |
| tty: true | |
| network_mode: "host" | |
| command: "<foundries.io api token>" | |
| volumes: |
This file contains hidden or 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: 0.1.0 | |
| name: sshtun | |
| description: Reverse SSH Tunnelling Docker App | |
| --- | |
| version: '3.2' | |
| services: | |
| sshtun: |
This file contains hidden or 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
| FROM alpine:3.11 | |
| RUN apk add --no-cache autossh openssh-client | |
| COPY entrypoint.sh /bin/entrypoint | |
| RUN chmod a+x /bin/entrypoint | |
| ENTRYPOINT ["entrypoint"] |
This file contains hidden or 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
| FROM alpine:3.11 | |
| RUN apk add --no-cache autossh openssh-client | |
| COPY entrypoint.sh /bin/entrypoint | |
| RUN chmod a+x /bin/entrypoint | |
| ENTRYPOINT ["entrypoint"] |