vagrant init

This commit is contained in:
2021-06-13 18:27:54 +02:00
parent c628b84aa5
commit a9fd62edd2
26 changed files with 1330 additions and 0 deletions

13
setup/php.dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM php:7.4-fpm-alpine
ADD ./php/www.conf /usr/local/etc/php-fpm.d/www.conf
RUN addgroup -g 1000 laravel && adduser -G laravel -g laravel -s /bin/sh -D laravel
RUN mkdir -p /var/www/html
RUN chown laravel:laravel /var/www/html
WORKDIR /var/www/html
RUN docker-php-ext-install pdo pdo_mysql