adding file upload & tags

This commit is contained in:
2026-05-12 09:52:15 +02:00
parent 494f30d6c3
commit 988da11f80
10 changed files with 366 additions and 9 deletions
+4 -1
View File
@@ -3,7 +3,10 @@ FROM php:8.2-fpm
RUN apt-get update && apt-get install -y libcurl4-openssl-dev && \
docker-php-ext-install pdo pdo_mysql curl && \
mkdir -p /tmp/sessions && \
chmod 777 /tmp/sessions
chmod 777 /tmp/sessions && \
mkdir -p /var/www/uploads && \
chmod 755 /var/www/uploads && \
chown www-data:www-data /var/www/uploads
COPY docker/php.ini /usr/local/etc/php/conf.d/neptune.ini