1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-03-09 23:38:54 +00:00

Add Label to Dockerfile

This commit is contained in:
Mumshad Mannambeth 2017-07-12 13:56:32 -04:00
parent b73da64f12
commit 58d5af647d

View file

@ -1,6 +1,9 @@
# Pull base image. # Pull base image.
FROM node:6.2.2 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 # Reset Root Password
RUN echo "root:P@ssw0rd@123" | chpasswd RUN echo "root:P@ssw0rd@123" | chpasswd
@ -88,6 +91,7 @@ RUN mkdir -p logs
# Provide execute permissions for startup script # Provide execute permissions for startup script
RUN chmod 755 helpers/startup.sh RUN chmod 755 helpers/startup.sh
# Create ansible-projects folder if it doesn't already exist
RUN mkdir -p /opt/ansible-projects RUN mkdir -p /opt/ansible-projects
# Start services and start web server # Start services and start web server