diff options
author | 2018-03-06 17:27:15 -0500 | |
---|---|---|
committer | 2018-03-07 16:38:42 -0500 | |
commit | 186a7c9014441b1bd97843e54220ecabcc863e7e (patch) | |
tree | d2c42f785785e8360b34f24d43c125ac85750c75 /conductor/docker/run-dockers.sh | |
parent | 19d220e1f87475ef762ba7f6fb39d4eb18ee4c20 (diff) |
Corrected Docker Files
Note: we've been running conductor/has using the
source distribution (sdist) Running the git glone
instead of going for the artifacts - will do the
sdist based execution soon once the blocker for
functional testing is removed.
Also, added push script for docker images.
Issue-ID: OPTFRA-123
Change-Id: I733113d217157828322ebc2464351abdc0752be6
Signed-off-by: Ikram Ikramullah (ikram@research.att.com) <ikram@research.att.com>
Diffstat (limited to 'conductor/docker/run-dockers.sh')
-rwxr-xr-x | conductor/docker/run-dockers.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conductor/docker/run-dockers.sh b/conductor/docker/run-dockers.sh index 555fe04..f8ae249 100755 --- a/conductor/docker/run-dockers.sh +++ b/conductor/docker/run-dockers.sh @@ -1,7 +1,7 @@ ### example run - provide the conductor configuration file as input to the run script -#./run-dockers.sh <path-to>/conductor.conf -docker run -v $1:/usr/local/bin/conductor.conf api & +# ./run-dockers.sh <path-to>/conductor.conf +docker run -v $1:/usr/local/bin/conductor.conf data & docker run -v $1:/usr/local/bin/conductor.conf controller & -docker run -v $1:/usr/local/bin/conductor.conf data & +docker run -p "8091:8091" -v $1:/usr/local/bin/conductor.conf api & docker run -v $1:/usr/local/bin/conductor.conf solver & docker run -v $1:/usr/local/bin/conductor.conf reservation & |