Réorganisation du dépôt
This commit is contained in:
@@ -1,32 +0,0 @@
|
|||||||
worker_processes 1;
|
|
||||||
|
|
||||||
events {
|
|
||||||
worker_connections 1024;
|
|
||||||
}
|
|
||||||
|
|
||||||
http {
|
|
||||||
include mime.types;
|
|
||||||
default_type application/octet-stream;
|
|
||||||
|
|
||||||
sendfile on;
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
|
|
||||||
location / {
|
|
||||||
root /var/www/html;
|
|
||||||
autoindex on;
|
|
||||||
index index.php index.html index.htm;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
|
|
||||||
location ~ \.php$ {
|
|
||||||
root /var/www/html;
|
|
||||||
fastcgi_pass php:9000;
|
|
||||||
fastcgi_index index.php;
|
|
||||||
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
|
|
||||||
fastcgi_read_timeout 180;
|
|
||||||
include fastcgi_params;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
@@ -1,10 +0,0 @@
|
|||||||
[xdebug]
|
|
||||||
zend_extension = xdebug.so
|
|
||||||
xdebug.remote_enable=1
|
|
||||||
xdebug.remote_port=9042
|
|
||||||
xdebug.remote_host=172.17.0.1
|
|
||||||
xdebug.remote_connect_back=1 # Not safe for production servers
|
|
||||||
xdebug.remote_handler=dbgp
|
|
||||||
xdebug.remote_mode=req
|
|
||||||
xdebug.remote_autostart=true
|
|
||||||
xdebug.remote_log="/var/log/xdebug/xdebug.log"
|
|
@@ -1,47 +0,0 @@
|
|||||||
mariadb:
|
|
||||||
image: mariadb:latest
|
|
||||||
volumes:
|
|
||||||
- ~/.mysql:/var/lib/mysql
|
|
||||||
- ~/log/mysql:/var/log/mysql
|
|
||||||
expose:
|
|
||||||
- 3306
|
|
||||||
environment:
|
|
||||||
- MYSQL_ROOT_PASSWORD=MyPassWord48
|
|
||||||
|
|
||||||
php:
|
|
||||||
build: ./php-fpm
|
|
||||||
expose:
|
|
||||||
- 9000
|
|
||||||
ports:
|
|
||||||
- 9042:9042
|
|
||||||
volumes:
|
|
||||||
- ~/Public:/var/www/html
|
|
||||||
- ~/log/php:/var/log/
|
|
||||||
- ./config/php.ini:/usr/local/etc/php/php.ini
|
|
||||||
- ./config/xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
|
|
||||||
links:
|
|
||||||
- mariadb
|
|
||||||
|
|
||||||
nginx:
|
|
||||||
image: nginx:latest
|
|
||||||
volumes:
|
|
||||||
- ~/log/nginx:/var/log/nginx
|
|
||||||
- ./config/nginx.conf:/etc/nginx/nginx.conf
|
|
||||||
- ~/Public:/var/www/html
|
|
||||||
ports:
|
|
||||||
- 80:80
|
|
||||||
environment:
|
|
||||||
- NGINX_HOST=localhost
|
|
||||||
- NGINX_PORT=80
|
|
||||||
links:
|
|
||||||
- php
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# smtp:
|
|
||||||
# build: ./smtp
|
|
||||||
# volumes:
|
|
||||||
# - ./config/smtpd.conf:/etc/smtpd.conf
|
|
||||||
# - ./config/mailname:/etc/mailname
|
|
||||||
# expose:
|
|
||||||
# - 25
|
|
@@ -1,24 +0,0 @@
|
|||||||
FROM php:7-fpm
|
|
||||||
|
|
||||||
RUN cd /tmp/ && \
|
|
||||||
curl -O http://pecl.php.net/get/xdebug-2.4.0.tgz && \
|
|
||||||
tar zxvf xdebug-2.4.0.tgz && \
|
|
||||||
mv xdebug-2.4.0 /usr/src/php/ext/xdebug
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y \
|
|
||||||
ssmtp \
|
|
||||||
libfreetype6-dev \
|
|
||||||
libjpeg62-turbo-dev \
|
|
||||||
libmcrypt-dev \
|
|
||||||
libpng12-dev \
|
|
||||||
&& docker-php-ext-install -j$(nproc) iconv mcrypt gd zip \
|
|
||||||
&& docker-php-ext-install -j$(nproc) mysqli pdo pdo_mysql \
|
|
||||||
&& docker-php-ext-install -j$(nproc) xdebug\
|
|
||||||
&& apt-get purge -y --auto-remove $buildDeps \
|
|
||||||
&& cd /usr/src/php \
|
|
||||||
&& make clean \
|
|
||||||
&& apt-get clean \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
|
|
||||||
RUN docker-php-ext-install xdebug
|
|
@@ -1,8 +0,0 @@
|
|||||||
FROM debian:jessie
|
|
||||||
RUN echo "deb http://debian.mirrors.ovh.net/debian/ jessie-backports main" >> /etc/apt/sources.list \
|
|
||||||
&& apt-get update && apt-get install -y \
|
|
||||||
opensmtpd/jessie-backports \
|
|
||||||
&& apt-get clean \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/sbin/smtpd", "-d"]
|
|
@@ -1,6 +0,0 @@
|
|||||||
devphp:
|
|
||||||
image: daiko/mapserver-ecw
|
|
||||||
ports:
|
|
||||||
- "80:80"
|
|
||||||
volumes:
|
|
||||||
- ~/VirtualBox\ VMs/cartesSIG:/var/www/html
|
|
Reference in New Issue
Block a user