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
Using powerstrip mode of socketplane is simple and easy. If you are not using vagrant run "socketplane install" from the base directory of the socketplane workspace or just run scripts/install.sh to setup everything. If you are using vagrant no other extra steps are required.
4
+
5
+
Once socketplane is installed run new containers using the well known docker commands as below example shows:
6
+
7
+
sudo DOCKER_HOST=localhost:2375 docker run -itd ubuntu
8
+
9
+
If you want the containers to connect to different network just add a special environment variable as follows:
10
+
11
+
sudo DOCKER_HOST=localhost:2375 docker run -e SP_NETWORK=test -itd ubuntu
12
+
13
+
The above commands assumes that you have already created a network named "test" using the already existing socketplane commands.
0 commit comments