10 lines
488 B
Bash
Executable file
10 lines
488 B
Bash
Executable file
export ID=$(docker ps -q)
|
|
docker kill $ID
|
|
sleep 1
|
|
docker run -d --restart always -p 127.0.0.1:8888:80 \
|
|
--mount type=bind,source=/mnt/vault/pdf,target=/var/www/cmc-sales/app/webroot/pdf \
|
|
--mount type=bind,source=/mnt/vault/attachments_files,target=/var/www/cmc-sales/app/webroot/attachments_files \
|
|
--mount type=bind,source=/mnt/vault/emails,target=/var/www/emails \
|
|
--mount type=bind,source=/mnt/vault/vaultmsgs,target=/var/www/vaultmsgs \
|
|
cmc:latest
|