From 11641e9a8efc9f0d627acd91b23c99355cff784b Mon Sep 17 00:00:00 2001 From: Miguel Martinez Date: Fri, 14 Aug 2015 16:47:39 -0700 Subject: [PATCH 1/2] Bump version 3.0.5 --- bitnami/mongodb/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitnami/mongodb/Dockerfile b/bitnami/mongodb/Dockerfile index e63ab934f092..dcaf093e629f 100644 --- a/bitnami/mongodb/Dockerfile +++ b/bitnami/mongodb/Dockerfile @@ -3,7 +3,7 @@ MAINTAINER Bitnami ENV BITNAMI_APP_NAME=mongodb \ BITNAMI_APP_USER=mongodb \ - BITNAMI_APP_VERSION=3.0.5-0 + BITNAMI_APP_VERSION=3.0.5-0-r01 ENV BITNAMI_APP_DIR=$BITNAMI_PREFIX/$BITNAMI_APP_NAME \ BITNAMI_APP_VOL_PREFIX=/bitnami/$BITNAMI_APP_NAME From ed47547dddce898754f6fbce91304f095bdb63d4 Mon Sep 17 00:00:00 2001 From: Miguel Martinez Date: Fri, 14 Aug 2015 17:04:48 -0700 Subject: [PATCH 2/2] Removing tty requirement for test in CI --- bitnami/mongodb/test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/mongodb/test.sh b/bitnami/mongodb/test.sh index a69cf53a4bcc..6cb553d29af4 100644 --- a/bitnami/mongodb/test.sh +++ b/bitnami/mongodb/test.sh @@ -84,17 +84,17 @@ create_full_container_mounted(){ } @test "Can't create root user without password" { - run create_container -it -e MONGODB_USER=$MONGODB_ROOT_USER + run create_container -e MONGODB_USER=$MONGODB_ROOT_USER [[ "$output" =~ "you need to provide the MONGODB_PASSWORD" ]] } @test "Can't create a custom user without password" { - run create_container -it -e MONGODB_USER=$MONGODB_USER + run create_container -e MONGODB_USER=$MONGODB_USER [[ "$output" =~ "you need to provide the MONGODB_PASSWORD" ]] } @test "Can't create a custom user without database" { - run create_container -it -e MONGODB_USER=$MONGODB_USER -e MONGODB_PASSWORD=$MONGODB_PASSWORD + run create_container -e MONGODB_USER=$MONGODB_USER -e MONGODB_PASSWORD=$MONGODB_PASSWORD [[ "$output" =~ "you need to provide the MONGODB_DATABASE" ]] }