summaryrefslogtreecommitdiff
path: root/scripts/command/docker-shell
blob: 1f942cedb28f9f9d32926f31c23b72cc93b752ce (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

source "${NNFW_SCRIPT_PATH}/config/docker.configuration"

DOCKER_RUN_OPTS+=" -it"
docker run $DOCKER_RUN_OPTS $DOCKER_ENV_VARS $DOCKER_VOLUMES $DOCKER_IMAGE_NAME "/bin/bash"
EXITCODE=$?

docker_cleanup

exit $EXITCODE