forked from fossology/fossology
-
Notifications
You must be signed in to change notification settings - Fork 0
FOSSology Docker testing on Ubuntu
Paul Guttmann edited this page Jul 14, 2016
·
1 revision
An overview of installing FOSSology using docker on Ubuntu 14.04LTS
-
open command console
-
uname -a
[ensure kernel is 3.10 or greater. The first portion of response] -
sudo apt-get install -y docker.io
[install docker] -
sudo docker run hello-world
[confirm correct docker installation] -
sudo docker pull fossology/fossology
[grab the latest build of FOSSology] -
sudo docker images
[show available docker images. there should be 2 : fossology/fossology and hello-world] -
sudo docker run -p 8081:80 fossology/fossology
[create a running container from the FOSSology image. redirect port 80 in the container to port 8081] -
open a web browser
-
http://localhost:8081/repo/
[prepare to enjoy FOSSology. usr/pwd : fossy/fossy]
Away you go!