#Étapes locales (Git + GitHub)
mkdir C:\openshift\site-dockerfile-git cd C:\openshift\site-dockerfile-git
git init
git remote add origin https://github.com//site-dockerfile-git.git...........mon user :Ibramove git add . git commit -m "Ajout Dockerfile et index.html" git branch -M main git push -u origin main
#Déploiement sur OpenShift
oc new-app https://github.com//site-dockerfile-git.git --name=site-github-dockerfile
oc get pods oc get svc
oc expose service site-github-dockerfile
oc get route
curl http://
Déploiement réussi Bienvenue sur ma page !
