From 0609b0a10987db09e876647513c7ca0d07ffd6f5 Mon Sep 17 00:00:00 2001 From: M_Viper Date: Mon, 12 Feb 2024 20:58:45 +0000 Subject: [PATCH] Dateien nach "install-dashdot-on-docker" hochladen --- install-dashdot-on-docker/docker-compose.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 install-dashdot-on-docker/docker-compose.yml diff --git a/install-dashdot-on-docker/docker-compose.yml b/install-dashdot-on-docker/docker-compose.yml new file mode 100644 index 0000000..1868109 --- /dev/null +++ b/install-dashdot-on-docker/docker-compose.yml @@ -0,0 +1,10 @@ +version: "3.8" # Specifies the version of the Docker Compose file format + +services: + dashdot: + image: mauricenino/dashdot # Image to be used for this service + ports: + - "3001:3001" # Port 3001 on the host is mapped to port 3001 in the container + volumes: + - /:/mnt/host:ro # Mounts the root directory of the host as read-only at /mnt/host in the container + privileged: true # Runs the container in privileged mode, allowing it access to host devices