This commit is contained in:
Thomas
2026-03-24 10:47:19 +00:00
commit 5442495f9c
3 changed files with 13 additions and 0 deletions

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM php:8-apache
COPY index.php /var/www/html

4
README Normal file
View File

@ -0,0 +1,4 @@
bauen: docker build -t php-app .
starten: docker run php-app
mit port: docker -p 80:80 php-app

6
index.php Normal file
View File

@ -0,0 +1,6 @@
<h1>app sample </h1>
<p>Date: <?= date('c') ?> </p>
<p>ID: <?= uniqid() ?> </p>
<p>host: <?= gethostname() ?> </p>