chore: complete update

This commit is contained in:
2025-07-17 16:24:20 +02:00
parent 899227b0a4
commit 64a7051137
1300 changed files with 85570 additions and 2756 deletions

View File

@@ -0,0 +1,33 @@
---
# PHP Installation und Konfiguration
- name: Stelle sicher, dass das PHP-Docker-Verzeichnis existiert
file:
path: "{{ deploy_root }}/docker/php"
state: directory
owner: "{{ deploy_user }}"
group: "{{ deploy_user }}"
mode: '0755'
- name: Erstelle einfache PHP-Dockerfile
copy:
dest: "{{ deploy_root }}/docker/php/Dockerfile-simple"
content: |
FROM php:8.1-fpm
RUN apt-get update && apt-get install -y \
git \
unzip \
libzip-dev \
zip \
&& docker-php-ext-install zip pdo pdo_mysql \
&& docker-php-ext-install opcache \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /var/www/html
CMD ["php-fpm"]
owner: "{{ deploy_user }}"
group: "{{ deploy_user }}"
mode: '0644'