diff options
author | Ikram Ikramullah <ikram@research.att.com> | 2018-02-14 17:43:36 -0500 |
---|---|---|
committer | Ikram Ikramullah <ikram@research.att.com> | 2018-02-14 17:52:49 -0500 |
commit | 601bec029087f09f3a8579de16aaa5ec6aa14b14 (patch) | |
tree | b5fe5bd7408c513bc7df0bc8b7a26ca202aa9b1d /conductor/docker/run-dockers.sh | |
parent | e761b422db53e8d81c875a3f0e7806fe942463cc (diff) |
Dockerization Effort
Added files to run components of conductor
in docker. There is a build script and a run
script. Run script has instructions on how to
run the containers.
Issue-ID: OPTFRA-123
Change-Id: Id55a25b3c54e19728ca218e7d98e20af0630a383
Signed-off-by: Ikram Ikramullah <ikram@research.att.com>
Diffstat (limited to 'conductor/docker/run-dockers.sh')
-rwxr-xr-x | conductor/docker/run-dockers.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/conductor/docker/run-dockers.sh b/conductor/docker/run-dockers.sh new file mode 100755 index 0000000..555fe04 --- /dev/null +++ b/conductor/docker/run-dockers.sh @@ -0,0 +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 & +docker run -v $1:/usr/local/bin/conductor.conf controller & +docker run -v $1:/usr/local/bin/conductor.conf data & +docker run -v $1:/usr/local/bin/conductor.conf solver & +docker run -v $1:/usr/local/bin/conductor.conf reservation & |