From 6447cfe911938b8683a09e13df803fde6765cc06 Mon Sep 17 00:00:00 2001 From: sickprodigy Date: Fri, 21 Nov 2025 19:09:17 -0500 Subject: [PATCH] Add docker-compose configuration for it-tools service --- it-tools/docker-compose.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 it-tools/docker-compose.yml diff --git a/it-tools/docker-compose.yml b/it-tools/docker-compose.yml new file mode 100644 index 0000000..9da35d6 --- /dev/null +++ b/it-tools/docker-compose.yml @@ -0,0 +1,17 @@ +version: '3.9' +services: + it-tools: + image: 'corentinth/it-tools:latest' + ports: + - '8589:80' + restart: unless-stopped + container_name: it-tools + networks: + homelab: + aliases: + - ittools # adding multiple aliases under certain network + - webtools +networks: # I don't know why but you have to specify the network 2x. In service, and in this tag area.. + homelab: + name: homelab # Networks can also be given a custom name + external: true # This option causes compose to join the above network instead of making a _default one \ No newline at end of file