We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f12f117 commit 39f389fCopy full SHA for 39f389f
.dockerignore
@@ -0,0 +1 @@
1
+.git
Dockerfile
@@ -0,0 +1,17 @@
+FROM xaamin/php
2
+MAINTAINER Benjamín Martínez Mateos <bmxamin@gmail.com>
3
+
4
+# Set memory limit
5
+RUN sed -i 's/memory_limit = .*/memory_limit = -1/' /etc/php5/cli/php.ini
6
7
+# Add env variables
8
+ENV TRIES 5
9
10
+# Add bootstrap file
11
+ADD start.bash /start.bash
12
13
+# Add supervisor config file
14
+ADD supervisord.conf /etc/supervisor/supervisord.conf
15
16
+# Define default command.
17
+CMD ["/bin/bash", "/start.bash"]
0 commit comments