You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's create a docker swarm with master and worker node using private networking. Before starting make sure you have `docker-machine` and `jq` installed.
103
+
104
+
1. Create install.sh bash script and replace LINODE_TOKEN with your actual linode access token.
105
+
```sh
106
+
#!/bin/bash
107
+
set -e
108
+
109
+
LINODE_TOKEN=<YOUR LINODE TOKEN>
110
+
LINODE_ROOT_PASSWORD=$(openssl rand -base64 32);echo Password for root: $LINODE_ROOT_PASSWORD
0 commit comments