diff options
Diffstat (limited to 'auth')
-rw-r--r-- | auth/docker/cass.props.init | 2 | ||||
-rw-r--r-- | auth/docker/drun.sh | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/auth/docker/cass.props.init b/auth/docker/cass.props.init index 75127424..7f7258fa 100644 --- a/auth/docker/cass.props.init +++ b/auth/docker/cass.props.init @@ -1,7 +1,7 @@ #!/bin/bash # Use for assigning to /etc/hosts, when DNS doesn't have Cassandra FQDN -CASS_HOST=cass.aaf.osaaf.org:<IP of running Cass> +CASS_HOST=aaf_cass #### # Detailed Cassandra Environmental Variables diff --git a/auth/docker/drun.sh b/auth/docker/drun.sh index 45b5893f..4a6b1c77 100644 --- a/auth/docker/drun.sh +++ b/auth/docker/drun.sh @@ -35,15 +35,15 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do case "$AAF_COMPONENT" in "service") PORTMAP="8100:8100" - LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST" + LINKS="--link aaf_cass:cassandra " ;; "locate") PORTMAP="8095:8095" - LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST" + LINKS="--link aaf_cass:cassandra " ;; "oauth") PORTMAP="8140:8140" - LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST" + LINKS="--link aaf_cass:cassandra " ;; "gui") PORTMAP="8200:8200" @@ -51,7 +51,7 @@ for AAF_COMPONENT in ${AAF_COMPONENTS}; do "cm") PORTMAP="8150:8150" LINKS="--link aaf_cass:cassandra " - LINKS="--link aaf_cass:cassandra --add-host=$CASS_HOST" + LINKS="--link aaf_cass:cassandra " ;; "hello") PORTMAP="8130:8130" |