Skip to content

Instantly share code, notes, and snippets.

@a-paxton
Created July 17, 2018 21:50
Show Gist options
  • Save a-paxton/1ea82dfdbeabbc2260871c5030b96cfc to your computer and use it in GitHub Desktop.
Save a-paxton/1ea82dfdbeabbc2260871c5030b96cfc to your computer and use it in GitHub Desktop.
Jetstream init script for PAC
#!/bin/sh
# download the Dockerfile
wget https://gist.githubusercontent.com/a-paxton/f7d6ddbddd02468372e6fdbccac1436a/raw/c314f625b65e13e25989d68877f938230d52d017/Dockerfile
# build the container
docker build -t pac-data_analysis_container .
# start the container
docker run --name pac-data_analysis -p 8787:8787 -v $(pwd):/home/rstudio/foobar -e GRANT_SUDO=yes -d pac-data_analysis_container
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment