From 75fd103476a390f1be5344ed68438debd39b3536 Mon Sep 17 00:00:00 2001 From: Sven van Heugten Date: Fri, 27 Feb 2026 17:24:30 +0100 Subject: [PATCH] Remove Docker stuff --- NightLight/Dockerfile | 13 ------------- docker-compose.yaml | 31 ------------------------------- 2 files changed, 44 deletions(-) delete mode 100644 NightLight/Dockerfile delete mode 100644 docker-compose.yaml diff --git a/NightLight/Dockerfile b/NightLight/Dockerfile deleted file mode 100644 index 521c59e..0000000 --- a/NightLight/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build -WORKDIR /app -COPY NightLight.sln ./ -COPY NightLight.Core/NightLight.Core.fsproj NightLight.Core/ -COPY NightLight/NightLight.fsproj NightLight/ -RUN dotnet restore NightLight/NightLight.fsproj -COPY . ./ -RUN dotnet publish NightLight/NightLight.fsproj --no-restore -c Release -o out - -FROM mcr.microsoft.com/dotnet/runtime:10.0 -WORKDIR /app -COPY --from=build /app/out . -ENTRYPOINT ["dotnet", "NightLight.dll"] diff --git a/docker-compose.yaml b/docker-compose.yaml deleted file mode 100644 index a734f44..0000000 --- a/docker-compose.yaml +++ /dev/null @@ -1,31 +0,0 @@ -services: - mqtt: - image: eclipse-mosquitto:2.0.21 - restart: always - volumes: - - /mosquitto - ports: - - 1883:1883 - - 9001:9001 - command: "mosquitto -c /mosquitto-no-auth.conf" - zigbee2mqtt: - image: koenkk/zigbee2mqtt:2.6.3 - restart: always - volumes: - - ./zigbee2mqtt-data:/app/data - - /run/udev:/run/udev:ro - ports: - - 8080:8080 - environment: - - TZ=Europe/Stockholm - devices: - - /dev/ttyUSB0:/dev/ttyUSB0 - night-light: - build: - context: . - dockerfile: ./NightLight/Dockerfile - restart: always - environment: - - MQTT_SERVER=mqtt - - TZ=Europe/Stockholm -