From 58d5af647d1a1c9a8c5d253fe9f6b541855778dd Mon Sep 17 00:00:00 2001 From: Mumshad Mannambeth Date: Wed, 12 Jul 2017 13:56:32 -0400 Subject: [PATCH] Add Label to Dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index c697e80..8df2201 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ # Pull base image. FROM node:6.2.2 +LABEL maintainer="Mumshad Mannambeth" maintainer_email="mmumshad@gmail.com" +LABEL Description="This image is used to start the ansible-playable web server. The image contains a built-in mongodb database, can mount Amazon S3 instance and runs the playable web server on MEAN stack." Version="alpha" + # Reset Root Password RUN echo "root:P@ssw0rd@123" | chpasswd @@ -88,6 +91,7 @@ RUN mkdir -p logs # Provide execute permissions for startup script RUN chmod 755 helpers/startup.sh +# Create ansible-projects folder if it doesn't already exist RUN mkdir -p /opt/ansible-projects # Start services and start web server