Skip to content

Installation

Joshua Murphy edited this page Dec 5, 2018 · 8 revisions

Dependencies

  • git
  • docker + docker-compose

Cloning:

git clone https://github.com/toobigtoignore/issf

Docker:

Install Docker:

Install docker using the official docs as well as docker-compose using the official docs.

Additional Docker Configuration:

On Linux you may need to issue the following commands:

sudo groupadd docker

sudo usermod -aG docker $USER

Then, you may want/need to set the Docker service to automatically run on boot.

sudo systemctl enable docker

Then make sure you reboot for these changes to take effect!

Also consider installing the command completion for bash or zsh.

Running the code:

Do this by running ./first_run.sh followed by docker-compose up

Troubleshooting:

Docker freezes when pulling an image

  • Try restarting your machine / VM and docker
  • Uninstall and reinstall docker
  • If in a VM, try changing your network adapter from NAT to Bridged Adapter
Clone this wiki locally