diff --git a/Dockerfile b/Dockerfile index ae32591..0e30f19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/init b/start similarity index 100% rename from init rename to start