Initial Release: Custom Bitcoin Solo Pool Stack

This commit is contained in:
root
2026-08-24 11:39:33 +02:00
commit 2b7fa5396a
4 changed files with 245 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM php:8.3-apache
# Kopiere das Dashboard in den Webroot
COPY html/ /var/www/html/
# Erstelle den Ordner für die History und setze Rechte
RUN mkdir -p /var/www/html/posts && \
chown -R www-data:www-data /var/www/html/posts && \
chmod -R 775 /var/www/html/posts
# Definiere das Volume für persistente History-Daten
VOLUME /var/www/html/posts