Skip to content

mariakmejiaguerra/dockerR_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dockerR_template

This repository host a template to launch a workstation with RStudio server:

  • Folder for notebooks (R Notebooks) to report/develop analysis.
  • Folder for data to host data, files in this folder are not sync to the git repository.
  • Folder for code to host scripts to populate data folder.
  • Container to reproduce workstation environment using docker.

To start

Clone the repository git clone, and populate the data folder

General view of the repository:
|-- .gitignore
|-- LICENSE.md
|-- README.md
|-- docker-compose.yml
|-- code
    |-- script-to-populate-data_dir.sh 
|-- data
    |--.gitignore
|-- docker/
    |--Dockerfile
|-- notebooks
Launch Docker
  1. To use the docker images you first need to install Docker:
  1. Create a .env_dev file with development environment variables
    We want to keep passwords secret, so this file won't be in the repository and the .gitignore has been instructed to ignore it
# random seed for reproducible models
random_seed=42

#database password
db_password=1234
  1. Run docker-compose build --no-cache. This will build the development image with all the packages I defined installed within it.
  2. Run docker-compose up and navigate to your browser to find Rstudio running on http://localhost:8787.
  3. Access it by entering user rstudio and the password local_dev.
  4. Once you are done, remember to shutdown the server and docker
    Go to the terminal and Press Ctrl+C
    docker-compose down

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published