File size: 189 Bytes
46455cd |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
APP_PATH=$(pwd)
docker stop icefall_run
docker rm icefall_run
docker run -it --rm \
-p 8888:8888 \
-v "$APP_PATH":/opt/notebooks \
--name icefall_run \
icefall |