6 lines
125 B
Bash
Executable File
6 lines
125 B
Bash
Executable File
#!/bin/sh
|
|
|
|
target="$1"
|
|
if [ "$target" = "" ]; then target=develop; fi
|
|
docker run -p 3000:3000 -it dyne/toaster.do:$target $*
|