From 5d2019fa29db4d6adde87aee908084cb51195092 Mon Sep 17 00:00:00 2001 From: Liran Tal Date: Fri, 25 Mar 2016 17:11:44 +0300 Subject: [PATCH] fix(docker): updating maintainer and docker compose * Setting the maintainer information to MEAN.JS team as well as in the comments * Adding a docker-compose clause --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0c5bc7d275..d2f10b9e1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,14 @@ # Build: -# docker build -t lirantal/meanjs . +# docker build -t meanjs/mean . # # Run: -# docker run -it lirantal/meanjs +# docker run -it meanjs/mean +# +# Compose: +# docker-compose up -d FROM ubuntu:latest -MAINTAINER Liran Tal +MAINTAINER MEAN.JS # Install Utilities RUN apt-get update -q