Skip to content

Instantly share code, notes, and snippets.

@AraujoJordan
Created May 30, 2017 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AraujoJordan/96acd216b226aea745dde229735a5ee8 to your computer and use it in GitHub Desktop.
Save AraujoJordan/96acd216b226aea745dde229735a5ee8 to your computer and use it in GitHub Desktop.
Roda installation on Ubuntu
#!/bin/sh
#Script to install RODA on a Ubuntu 16.04 LTS machine
# DOCKER INSTALATION
sudo apt-get -y install apt-transport-https ca-certificates curl
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt update
sudo apt install docker-ce
#GET LAST RODA
sudo docker pull keeps/roda
sudo docker run -p 8080:8080 -v ~/.roda:/root/.roda keeps/roda
@idzwanr
Copy link

idzwanr commented Jun 21, 2022

sudo docker run -p 8080:8080 -v ~/.roda:/root/.roda keeps/roda * how to access in localhost ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment