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 | |
# Following instructions from: https://leap.se/en/docs/platform/tutorials/single-node | |
# Docker command line: | |
# docker run -it --name leap -h node1 -v ~/tmp/:/shared debian:wheezy /bin/bash | |
set -e # Exit immediately if a command exits with a non-zero status. | |
set -x # show commands | |
# Prepare your environment |