1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 02:38:07 +02:00

Refactor directory and image location

- Removed Dockerfile for php image
+ Added php image into docker-compose file
-> Moved source for nginx/php to backend directory

Signed-off-by: Joseph Barreca <jbarrec.tech@gmail.com>
This commit is contained in:
Joseph Barreca 2021-04-06 13:30:44 -04:00
parent 98b90b1d49
commit 05008c0b54
3 changed files with 3 additions and 4 deletions

View file

@ -1 +0,0 @@
FROM php:8.0.3-fpm-buster

View file

@ -0,0 +1,3 @@
<?php
echo '<h1>hello world in php!</h1>';
?>