From ec15db950ea472769ae8d37899b0bd4b6c094196 Mon Sep 17 00:00:00 2001 From: jabuxas Date: Mon, 16 Sep 2024 19:57:02 -0300 Subject: [PATCH] chore: init --- dev/index.html | 15 +++++++++++++++ docker-compose.yml | 7 +++++++ 2 files changed, 22 insertions(+) create mode 100644 dev/index.html create mode 100644 docker-compose.yml diff --git a/dev/index.html b/dev/index.html new file mode 100644 index 0000000..cecbb23 --- /dev/null +++ b/dev/index.html @@ -0,0 +1,15 @@ + + + + + + + jabuxas main page + + + + +

hello world

+ + + diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..4ec4a87 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + web: + image: darkhttpd + ports: + - "28080:80" + volumes: + - ./dev/:/var/www/htdocs:ro