Official guide on how to launch a droplet.
After droplet instance has successfully spinned up, SSH/Login into droplet.
-
curl -fsSL https://get.docker.com -o get-docker.sh
-
sudo sh get-docker.sh
- Install docket-compose:
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
- Set permission:
sudo chmod +x /usr/local/bin/docker-compose
-
git clone https://github.com/Outerbridgeio/Outerbridge.git
-
cd Outerbridge && cd docker
-
docker-compose up -d
- App is now ready on port 3000.
- You can then view the app: "Your Public IPv4 DNS":3000. Example: 176.63.19.226:3000
- You can bring the app down by:
docker-compose stop
- You can pull from latest image by:
docker pull outerbridgeio/outerbridge