9 lines
155 B
Bash
Executable File
9 lines
155 B
Bash
Executable File
|
|
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 |