Skip to content

Commit 5d72ad7

Browse files
committed
Update README, add public folder with blank page
1 parent b7616ca commit 5d72ad7

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Dockerfile

-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,4 @@ RUN apt-get update \
1717
&& apt-get -y install git \
1818
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
1919

20-
CMD ["/usr/sbin/php-fpm7.4", "-F"]
21-
2220
EXPOSE 8080

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Simple NGINX, PHP and MySQL Docker Compose
22

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+
311
# TODO's
412

513
Finish this readme file :)

public/index.php

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<style>
2+
body {
3+
background: black;
4+
}
5+
</style>

0 commit comments

Comments
 (0)