I hereby claim:
- I am undassa on github.
- I am undassa (https://keybase.io/undassa) on keybase.
- I have a public key whose fingerprint is 3E7B F0C0 745E FB44 30D3 CFA2 64D5 3381 A75B 6E89
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| kind: Service | |
| version: v1 | |
| meta: | |
| name: ghost | |
| spec: | |
| replicas: 1 | |
| network: | |
| ports: | |
| - '80:2368/tcp' | |
| template: |
| #!/bin/bash | |
| echo "Check docker installed" | |
| if hash docker 2>/dev/null; then | |
| echo "Docker available" | |
| else | |
| echo "Install docker" | |
| curl -sSL https://get.docker.com/ubuntu/ | sudo sh | |
| fi |
| #!/bin/bash | |
| # Pull this file down, make it executable and run it with sudo | |
| # wget https://raw.github.com/gist/5487621/build-erlang-r16b.sh | |
| # chmod u+x build-erlang-r16b.sh | |
| # sudo ./build-erlang-r16b.sh | |
| if [ $(id -u) != "0" ]; then | |
| echo "You must be the superuser to run this script" >&2 | |
| exit 1 | |
| fi |