rootfs: add '-rm' to delete intermediate container

If we set env USE_DOCKER true, we will use container as development
environment. After docker run command, this temporary container
would be no use. we could add -rm flag to automatically delete
intermediate container.

Fixes: #115

Signed-off-by: Penny Zheng <penny.zheng@arm.com>
This commit is contained in:
Penny Zheng 2018-06-12 02:03:48 +00:00
parent bdb776d073
commit e86380aab7
2 changed files with 2 additions and 0 deletions

View File

@ -98,6 +98,7 @@ if [ -n "${USE_DOCKER}" ] ; then
# In case Clear Containers Runtime is installed we dont want to hit issue: # In case Clear Containers Runtime is installed we dont want to hit issue:
#https://github.com/clearcontainers/runtime/issues/828 #https://github.com/clearcontainers/runtime/issues/828
docker run \ docker run \
--rm \
--runtime runc \ --runtime runc \
--privileged \ --privileged \
--env IMG_SIZE="${IMG_SIZE}" \ --env IMG_SIZE="${IMG_SIZE}" \

View File

@ -212,6 +212,7 @@ if [ -n "${USE_DOCKER}" ] ; then
# In case Clear Containers Runtime is installed we dont want to hit issue: # In case Clear Containers Runtime is installed we dont want to hit issue:
#https://github.com/clearcontainers/runtime/issues/828 #https://github.com/clearcontainers/runtime/issues/828
docker run \ docker run \
--rm \
--runtime runc \ --runtime runc \
--env https_proxy="${https_proxy}" \ --env https_proxy="${https_proxy}" \
--env http_proxy="${http_proxy}" \ --env http_proxy="${http_proxy}" \