parent
9f308af6b0
commit
804eb5544f
@ -1 +1,2 @@ |
|||||||
LOCAL_CODE_ROOT=/var/www/http |
LOCAL_CODE_ROOT=/Users/tradewind/Projects |
||||||
|
PROJECT_PATH=/Users/tradewind/Projects/example |
||||||
|
@ -0,0 +1,19 @@ |
|||||||
|
FROM node:latest |
||||||
|
|
||||||
|
RUN sed -i "s@http://deb.debian.org@http://mirrors.aliyun.com@g" /etc/apt/sources.list |
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y \ |
||||||
|
libgtkextra-dev \ |
||||||
|
libgconf2-dev \ |
||||||
|
libnss3 \ |
||||||
|
libasound2 \ |
||||||
|
libxtst-dev \ |
||||||
|
libxss1 \ |
||||||
|
libatk-bridge2.0-0 \ |
||||||
|
libgtk-3.0 \ |
||||||
|
libgbm-dev \ |
||||||
|
&& apt-get clean \ |
||||||
|
&& apt-get autoclean |
||||||
|
|
||||||
|
RUN npm install -g electron |
||||||
|
|
@ -0,0 +1,5 @@ |
|||||||
|
zend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20160303/xdebug.so |
||||||
|
xdebug.mode=debug |
||||||
|
xdebug.client_host=host.docker.internal |
||||||
|
xdebug.client_port=9003 |
||||||
|
xdebug.idekey=PHPSTORM |
@ -0,0 +1,48 @@ |
|||||||
|
FROM php:7.1-fpm |
||||||
|
|
||||||
|
#ARG PROJECT_PATH |
||||||
|
#WORKDIR ${PROJECT_PATH} |
||||||
|
|
||||||
|
WORKDIR /opt/project |
||||||
|
|
||||||
|
RUN sed -i "s@http://deb.debian.org@http://mirrors.tencent.com@g" /etc/apt/sources.list |
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y \ |
||||||
|
git \ |
||||||
|
zip \ |
||||||
|
unzip \ |
||||||
|
libpq-dev \ |
||||||
|
libzip-dev \ |
||||||
|
libpng-dev \ |
||||||
|
libfreetype6-dev \ |
||||||
|
libxml2-dev \ |
||||||
|
libicu-dev \ |
||||||
|
libjpeg62-turbo-dev \ |
||||||
|
&& docker-php-ext-configure intl \ |
||||||
|
&& docker-php-ext-configure pcntl --enable-pcntl \ |
||||||
|
&& docker-php-ext-install -j$(nproc) \ |
||||||
|
bcmath \ |
||||||
|
pdo_mysql \ |
||||||
|
pdo_pgsql \ |
||||||
|
gd \ |
||||||
|
zip \ |
||||||
|
exif \ |
||||||
|
sockets \ |
||||||
|
intl \ |
||||||
|
soap \ |
||||||
|
pcntl \ |
||||||
|
&& pecl install \ |
||||||
|
redis \ |
||||||
|
xdebug-2.9.8 \ |
||||||
|
# mongodb \ |
||||||
|
&& docker-php-ext-enable \ |
||||||
|
redis \ |
||||||
|
xdebug \ |
||||||
|
# mongodb \ |
||||||
|
&& apt-get clean \ |
||||||
|
&& apt-get autoclean |
||||||
|
|
||||||
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer |
||||||
|
|
||||||
|
# 修改 composer 为国内镜像 |
||||||
|
RUN composer config -g repo.packagist composer https://mirrors.cloud.tencent.com/composer/ |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,10 @@ |
|||||||
|
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free |
||||||
|
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free |
||||||
|
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free |
||||||
|
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free |
||||||
|
|
||||||
|
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free |
||||||
|
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free |
||||||
|
|
||||||
|
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free |
||||||
|
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free |
@ -0,0 +1,5 @@ |
|||||||
|
zend_extension=xdebug |
||||||
|
xdebug.mode=debug |
||||||
|
xdebug.client_host=host.docker.internal |
||||||
|
xdebug.client_port=9003 |
||||||
|
xdebug.idekey=PHPSTORM |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue