Once bucc is up with --cpi docker, restart docker service. The container will be destroyed. Try to run bucc up --cpi docker again and get the following result:
No deployment, stemcell or release changes. Skipping deploy.
Problem: The container is not created although the image exists.
Fix: add --recreate flag to bosh create-env command.
edit bin/bucc:
+ bosh create-env --recreate ${skip_drain} $(int_args) ${state_arg} "$@"
Looking for solution to properly add support for "--recreate" flag. PR in progress.
Problem being solved:
Once bucc is up with --cpi docker, restart docker service. The container will be destroyed. Try to run
bucc up --cpi docker
again and get the following result:Problem: The container is not created although the image exists.
Fix: add --recreate flag to bosh create-env command. edit bin/bucc:
Looking for solution to properly add support for "--recreate" flag. PR in progress.