Files
portfolio_abdul/README.md
2025-12-08 14:11:47 +00:00

41 lines
649 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Portfolio avec Docker
/// Prérequis
- Installer Docker Desktop
- Vérifier que Docker est bien installé :
docker --version
/// Structure du projet
Le dossier doit contenir :
portfolio/
├── css/
├── images/
├── index.html
└── Dockerfile
Instructions pour tester le projet
Cloner le dépôt Gitea:
git clone https://gitea.lasallesaintdenis.com/abdul/portfolio_abdul.git
Accéder au dossier du projet:
cd portfolio_abdul
Construire limage Docker:
docker build -t portfolio_abdul .
Lancer le conteneur:
docker run -p 8080:80 portfolio_abdul
Ouvrir le portfolio dans un navigateur:
http://localhost:8080