founs some nice free icons from font awsome, and added them, also added default dockker stuff for easy deployment

This commit is contained in:
mate.kerner
2026-06-10 14:57:06 +02:00
parent 72df448dea
commit 10c4c0527c
17 changed files with 288 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM php:8.3-fpm
ARG PUID=1000
ARG PGID=1000
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates git openssh-client \
&& rm -rf /var/lib/apt/lists/*
RUN groupmod -o -g "${PGID}" www-data \
&& usermod -o -u "${PUID}" -g www-data www-data
RUN { \
echo 'upload_max_filesize = 16M'; \
echo 'post_max_size = 20M'; \
} > /usr/local/etc/php/conf.d/uploads.ini
RUN docker-php-ext-install pdo pdo_mysql