blob: b352a35c9fa01df74cbad264dffa0dbf487c0017 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# Pull in AAF Env Variables from AAF install
if [ -e ../../docker/d.props ]; then
. ../../docker/d.props
fi
DOCKER=${DOCKER:-docker}
$DOCKER exec -it aaf_cass bash
|