9 lines
261 B
Bash
9 lines
261 B
Bash
#!/bin/sh
|
|
|
|
docker rm -f intcinvestprod
|
|
docker rmi intcinvestprod:1.0.0
|
|
|
|
cd /data/intc/investprod
|
|
docker build -t intcinvestprod:1.0.0 .
|
|
docker run --restart=always -di --name intcinvestprod -p 9219:9219 -v /usr/share/fonts:/usr/share/fonts intcinvestprod:1.0.0
|