Files
Portefolio/launch-dockers.sh
2025-12-07 12:37:01 +01:00

8 lines
150 B
Bash

#!/bin/bash
docker stop portefolio
docker build -t portefolio .
docker run -it --rm -p 8080:80 --name portefolio -v .:/usr/share/nginx/html/ nginx