(-p option hostport:containerport
-
docker run --network testDev --name c9 -p 3000:3000 -p 3080-3100:8080-8100 -d ankitrgadiya/c9:latest
Process with new env for quasar apps
Setup git
-
git config --global user.email "xxxx@googlemail.com"
-
git config --global user.name "xxxx"
Set up SSH key and add it to git https://code2.metcarob.com/node/98
-
chmod -R 400 ~/.ssh/id_rsa
-
chmod -R 444 ~/.ssh/id_rsa.pub
-
-
apt-get update && apt-get -y upgrade
-
curl -sL https://deb.nodesource.com/setup_8.x | bash -
-
apt-get install -y nodejs
-
npm update
-
npm install -g quasar-cli
-
-
##Python requirments
-
apt-get install ack
-
apt-get install entr
-
apt install python3-pip
-
pip3 install nose
-
pip3 install rednose
-
-
##docker requirements so we can build containers
-
curl -sSL https://get.docker.com | sh
clone the repo
run npm install in the webfrontend directory
run "pip3 install -r ./src/requirments.txt" in the app directory
test it with quasar dev
RJM Article Type
Quick Reference