Ubuntu sous Docker
Dans ce tutoriel nous allons créer une image docker Ubuntu afin de pouvoir déployer rapidement une machine en cas de besoin, puisque contrairement à une machine virtuelle ce conteneur se lance en seulement quelques secondes.
Création du conteneur Ubuntu
- On peut lancer ce conteneur en une seule commande.
L’argument –privileged est requis si vous voulez faire tourner des conteneurs Docker dans votre conteneur Docker afin de faire une Dockerseption.
docker run --privileged -d -it --entrypoint "/bin/bash" ubuntu:20.04
2. Se connecter au conteneur
docker ps
docker exec -ti id_conteneur bash
Si vous voulez installer des applications avec apt, il faudra avant mettre le système à jour.
apt update
Installation de Docker dans un conteneur Ubuntu
Il peut être intéressant d’installer Docker dans un conteneur Docker pour effectuer des tests.
1. Une fois connecté au conteneur Ubuntu :
apt update
apt install wget
wget https://get.docker.com/
chmod +x index.html
./index.html
2. Vérifier que Docker est installé et qu’il fonctionne correctement
docker version
Client: Docker Engine - Community
Version: 23.0.1
API version: 1.42
Go version: go1.19.5
Git commit: a5ee5b1
Built: Thu Feb 9 19:46:56 2023
OS/Arch: linux/amd64
Context: default
Server: Docker Engine - Community
Engine:
Version: 23.0.1
API version: 1.42 (minimum version 1.12)
Go version: go1.19.5
Git commit: bc3805a
Built: Thu Feb 9 19:46:56 2023
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.6.18
GitCommit: 2456e983eb9e37e47538f59ea18f2043c9a73640
runc:
Version: 1.1.4
GitCommit: v1.1.4-0-g5fd4c4d
docker-init:
Version: 0.19.0
GitCommit: de40ad0
3. Vous pouvez également lancer le conteneur hello-world
docker run hello-world
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/