We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc0d118 + 5da61ab commit 881c69dCopy full SHA for 881c69d
Dockerfile
@@ -0,0 +1,5 @@
1
+FROM php:5.4-apache
2
+COPY . /var/www/html
3
+RUN sed -i 's/Options FollowSymLinks/Options +FollowSymLinks +Indexes/g' /etc/apache2/apache2.conf
4
+RUN echo '<IfModule mime_module>\nAddDefaultCharset UTF-8\n</IfModule>' > /etc/apache2/conf-enabled/default-charset.conf
5
+EXPOSE 80
docker-compose.yml
@@ -0,0 +1,7 @@
+version: '2'
+services:
+ phpserialize-labs:
+ build: .
+ ports:
6
+ - "8080:80"
7
+
0 commit comments