LIP Internships 2021
Docker installation instructions
Context
NOTE 1: You only need to follow this guide if you don’t have an account in the LIP computers. Check with your supervisor or the LIP IT team if you are not sure
NOTE 2: You only will need Docker installed in your personal computer and a ROOT docker container if you want to participate in the following tutorials:
These slides contain instructions for Windows, MacOS and Linux
The instructions and scripts used are also available in this git repository
If you have problems or questions, feel free to use the #docker channel on Slack
2
Windows
3
Windows
4
Windows
5
Windows
wsl --set-default-version 2
We actually don't need to install a Linux distribution to use Docker Desktop, but if you want to shell into Linux directly, you'll need to install one. You can install a distribution directly from the Microsoft Store (not covered in these instructions).
6
Windows
7
Windows
8
Windows
9
Windows
10
Windows
11
#include <iostream>
using namespace std;
int main(){
cout << "Hello world!" << endl;
return 0;
}
MacOS
12
MacOS
13
#include <iostream>
using namespace std;
int main(){
cout << "Hello world!" << endl;
return 0;
}
MacOS
14
Linux
15
Linux
16
#include <iostream>
using namespace std;
int main(){
cout << "Hello world!" << endl;
return 0;
}
Linux
17