From 4040b166f8ddbb547f85a04031a7769da78bbade Mon Sep 17 00:00:00 2001 From: dominikhoebert <42839893+dominikhoebert@users.noreply.github.com> Date: Mon, 29 Jul 2024 20:57:34 +0200 Subject: [PATCH] added whoami --- README.md | 2 +- dummy/compose.yml | 8 ++++++++ whoami/compose.yml | 15 +++++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 dummy/compose.yml create mode 100644 whoami/compose.yml diff --git a/README.md b/README.md index c27def4..0dd9802 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,6 @@ ## ToDo -- whoami - adguard home - dozzle - dockge @@ -75,6 +74,7 @@ - alpine - nginx - obsidian livesync +- whoami ## Tools diff --git a/dummy/compose.yml b/dummy/compose.yml new file mode 100644 index 0000000..30a6fb2 --- /dev/null +++ b/dummy/compose.yml @@ -0,0 +1,8 @@ +# + +# + +name: + +services: + \ No newline at end of file diff --git a/whoami/compose.yml b/whoami/compose.yml new file mode 100644 index 0000000..a1d1c16 --- /dev/null +++ b/whoami/compose.yml @@ -0,0 +1,15 @@ +# https://hub.docker.com/r/traefik/whoami + +# Tiny Go webserver that prints OS information and HTTP request to output + +name: whoami +services: + whoami-test: + image: traefik/whoami + container_name: whoami + security_opt: + - no-new-privileges:true + environment: + - TZ=Europe/Vienna + ports: + - 83:80 \ No newline at end of file