From 33d42e63c48f7df8e8a9fc04e0dfbff024e3dc87 Mon Sep 17 00:00:00 2001 From: M_Viper Date: Mon, 12 Feb 2024 21:10:57 +0000 Subject: [PATCH] Dateien nach "install-it-tools-on-docker" hochladen --- install-it-tools-on-docker/docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 install-it-tools-on-docker/docker-compose.yml diff --git a/install-it-tools-on-docker/docker-compose.yml b/install-it-tools-on-docker/docker-compose.yml new file mode 100644 index 0000000..ed5b264 --- /dev/null +++ b/install-it-tools-on-docker/docker-compose.yml @@ -0,0 +1,18 @@ +version: "3.9" + +# Define services +services: + # it-tools service + it-tools: + # Use the latest image from corentinth/it-tools + image: "corentinth/it-tools:latest" + + # Map port 8080 on the host to port 80 in the container + ports: + - "8080:80" + + # Restart the container unless stopped + restart: unless-stopped + + # Set the container name to it-tools + container_name: it-tools