From 3d6db646e50e6d624d8420cc767944d64c3ff2bc Mon Sep 17 00:00:00 2001 From: stacksmith-bot Date: Wed, 28 Sep 2016 07:02:24 +0200 Subject: [PATCH] stacksmith: Add /stack/Dockerfile --- stack/Dockerfile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 stack/Dockerfile diff --git a/stack/Dockerfile b/stack/Dockerfile new file mode 100644 index 0000000..eff5856 --- /dev/null +++ b/stack/Dockerfile @@ -0,0 +1,26 @@ +## BUILDING +## (from project root directory) +## $ docker build -t mongodb-for-mircode-mongosql . +## +## RUNNING +## $ docker run -p 27017:27017 mongodb-for-mircode-mongosql +## +## CONNECTING +## Lookup the IP of your active docker host using: +## $ docker-machine ip $(docker-machine active) +## Connect to the container at DOCKER_IP:27017 +## replacing DOCKER_IP for the IP of your active docker host +## +## NOTES +## This is a prebuilt version of MongoDB. +## For more information and documentation visit: +## https://github.com/bitnami/bitnami-docker-mongodb + +FROM gcr.io/bitnami-containers/mongodb:3.2.7-r1 + +ENV STACKSMITH_STACK_ID="23a6eil" \ + STACKSMITH_STACK_NAME="MongoDB for mircode/mongosql" \ + STACKSMITH_STACK_PRIVATE="1" \ + BITNAMI_CONTAINER_ORIGIN="stacksmith" + +## STACKSMITH-END: Modifications below this line will be unchanged when regenerating