docker input

This commit is contained in:
2025-07-17 21:45:17 +02:00
parent a6ebc41ec8
commit 5b602d33f1
4 changed files with 41 additions and 25 deletions

25
.dockerignore Normal file
View File

@@ -0,0 +1,25 @@
**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/bin
**/charts
**/docker-compose*
**/compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md

View File

@@ -1,25 +1,4 @@
# Basis-Image von hassio-addons
FROM ghcr.io/hassio-addons/debian-base:7.3.1
# Installiere Abhängigkeiten und Folding@home 8.4
RUN \
apt-get update && \
apt-get install -y --no-install-recommends \
curl \
ca-certificates && \
# Lade Folding@home 8.4 herunter (URL anpassen, sobald verfügbar)
curl -sSL https://download.foldingathome.org/releases/public/release/fahclient/debian-stable-64bit/v8.4/fahclient_8.4.0-64bit-release.deb -o fahclient.deb && \
dpkg -i fahclient.deb && \
rm fahclient.deb && \
# Bereinige Cache
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Kopiere rootfs
COPY rootfs /
# Exponiere Ports (Folding@home-Webinterface)
EXPOSE 7396
# S6-Overlay für Dienstverwaltung
CMD [ "/run.sh" ]
FROM docker/whalesay:latest
LABEL Name=dontstopfolding Version=0.0.1
RUN apt-get -y update && apt-get install -y fortunes
CMD ["sh", "-c", "/usr/games/fortune -a | cowsay"]

6
docker-compose.debug.yml Normal file
View File

@@ -0,0 +1,6 @@
services:
dontstopfolding:
image: dontstopfolding
build:
context: .
dockerfile: ./Dockerfile

6
docker-compose.yml Normal file
View File

@@ -0,0 +1,6 @@
services:
dontstopfolding:
image: dontstopfolding
build:
context: .
dockerfile: ./Dockerfile