We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7616ca commit 5d72ad7Copy full SHA for 5d72ad7
Dockerfile
@@ -17,6 +17,4 @@ RUN apt-get update \
17
&& apt-get -y install git \
18
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
19
20
-CMD ["/usr/sbin/php-fpm7.4", "-F"]
21
-
22
EXPOSE 8080
README.md
@@ -1,5 +1,13 @@
1
# Simple NGINX, PHP and MySQL Docker Compose
2
3
+## Filestructure:
4
+
5
+Where your php application goes:
6
+`/application`
7
8
+Where your publicly accessible index file should be:
9
+`/application/public/index.html`
10
11
# TODO's
12
13
Finish this readme file :)
public/index.php
@@ -0,0 +1,5 @@
+<style>
+ body {
+ background: black;
+ }
+</style>
0 commit comments