Last active
March 25, 2019 02:38
-
-
Save martincarlin87/901780a1ecdcd4dbd7e222202e223dd7 to your computer and use it in GitHub Desktop.
An attempt to Dockerise an existing Laravel App.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.git | |
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
web: | |
image: nginx:latest | |
ports: | |
- "8080:80" | |
volumes: | |
- ./:/var/www/test | |
- ./site.conf:/etc/nginx/conf.d/site.conf | |
links: | |
- php | |
php: | |
image: php:7-fpm | |
volumes: | |
- ./:/var/www/test | |
- ./php-ini-overrides.ini:/etc/php/7.1/fpm/conf.d/99-overrides.ini | |
links: | |
- mysql | |
mysql: | |
image: mysql:5.7 | |
environment: | |
- MYSQL_ROOT_PASSWORD= | |
- MYSQL_DATABASE=db_name | |
- MYSQL_USER=root | |
- MYSQL_PASSWORD= | |
- MYSQL_ALLOW_EMPTY_PASSWORD=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
RUN apt-get update && apt-get install -y --no-install-recommends \ | |
curl \ | |
nano \ | |
php7.1-mysql php-redis php7.1-gd php-imagick php-ssh2 php-xdebug \ | |
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \ | |
&& apt-get clean; rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* | |
RUN docker-php-ext-install pdo pdo_mysql | |
WORKDIR /var/www/test | |
RUN cd /var/www/test && \ | |
composer install --no-interaction | |
EXPOSE 80 | |
EXPOSE 443 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upload_max_filesize = 100M | |
post_max_size = 108M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name test.localhost; | |
access_log /var/log/nginx/access.log; | |
error_log /var/log/nginx/error.log; | |
root /var/www/test/public; | |
index index.php; | |
if (!-e $request_filename) { | |
rewrite ^.*$ /index.php last; | |
} | |
location ~ \.php$ { | |
fastcgi_pass php:9000; | |
fastcgi_index index.php; | |
try_files $uri =404; | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
fastcgi_param PATH_INFO $fastcgi_path_info; | |
fastcgi_param PHP_VALUE "error_log=/var/log/nginx/error.log"; | |
include fastcgi_params; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment