commit c77d3bf4ff661d36e169471fb554950df7be190a Author: serialexperiments0815 <112315380+serialexperiments0815@users.noreply.github.com> Date: Wed Mar 25 20:48:05 2026 +0100 first commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e87f815 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM php:8.1-apache + +# Copy all project fines into the web root +COPY . /var/www/html + +EXPOSE 80 \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..5723b73 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,8 @@ +name: "WebsiteMapTesting" +services: + app: + build: . + ports: + - "9090:80" + volumes: + - .:/var/www/html \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..04b1d61 --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + + + MapTesting + + + /> + + + + SH + MP + BB + S + B + BW + Saar + Hamburg + Bremen + RP + Hannover + NRW + SA + Hessen + Thüringen + + + + \ No newline at end of file diff --git a/ressources/Germany_location_map.svg.webp b/ressources/Germany_location_map.svg.webp new file mode 100644 index 0000000..7bdb373 Binary files /dev/null and b/ressources/Germany_location_map.svg.webp differ