Build un docker avec le Dockerfile

Première personnalisation d’un Docker sur la base Nginx + PHP de Richarvey

 

Il suffit d’éditer un fichier Dockerfile

admin@serveur-1:~$ cat Dockerfile
FROM richarvey/nginx-php-fpm
COPY ./index.php /usr/share/nginx/html/

Puis de build :

docker build -t mydockername .

 

prochaine étape, pusher sur un repository.

 

Voici un guide pour découvrir toutes commandes du Dockerfile

Laisser un commentaire