Skip to content

Latest commit

 

History

History

docker

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Dockerfile

This Dockerfile provides a DataLab set-up for users interested in running their own Jupyter Lab environment.

Install Docker

The best option is to install Docker from its own repositories.

After installing, to be able to use Docker without the sudo, it is necessary to add your user to the docker group (this group is created during the installation).

$ sudo usermod -aG docker your-user

Finally, "logout" and "login" again.

Build and run the environment

Build:

docker build -t ipcc-atlas-datalab:latest -f Dockerfile .

Run:

docker run -p 8888:8888 santandermetgroup/climate4r 

The last command will return an URL:

http://(firstchoice or secondchoice):8888/

Write http://firstchoice:8888/ or http://secondchoice:8888/ in your browser and start working!