10 lines
545 B
Bash
Executable file
10 lines
545 B
Bash
Executable file
ID=$(docker ps -qf ancestor='cmc:stg')
|
|
docker kill $ID
|
|
sleep 1
|
|
docker run -d -p 127.0.0.1:9999:80 \
|
|
--mount type=bind,source=/home/cmc/staging/app/webroot/pdf,target=/var/www/cmc-sales/app/webroot/pdf \
|
|
--mount type=bind,source=/home/cmc/staging/app/webroot/attachments_files,target=/var/www/cmc-sales/app/webroot/attachments_files \
|
|
--mount type=bind,source=/home/cmc/staging/vault/emails,target=/var/www/emails \
|
|
--mount type=bind,source=/home/cmc/staging/vault/vaultmsgs,target=/var/www/vaultmsgs \
|
|
cmc:stg
|