-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.txt
41 lines (29 loc) · 1.02 KB
/
doc.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
DOCKER en 12 minutes : https://www.youtube.com/watch?v=YFl2mCHdv24
DOCKER exemple : https://jonnylangefeld.github.io/learning/Docker/How%2Bto%2BDocker.html
build une image docker et --rm pour supprimer l'historique docker
docker build -t server . --rm
run une image :
docker run -it --rm server bash
Supprimer tous les containeurs :
docker rm $(docker ps -a -q)
NGINX avec html : https://medium.com/@jgefroh/a-guide-to-using-nginx-for-static-websites-d96a9d034940
server {
listen 80;
listen [::]:80;
server_name example.com;
root /var/www/website/website;
index monsite.html;
autoindex on;
location / {
try_files $uri $uri/ =404;
}
}
adresse ip de la machine virtuelle :
docker-machine env
Avoir un shell dans le docker qui run :
docker exec -it <container ID> /bin/bash
Pour utiliser my sql (MariaDB) :
service mysql start;
mariadb;
Pour utiliser php, il faut demarrer le serveur de compilation:
service php7.3-fpm;