add AquaeAtrae example for ROOT_SITE_SUBFOLDER

This commit is contained in:
bunkerity
2021-05-12 12:07:29 +02:00
parent b1d03cd11c
commit 3a34436cd8
6 changed files with 30 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
<?php
echo "welcome to app1 !";
?>

View File

@@ -0,0 +1,5 @@
<?php
echo "welcome to app2 !";
?>

View File

@@ -0,0 +1,9 @@
FROM php:fpm
COPY docker-php-entrypoint /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-php-entrypoint
ENTRYPOINT ["/usr/local/bin/docker-php-entrypoint"]
EXPOSE 9000
CMD ["php-fpm"]

View File

@@ -0,0 +1,5 @@
<?php
echo "welcome to app3 !";
?>

View File

@@ -0,0 +1,4 @@
#!/bin/sh
echo "[*] my-php started"
exec "$@"