Skip to content

Instantly share code, notes, and snippets.

@aborilov
Created August 9, 2018 09:02
Show Gist options
  • Save aborilov/f542c2f3e295390f6f261e258ffd95bb to your computer and use it in GitHub Desktop.
Save aborilov/f542c2f3e295390f6f261e258ffd95bb to your computer and use it in GitHub Desktop.
artispy doc

ARTISPY

build docker images:

you should be in base directory with senseware, artispy and volatility_profile apps in it.

  • build docker image for volatility_profile

    docker build -t volatility_profile -f volatility_profile/setup/Dockerfile .

  • build docker image for senseware

    docker build -t senseware -f senseware/setup/Dockerfile .

run containers:

  • run volatility_profile container

    docker run --rm -it volatility_profile

      args:
          * run_find_best_profile
          * run_visual_inspection
    
  • run senseware container with web server and expose port 5321

    docker run -p 5321:5321 --rm -it senseware

  • run senseware container for testing(senseware container with webserver also should be started)

    docker run --net="host" --rm -it senseware test_suite

      args:
          * test_senseware
          * test_NEAT_sender
          * test_suite
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment