renamed init script to start

This commit is contained in:
Sameer Naik
2014-07-04 10:14:43 +05:30
parent cf0271dbc0
commit e4df972451
2 changed files with 3 additions and 3 deletions
+3 -3
View File
@@ -6,9 +6,9 @@ RUN apt-get update && \
rm -rf /var/lib/postgresql && \
apt-get clean # 20140525
ADD init /init
RUN chmod 755 /init
ADD start /start
RUN chmod 755 /start
EXPOSE 5432
VOLUME ["/var/lib/postgresql"]
CMD ["/init"]
CMD ["/start"]
View File