9 lines
224 B
Bash
9 lines
224 B
Bash
#!/bin/sh
|
|
|
|
docker rm -f intcwebhealth
|
|
docker rmi intcwebhealth:1.0.0
|
|
|
|
cd /mnt/data/intc/intcwebhealth
|
|
docker build -t intcwebhealth:1.0.0 .
|
|
docker run --restart=always -di --name intcwebhealth -p 81:80 intcwebhealth:1.0.0
|