From 5b37f24cdbaa448d85a503dfcc78eb8b95a4a676 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..695ec47 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + web: + image: darkhttpd + ports: + - "8080:80" + volumes: + - ./dev/:/var/www/htdocs:ro