From 025a33906251135b95831ff6854ffa076f8baa6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=9C=97=E7=89=9B?= Date: Wed, 15 Feb 2017 10:20:18 +0800 Subject: [PATCH 001/313] change application source #397 # fix a problem--#397, change application source from dl-cdn.alpinelinux.org to aliyun source. --- nginx/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 1a1db96f..e23be3d5 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -6,6 +6,9 @@ ADD nginx.conf /etc/nginx/ ARG PHP_UPSTREAM=php-fpm +# fix a problem--#397, change application source from dl-cdn.alpinelinux.org to aliyun source. +RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories + RUN apk update \ && apk upgrade \ && apk add --no-cache bash \ From eefd04dbfccf1632bf2f59843b05c9d143779871 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Sat, 22 Apr 2017 13:54:19 +0800 Subject: [PATCH 002/313] add pg_dump --- pgadmin/Dockerfile | 4 +- pgadmin/pg/pg_dump | 281 ++++++++++++++++++++++++++++++++++++++++++ pgadmin/pg/pg_restore | 281 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 564 insertions(+), 2 deletions(-) create mode 100644 pgadmin/pg/pg_dump create mode 100644 pgadmin/pg/pg_restore diff --git a/pgadmin/Dockerfile b/pgadmin/Dockerfile index 2d34c22b..f92dafa6 100644 --- a/pgadmin/Dockerfile +++ b/pgadmin/Dockerfile @@ -1,5 +1,5 @@ FROM fenglc/pgadmin4 - -MAINTAINER Bo-Yi Wu +ADD pg /usr/bin +MAINTAINER Huadong Zuo EXPOSE 5050 diff --git a/pgadmin/pg/pg_dump b/pgadmin/pg/pg_dump new file mode 100644 index 00000000..9692a847 --- /dev/null +++ b/pgadmin/pg/pg_dump @@ -0,0 +1,281 @@ +#!/usr/bin/perl -w +# Call a PostgreSQL client program with the version, cluster and default +# database specified in ~/.postgresqlrc or +# /etc/postgresql-common/user_clusters. +# +# (C) 2005-2009 Martin Pitt +# (C) 2013-2014 Christoph Berg +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +use strict; +use POSIX; +use PgCommon; + +my ($version, $cluster, $db, $port, $host); + +$host = $ENV{'PGHOST'}; + +# Check for PGCLUSTER in %ENV +if (defined $ENV{'PGCLUSTER'}) { + ($version, $cluster) = split ('/', $ENV{'PGCLUSTER'}, 2); + error 'Invalid version specified with $PGCLUSTER' unless version_exists $version; + error 'No cluster specified with $PGCLUSTER' unless $cluster; +} + +# Check for --cluster argument and filter it out, and check if --port is specified +my $port_specified = exists $ENV{'PGPORT'}; +for (my $i = 0; $i <= $#ARGV; ++$i) { + last if $ARGV[$i] eq '--'; + + if ($ARGV[$i] eq '--cluster') { + error '--cluster option needs an argument (/)' if ($i >= $#ARGV); + + ($version, $cluster) = split ('/', $ARGV[$i+1], 2); + $host = undef; # --cluster overrides $PGHOST env var + error 'Invalid version specified with --cluster' unless version_exists $version; + error 'No cluster specified with --cluster' unless $cluster; + + splice @ARGV, $i, 2; + last; + } elsif ($ARGV[$i] =~ /^--cluster=(\d+\.?\d)\/(.+)/) { + ($version, $cluster) = ($1, $2); + $host = undef; # --cluster overrides $PGHOST env var + error 'Invalid version specified with --cluster' unless version_exists $version; + error 'No cluster specified with --cluster' unless $cluster; + + splice @ARGV, $i, 1; + last; + } + + $port_specified = 1 if $ARGV[$i] =~ /^--port\b/ || $ARGV[$i] =~ /^-\w*p\w*\d*$/; + $host = '.from.commandline' if $ARGV[$i] =~ /^--host\b/ || $ARGV[$i] =~ /^-\w*h\w*$/; +} + +# Determine $version, $cluster, $db, $port from map files +($version, $cluster, $db) = user_cluster_map() unless $cluster; + +# check if we have a network cluster +if (!$host && $cluster && !cluster_exists $version, $cluster) { + if ($cluster =~ /^(\S+):(\d*)$/) { + $host = $1; + $port = $2 || 5432; + } else { + error 'Specified cluster does not exist locally and does not specify a remote cluster'; + } +} + +if (!$host && $cluster) { + $port = get_cluster_port($version, $cluster); + + unless ($ENV{'PGHOST'}) { + # default to cluster specific Unix socket directory + $ENV{'PGHOST'} = get_cluster_socketdir $version, $cluster; + } +} + +$ENV{'PGSYSCONFDIR'} = '/etc/postgresql-common' if !$ENV{'PGSYSCONFDIR'}; +$ENV{'PGPORT'} = $port if $port && !$ENV{'PGPORT'}; +$ENV{'PGDATABASE'} = $db if $db && !$ENV{'PGDATABASE'}; +$ENV{'PGHOST'} = $host if $host && $host ne '.from.commandline'; + +# if we only have a port, but no version here, use the latest version +# TODO: this could be improved by better argument parsing and mapping back the +# port to a cluster version/name +if (!$version and $port_specified) { + $version = get_newest_version; +} + +unless ($version) { + if (get_versions) { + error 'No existing local cluster is suitable as a default target. Please see man pg_wrapper(1) how to specify one.'; + } else { + error 'You must install at least one postgresql-client- package.'; + } +} + +error 'Invalid PostgreSQL cluster version' unless -d "$PgCommon::binroot$version"; +my $cmdname = (split '/', $0)[-1]; +my $cmd; + +# for psql we always want the latest version, as this is backwards compatible +# to every major version that that we support +if ($cmdname eq 'pg_wrapper') { + error "pg_wrapper should not be called directly, but through a symlink"; +} elsif ($cmdname =~ /^(psql|pg_archivecleanup|pg_isready)$/) { + $cmd = get_program_path ($cmdname, get_newest_version); +} else { + $cmd = get_program_path ($cmdname, $version); +} + +# libreadline is a lot better than libedit, so prefer that +if ($cmdname eq 'psql' and not $PgCommon::rpm) { + my @readlines; + # non-multiarch path + @readlines = sort(); + + unless (@readlines) { + # get multiarch dir for our architecture + if (open PS, '-|', '/usr/bin/ldd', $cmd) { + my $out; + read PS, $out, 10000; + close PS; + if ($out =~ m!/libreadline.so!) { + # already linked against libreadline + @readlines = (); + } + else + { + my ($lib_path) = $out =~ m!(/lib/.*)/libedit.so!; + + @readlines = sort(<$lib_path/libreadline.so.?>); + } + } + } + + if (@readlines) { + $ENV{'LD_PRELOAD'} = ($ENV{'LD_PRELOAD'} or '') . ':' . $readlines[-1]; + } +} + +error "pg_wrapper: $cmdname was not found in $PgCommon::binroot$version/bin" unless $cmd; +unshift @ARGV, $cmd; +exec @ARGV; + +__END__ + +=head1 NAME + +pg_wrapper - wrapper for PostgreSQL client commands + +=head1 SYNOPSIS + +I [B<--cluster> I/I] [...] + +(I: B, B, B, and all other client +programs installed in CIC). + +=head1 DESCRIPTION + +This program is run only as a link to names which correspond to PostgreSQL +programs in CIC. It determines the +configured cluster and database for the user and calls the appropriate version +of the desired program to connect to that cluster and database, supplying any +specified options to that command. + +The target cluster is selected by the following means, in descending order of +precedence: + +=over + +=item 1. + +explicit specification with the B<--host> option + +=item 2. + +explicit specification with the B<--cluster> option + +=item 3. + +if the B environment variable is set, no further cluster selection is +performed. The default PostgreSQL version and port number (from the command +line, the environment variable B, or default 5432) will be used. + +=item 4. + +explicit specification with the B environment variable + +=item 5. + +matching entry in C<~/.postgresqlrc> (see L), if that +file exists + +=item 6. + +matching entry in C (see +L), if that file exists + +=item 7. + +If only one local cluster exists, that one will be selected. + +=item 8. + +If several local clusters exist, the one listening on the default port 5432 +will be selected. + +=back + +If none of these rules match, B aborts with an error. + +For B, B, and B, B will always use the binary from +the newest PostgreSQL version installed, as these are downwards compatible. + +=head1 OPTIONS + +=over + +=item B<--cluster> IBI + +I is either the name of a local cluster, or takes the form +I:I for a remote cluster. If I is left empty (i. e. you just +specify I), it defaults to 5432. + +=back + +=head1 ENVIRONMENT + +=over + +=item B + +If C<$PGCLUSTER> is set, its value (of the form I/I) +specifies the desired cluster, similar to the B<--cluster> option. However, if +B<--cluster> is specified, it overrides the value of C<$PGCLUSTER>. + +=item B + +This specifies an alternative base directory for cluster configurations. This +is usually C, but for testing/development purposes you can +change this to point to e. g. your home directory, so that you can use the +postgresql-common tools without root privileges. + +=item B + +This is the location of PostgreSQL's and postgresql-common's global +configuration (e. g. C, L). The default is +C. + +=back + +=head1 FILES + +=over + +=item C + +stores the default cluster and database for users and groups as set by +the administrators. + +=item C<$HOME/.postgresqlrc> + +stores defaults set by the user himself. + +=back + +=head1 SEE ALSO + +L, L + +=head1 AUTHOR + +Martin Pitt Lmpitt@debian.orgE> diff --git a/pgadmin/pg/pg_restore b/pgadmin/pg/pg_restore new file mode 100644 index 00000000..9692a847 --- /dev/null +++ b/pgadmin/pg/pg_restore @@ -0,0 +1,281 @@ +#!/usr/bin/perl -w +# Call a PostgreSQL client program with the version, cluster and default +# database specified in ~/.postgresqlrc or +# /etc/postgresql-common/user_clusters. +# +# (C) 2005-2009 Martin Pitt +# (C) 2013-2014 Christoph Berg +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +use strict; +use POSIX; +use PgCommon; + +my ($version, $cluster, $db, $port, $host); + +$host = $ENV{'PGHOST'}; + +# Check for PGCLUSTER in %ENV +if (defined $ENV{'PGCLUSTER'}) { + ($version, $cluster) = split ('/', $ENV{'PGCLUSTER'}, 2); + error 'Invalid version specified with $PGCLUSTER' unless version_exists $version; + error 'No cluster specified with $PGCLUSTER' unless $cluster; +} + +# Check for --cluster argument and filter it out, and check if --port is specified +my $port_specified = exists $ENV{'PGPORT'}; +for (my $i = 0; $i <= $#ARGV; ++$i) { + last if $ARGV[$i] eq '--'; + + if ($ARGV[$i] eq '--cluster') { + error '--cluster option needs an argument (/)' if ($i >= $#ARGV); + + ($version, $cluster) = split ('/', $ARGV[$i+1], 2); + $host = undef; # --cluster overrides $PGHOST env var + error 'Invalid version specified with --cluster' unless version_exists $version; + error 'No cluster specified with --cluster' unless $cluster; + + splice @ARGV, $i, 2; + last; + } elsif ($ARGV[$i] =~ /^--cluster=(\d+\.?\d)\/(.+)/) { + ($version, $cluster) = ($1, $2); + $host = undef; # --cluster overrides $PGHOST env var + error 'Invalid version specified with --cluster' unless version_exists $version; + error 'No cluster specified with --cluster' unless $cluster; + + splice @ARGV, $i, 1; + last; + } + + $port_specified = 1 if $ARGV[$i] =~ /^--port\b/ || $ARGV[$i] =~ /^-\w*p\w*\d*$/; + $host = '.from.commandline' if $ARGV[$i] =~ /^--host\b/ || $ARGV[$i] =~ /^-\w*h\w*$/; +} + +# Determine $version, $cluster, $db, $port from map files +($version, $cluster, $db) = user_cluster_map() unless $cluster; + +# check if we have a network cluster +if (!$host && $cluster && !cluster_exists $version, $cluster) { + if ($cluster =~ /^(\S+):(\d*)$/) { + $host = $1; + $port = $2 || 5432; + } else { + error 'Specified cluster does not exist locally and does not specify a remote cluster'; + } +} + +if (!$host && $cluster) { + $port = get_cluster_port($version, $cluster); + + unless ($ENV{'PGHOST'}) { + # default to cluster specific Unix socket directory + $ENV{'PGHOST'} = get_cluster_socketdir $version, $cluster; + } +} + +$ENV{'PGSYSCONFDIR'} = '/etc/postgresql-common' if !$ENV{'PGSYSCONFDIR'}; +$ENV{'PGPORT'} = $port if $port && !$ENV{'PGPORT'}; +$ENV{'PGDATABASE'} = $db if $db && !$ENV{'PGDATABASE'}; +$ENV{'PGHOST'} = $host if $host && $host ne '.from.commandline'; + +# if we only have a port, but no version here, use the latest version +# TODO: this could be improved by better argument parsing and mapping back the +# port to a cluster version/name +if (!$version and $port_specified) { + $version = get_newest_version; +} + +unless ($version) { + if (get_versions) { + error 'No existing local cluster is suitable as a default target. Please see man pg_wrapper(1) how to specify one.'; + } else { + error 'You must install at least one postgresql-client- package.'; + } +} + +error 'Invalid PostgreSQL cluster version' unless -d "$PgCommon::binroot$version"; +my $cmdname = (split '/', $0)[-1]; +my $cmd; + +# for psql we always want the latest version, as this is backwards compatible +# to every major version that that we support +if ($cmdname eq 'pg_wrapper') { + error "pg_wrapper should not be called directly, but through a symlink"; +} elsif ($cmdname =~ /^(psql|pg_archivecleanup|pg_isready)$/) { + $cmd = get_program_path ($cmdname, get_newest_version); +} else { + $cmd = get_program_path ($cmdname, $version); +} + +# libreadline is a lot better than libedit, so prefer that +if ($cmdname eq 'psql' and not $PgCommon::rpm) { + my @readlines; + # non-multiarch path + @readlines = sort(); + + unless (@readlines) { + # get multiarch dir for our architecture + if (open PS, '-|', '/usr/bin/ldd', $cmd) { + my $out; + read PS, $out, 10000; + close PS; + if ($out =~ m!/libreadline.so!) { + # already linked against libreadline + @readlines = (); + } + else + { + my ($lib_path) = $out =~ m!(/lib/.*)/libedit.so!; + + @readlines = sort(<$lib_path/libreadline.so.?>); + } + } + } + + if (@readlines) { + $ENV{'LD_PRELOAD'} = ($ENV{'LD_PRELOAD'} or '') . ':' . $readlines[-1]; + } +} + +error "pg_wrapper: $cmdname was not found in $PgCommon::binroot$version/bin" unless $cmd; +unshift @ARGV, $cmd; +exec @ARGV; + +__END__ + +=head1 NAME + +pg_wrapper - wrapper for PostgreSQL client commands + +=head1 SYNOPSIS + +I [B<--cluster> I/I] [...] + +(I: B, B, B, and all other client +programs installed in CIC). + +=head1 DESCRIPTION + +This program is run only as a link to names which correspond to PostgreSQL +programs in CIC. It determines the +configured cluster and database for the user and calls the appropriate version +of the desired program to connect to that cluster and database, supplying any +specified options to that command. + +The target cluster is selected by the following means, in descending order of +precedence: + +=over + +=item 1. + +explicit specification with the B<--host> option + +=item 2. + +explicit specification with the B<--cluster> option + +=item 3. + +if the B environment variable is set, no further cluster selection is +performed. The default PostgreSQL version and port number (from the command +line, the environment variable B, or default 5432) will be used. + +=item 4. + +explicit specification with the B environment variable + +=item 5. + +matching entry in C<~/.postgresqlrc> (see L), if that +file exists + +=item 6. + +matching entry in C (see +L), if that file exists + +=item 7. + +If only one local cluster exists, that one will be selected. + +=item 8. + +If several local clusters exist, the one listening on the default port 5432 +will be selected. + +=back + +If none of these rules match, B aborts with an error. + +For B, B, and B, B will always use the binary from +the newest PostgreSQL version installed, as these are downwards compatible. + +=head1 OPTIONS + +=over + +=item B<--cluster> IBI + +I is either the name of a local cluster, or takes the form +I:I for a remote cluster. If I is left empty (i. e. you just +specify I), it defaults to 5432. + +=back + +=head1 ENVIRONMENT + +=over + +=item B + +If C<$PGCLUSTER> is set, its value (of the form I/I) +specifies the desired cluster, similar to the B<--cluster> option. However, if +B<--cluster> is specified, it overrides the value of C<$PGCLUSTER>. + +=item B + +This specifies an alternative base directory for cluster configurations. This +is usually C, but for testing/development purposes you can +change this to point to e. g. your home directory, so that you can use the +postgresql-common tools without root privileges. + +=item B + +This is the location of PostgreSQL's and postgresql-common's global +configuration (e. g. C, L). The default is +C. + +=back + +=head1 FILES + +=over + +=item C + +stores the default cluster and database for users and groups as set by +the administrators. + +=item C<$HOME/.postgresqlrc> + +stores defaults set by the user himself. + +=back + +=head1 SEE ALSO + +L, L + +=head1 AUTHOR + +Martin Pitt Lmpitt@debian.orgE> From 74ba0ef0a8664e75110634072c8c4fe4fa6bbfc7 Mon Sep 17 00:00:00 2001 From: Mark Hilton Date: Thu, 27 Apr 2017 13:58:27 -0400 Subject: [PATCH 003/313] Added support for MS SQL server driver for PHP 7.0 --- workspace/Dockerfile-70 | 79 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index ca87e403..2841661d 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -393,6 +393,85 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ echo 'export LD_LIBRARY_PATH="$LINUXBREWHOME/lib64:$LINUXBREWHOME/lib:$LD_LIBRARY_PATH"' >> ~/.bashrc \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=true +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Install Depenencies: + ##################################### + cd / && \ + apt-get update && \ + apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ + + ##################################### + # The following steps were taken from + # Microsoft's github account: + # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways + ##################################### + + # Add PHP 7 repository + # for Debian jessie + # And System upgrade + cd / && \ + echo "deb http://packages.dotdeb.org jessie all" \ + | tee /etc/apt/sources.list.d/dotdeb.list \ + && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ + | apt-key add - \ + && apt-get update \ + && apt-get upgrade -qq && \ + + # Install UnixODBC + # Compile odbc_config as it is not part of unixodbc package + cd / && \ + apt-get update && \ + apt-get install -y whiptail \ + unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ + && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ + && cd unixodbc-*/ \ + && ./configure && make && make install \ + && cp -v ./exe/odbc_config /usr/local/bin/ && \ + + # Fake uname for install.sh + printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ + | tee /usr/local/bin/uname \ + && chmod +x /usr/local/bin/uname && \ + + # Microsoft ODBC Driver 13 for Linux + # Note: There's a copy of this tar on my hubiC + cd / && \ + wget -nv -O msodbcsql-13.0.0.0.tar.gz \ + "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ + && tar -xf msodbcsql-13.0.0.0.tar.gz \ + && cd msodbcsql-*/ \ + && ldd lib64/libmsodbcsql-13.0.so.0.0 \ + && ./install.sh install --accept-license \ + && ls -l /opt/microsoft/msodbcsql/ \ + && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ + + + ##################################### + # Install sqlsrv y pdo_sqlsrv + # extensions: + ##################################### + + pecl install sqlsrv-4.0.6 && \ + pecl install pdo_sqlsrv-4.0.6 && \ + + ##################################### + # Set locales for the container + ##################################### + + apt-get install -y locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo "extension=sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-pdo_sqlsrv.ini \ +;fi + ##################################### # Minio: ##################################### From f339c3f055a259799f78e6da4c92028191142343 Mon Sep 17 00:00:00 2001 From: Mark Hilton Date: Wed, 3 May 2017 12:59:44 -0400 Subject: [PATCH 004/313] Added support for MS SQL server driver for PHP 7.0 - requested changes: - removed cd / && \ - added INSTALL_MSSQL to docker-compose.yml and env-example --- docker-compose.yml | 2 ++ env-example | 3 +- php-fpm/Dockerfile-70 | 83 ++++++++++++++++++++++++++++++++++++++++--- 3 files changed, 83 insertions(+), 5 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 938fca4f..3db26275 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,6 +19,7 @@ services: - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE} - INSTALL_SOAP=${WORKSPACE_INSTALL_SOAP} - INSTALL_MONGO=${WORKSPACE_INSTALL_MONGO} + - INSTALL_MSSQL=${WORKSPACE_INSTALL_MSSQL} - INSTALL_NODE=${WORKSPACE_INSTALL_NODE} - INSTALL_YARN=${WORKSPACE_INSTALL_YARN} - INSTALL_DRUSH=${WORKSPACE_INSTALL_DRUSH} @@ -59,6 +60,7 @@ services: - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE} - INSTALL_SOAP=${PHP_FPM_INSTALL_SOAP} - INSTALL_MONGO=${PHP_FPM_INSTALL_MONGO} + - INSTALL_MSSQL=${PHP_FPM_INSTALL_MSSQL} - INSTALL_ZIP_ARCHIVE=${PHP_FPM_INSTALL_ZIP_ARCHIVE} - INSTALL_BCMATH=${PHP_FPM_INSTALL_BCMATH} - INSTALL_PHPREDIS=${PHP_FPM_INSTALL_PHPREDIS} diff --git a/env-example b/env-example index 702b778b..22dab27d 100644 --- a/env-example +++ b/env-example @@ -32,6 +32,7 @@ PHP_INTERPRETER=php-fpm WORKSPACE_INSTALL_XDEBUG=false WORKSPACE_INSTALL_SOAP=false WORKSPACE_INSTALL_MONGO=false +WORKSPACE_INSTALL_MSSQL=false WORKSPACE_INSTALL_NODE=false WORKSPACE_INSTALL_YARN=false WORKSPACE_INSTALL_DRUSH=false @@ -54,6 +55,7 @@ WORKSPACE_SSH_PORT=2222 PHP_FPM_INSTALL_XDEBUG=false PHP_FPM_INSTALL_MONGO=false +PHP_FPM_INSTALL_MSSQL=false PHP_FPM_INSTALL_SOAP=false PHP_FPM_INSTALL_ZIP_ARCHIVE=false PHP_FPM_INSTALL_BCMATH=false @@ -239,4 +241,3 @@ PHP_IDE_CONFIG=serverName=laradock # Fix for windows users to make sure the application path works. COMPOSE_CONVERT_WINDOWS_PATHS=1 - diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index c4f83d14..f6edcb24 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -273,8 +273,8 @@ RUN if [ ${MSSQL} = true ]; then \ # extensions: ##################################### - pecl install sqlsrv-4.0.6 && \ - pecl install pdo_sqlsrv-4.0.6 && \ + pecl install sqlsrv-4.1.7preview && \ + pecl install pdo_sqlsrv-4.1.7preview && \ ##################################### # Set locales for the container @@ -292,8 +292,8 @@ RUN if [ ${MSSQL} = true ]; then \ ARG INSTALL_INTL=false RUN if [ ${INSTALL_INTL} = true ]; then \ # Install intl and requirements - apt-get -y update \ - && apt-get install -y zlib1g-dev libicu-dev g++ && \ + apt-get -y update && \ + apt-get install -y zlib1g-dev libicu-dev g++ && \ docker-php-ext-configure intl && \ docker-php-ext-install intl \ ;fi @@ -312,6 +312,81 @@ RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ ghostscript \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Install Depenencies: + ##################################### + apt-get update && \ + apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ + + ##################################### + # The following steps were taken from + # Microsoft's github account: + # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways + ##################################### + + # Add PHP 7 repository + # for Debian jessie + # And System upgrade + echo "deb http://packages.dotdeb.org jessie all" \ + | tee /etc/apt/sources.list.d/dotdeb.list \ + && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ + | apt-key add - \ + && apt-get update \ + && apt-get upgrade -qq && \ + + # Install UnixODBC + # Compile odbc_config as it is not part of unixodbc package + apt-get update && \ + apt-get install -y whiptail \ + unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ + && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ + && cd unixodbc-*/ \ + && ./configure && make && make install \ + && cp -v ./exe/odbc_config /usr/local/bin/ && \ + + # Fake uname for install.sh + printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ + | tee /usr/local/bin/uname \ + && chmod +x /usr/local/bin/uname && \ + + # Microsoft ODBC Driver 13 for Linux + # Note: There's a copy of this tar on my hubiC + wget -nv -O msodbcsql-13.0.0.0.tar.gz \ + "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ + && tar -xf msodbcsql-13.0.0.0.tar.gz \ + && cd msodbcsql-*/ \ + && ldd lib64/libmsodbcsql-13.0.so.0.0 \ + && ./install.sh install --accept-license \ + && ls -l /opt/microsoft/msodbcsql/ \ + && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ + + + ##################################### + # Install sqlsrv y pdo_sqlsrv + # extensions: + ##################################### + + pecl install sqlsrv-4.1.7 && \ + pecl install pdo_sqlsrv-4.1.7 && \ + + ##################################### + # Set locales for the container + ##################################### + + apt-get install -y locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo "extension=sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-pdo_sqlsrv.ini \ +;fi + # #-------------------------------------------------------------------------- # Final Touch From ca198b85bfa7fa05658c51bc2f6b5522de6f4218 Mon Sep 17 00:00:00 2001 From: Mark Hilton Date: Thu, 27 Apr 2017 13:58:27 -0400 Subject: [PATCH 005/313] Added support for MS SQL server driver for PHP 7.0 --- workspace/Dockerfile-70 | 79 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index ca87e403..2841661d 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -393,6 +393,85 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ echo 'export LD_LIBRARY_PATH="$LINUXBREWHOME/lib64:$LINUXBREWHOME/lib:$LD_LIBRARY_PATH"' >> ~/.bashrc \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=true +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Install Depenencies: + ##################################### + cd / && \ + apt-get update && \ + apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ + + ##################################### + # The following steps were taken from + # Microsoft's github account: + # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways + ##################################### + + # Add PHP 7 repository + # for Debian jessie + # And System upgrade + cd / && \ + echo "deb http://packages.dotdeb.org jessie all" \ + | tee /etc/apt/sources.list.d/dotdeb.list \ + && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ + | apt-key add - \ + && apt-get update \ + && apt-get upgrade -qq && \ + + # Install UnixODBC + # Compile odbc_config as it is not part of unixodbc package + cd / && \ + apt-get update && \ + apt-get install -y whiptail \ + unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ + && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ + && cd unixodbc-*/ \ + && ./configure && make && make install \ + && cp -v ./exe/odbc_config /usr/local/bin/ && \ + + # Fake uname for install.sh + printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ + | tee /usr/local/bin/uname \ + && chmod +x /usr/local/bin/uname && \ + + # Microsoft ODBC Driver 13 for Linux + # Note: There's a copy of this tar on my hubiC + cd / && \ + wget -nv -O msodbcsql-13.0.0.0.tar.gz \ + "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ + && tar -xf msodbcsql-13.0.0.0.tar.gz \ + && cd msodbcsql-*/ \ + && ldd lib64/libmsodbcsql-13.0.so.0.0 \ + && ./install.sh install --accept-license \ + && ls -l /opt/microsoft/msodbcsql/ \ + && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ + + + ##################################### + # Install sqlsrv y pdo_sqlsrv + # extensions: + ##################################### + + pecl install sqlsrv-4.0.6 && \ + pecl install pdo_sqlsrv-4.0.6 && \ + + ##################################### + # Set locales for the container + ##################################### + + apt-get install -y locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo "extension=sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-pdo_sqlsrv.ini \ +;fi + ##################################### # Minio: ##################################### From e0d5fb03edb3ec416961f0e21a29532143a1e985 Mon Sep 17 00:00:00 2001 From: Mark Hilton Date: Wed, 3 May 2017 12:59:44 -0400 Subject: [PATCH 006/313] Added support for MS SQL server driver for PHP 7.0 - requested changes: - removed cd / && \ - added INSTALL_MSSQL to docker-compose.yml and env-example --- docker-compose.yml | 2 ++ env-example | 2 ++ php-fpm/Dockerfile-70 | 75 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 79 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 938fca4f..3db26275 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,6 +19,7 @@ services: - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE} - INSTALL_SOAP=${WORKSPACE_INSTALL_SOAP} - INSTALL_MONGO=${WORKSPACE_INSTALL_MONGO} + - INSTALL_MSSQL=${WORKSPACE_INSTALL_MSSQL} - INSTALL_NODE=${WORKSPACE_INSTALL_NODE} - INSTALL_YARN=${WORKSPACE_INSTALL_YARN} - INSTALL_DRUSH=${WORKSPACE_INSTALL_DRUSH} @@ -59,6 +60,7 @@ services: - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE} - INSTALL_SOAP=${PHP_FPM_INSTALL_SOAP} - INSTALL_MONGO=${PHP_FPM_INSTALL_MONGO} + - INSTALL_MSSQL=${PHP_FPM_INSTALL_MSSQL} - INSTALL_ZIP_ARCHIVE=${PHP_FPM_INSTALL_ZIP_ARCHIVE} - INSTALL_BCMATH=${PHP_FPM_INSTALL_BCMATH} - INSTALL_PHPREDIS=${PHP_FPM_INSTALL_PHPREDIS} diff --git a/env-example b/env-example index 40e90801..22dab27d 100644 --- a/env-example +++ b/env-example @@ -32,6 +32,7 @@ PHP_INTERPRETER=php-fpm WORKSPACE_INSTALL_XDEBUG=false WORKSPACE_INSTALL_SOAP=false WORKSPACE_INSTALL_MONGO=false +WORKSPACE_INSTALL_MSSQL=false WORKSPACE_INSTALL_NODE=false WORKSPACE_INSTALL_YARN=false WORKSPACE_INSTALL_DRUSH=false @@ -54,6 +55,7 @@ WORKSPACE_SSH_PORT=2222 PHP_FPM_INSTALL_XDEBUG=false PHP_FPM_INSTALL_MONGO=false +PHP_FPM_INSTALL_MSSQL=false PHP_FPM_INSTALL_SOAP=false PHP_FPM_INSTALL_ZIP_ARCHIVE=false PHP_FPM_INSTALL_BCMATH=false diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 87e5c037..f6edcb24 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -312,6 +312,81 @@ RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ ghostscript \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Install Depenencies: + ##################################### + apt-get update && \ + apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ + + ##################################### + # The following steps were taken from + # Microsoft's github account: + # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways + ##################################### + + # Add PHP 7 repository + # for Debian jessie + # And System upgrade + echo "deb http://packages.dotdeb.org jessie all" \ + | tee /etc/apt/sources.list.d/dotdeb.list \ + && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ + | apt-key add - \ + && apt-get update \ + && apt-get upgrade -qq && \ + + # Install UnixODBC + # Compile odbc_config as it is not part of unixodbc package + apt-get update && \ + apt-get install -y whiptail \ + unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ + && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ + && cd unixodbc-*/ \ + && ./configure && make && make install \ + && cp -v ./exe/odbc_config /usr/local/bin/ && \ + + # Fake uname for install.sh + printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ + | tee /usr/local/bin/uname \ + && chmod +x /usr/local/bin/uname && \ + + # Microsoft ODBC Driver 13 for Linux + # Note: There's a copy of this tar on my hubiC + wget -nv -O msodbcsql-13.0.0.0.tar.gz \ + "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ + && tar -xf msodbcsql-13.0.0.0.tar.gz \ + && cd msodbcsql-*/ \ + && ldd lib64/libmsodbcsql-13.0.so.0.0 \ + && ./install.sh install --accept-license \ + && ls -l /opt/microsoft/msodbcsql/ \ + && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ + + + ##################################### + # Install sqlsrv y pdo_sqlsrv + # extensions: + ##################################### + + pecl install sqlsrv-4.1.7 && \ + pecl install pdo_sqlsrv-4.1.7 && \ + + ##################################### + # Set locales for the container + ##################################### + + apt-get install -y locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo "extension=sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-pdo_sqlsrv.ini \ +;fi + # #-------------------------------------------------------------------------- # Final Touch From 623d7aa58d406c4513fed5163a14a1277e40ffc2 Mon Sep 17 00:00:00 2001 From: Mark Hilton Date: Wed, 3 May 2017 13:27:24 -0400 Subject: [PATCH 007/313] added MS SQL support to workspace --- workspace/Dockerfile-70 | 75 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 2841661d..70c5439d 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -508,6 +508,81 @@ RUN if [ ${INSTALL_SYMFONY} = true ]; then \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Install Depenencies: + ##################################### + apt-get update && \ + apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ + + ##################################### + # The following steps were taken from + # Microsoft's github account: + # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways + ##################################### + + # Add PHP 7 repository + # for Debian jessie + # And System upgrade + echo "deb http://packages.dotdeb.org jessie all" \ + | tee /etc/apt/sources.list.d/dotdeb.list \ + && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ + | apt-key add - \ + && apt-get update \ + && apt-get upgrade -qq && \ + + # Install UnixODBC + # Compile odbc_config as it is not part of unixodbc package + apt-get update && \ + apt-get install -y whiptail \ + unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ + && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ + && cd unixodbc-*/ \ + && ./configure && make && make install \ + && cp -v ./exe/odbc_config /usr/local/bin/ && \ + + # Fake uname for install.sh + printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ + | tee /usr/local/bin/uname \ + && chmod +x /usr/local/bin/uname && \ + + # Microsoft ODBC Driver 13 for Linux + # Note: There's a copy of this tar on my hubiC + wget -nv -O msodbcsql-13.0.0.0.tar.gz \ + "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ + && tar -xf msodbcsql-13.0.0.0.tar.gz \ + && cd msodbcsql-*/ \ + && ldd lib64/libmsodbcsql-13.0.so.0.0 \ + && ./install.sh install --accept-license \ + && ls -l /opt/microsoft/msodbcsql/ \ + && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ + + + ##################################### + # Install sqlsrv y pdo_sqlsrv + # extensions: + ##################################### + + pecl install sqlsrv-4.1.7 && \ + pecl install pdo_sqlsrv-4.1.7 && \ + + ##################################### + # Set locales for the container + ##################################### + + apt-get install -y locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo "extension=sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-pdo_sqlsrv.ini \ +;fi + USER laradock # From da58d2e9b9541695d1ffa6020a59b4e03b077b55 Mon Sep 17 00:00:00 2001 From: Winfried Date: Wed, 3 May 2017 23:32:39 +0200 Subject: [PATCH 008/313] Fixing V8JS Fixes #792 --- workspace/Dockerfile-56 | 17 ----------------- workspace/Dockerfile-70 | 2 +- workspace/Dockerfile-71 | 2 +- 3 files changed, 2 insertions(+), 19 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 1343ae91..2632ff75 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -299,23 +299,6 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ rm /etc/php/5.6/cli/conf.d/aerospike.ini \ ;fi -##################################### -# PHP V8JS: -##################################### -USER root - -ARG INSTALL_V8JS_EXTENSION=false -ENV INSTALL_V8JS_EXTENSION ${INSTALL_V8JS_EXTENSION} - -RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then \ - # Install the php V8JS extension - add-apt-repository -y ppa:pinepain/libv8-5.4 \ - && apt-get update \ - && apt-get install -y php-dev php-pear libv8-5.4 \ - && pecl install v8js \ - && echo "extension=v8js.so" >> /etc/php/5.6/cli/php.ini \ -;fi - ##################################### # Non-root user : PHPUnit path ##################################### diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 70c5439d..49d36922 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -311,7 +311,7 @@ RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then \ # Install the php V8JS extension add-apt-repository -y ppa:pinepain/libv8-5.4 \ && apt-get update \ - && apt-get install -y php-dev php-pear libv8-5.4 \ + && apt-get install -y php7.0-xml php7.0-dev php-pear libv8-5.4 \ && pecl install v8js \ && echo "extension=v8js.so" >> /etc/php/7.0/cli/php.ini \ ;fi diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index b627085f..0ced70c9 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -307,7 +307,7 @@ RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then \ # Install the php V8JS extension add-apt-repository -y ppa:pinepain/libv8-5.4 \ && apt-get update \ - && apt-get install -y php-dev php-pear libv8-5.4 \ + && apt-get install -y php-xml php-dev php-pear libv8-5.4 \ && pecl install v8js \ && echo "extension=v8js.so" >> /etc/php/7.1/cli/php.ini \ ;fi From c31e002064c935b5184e27adc66ebb03ad77b53c Mon Sep 17 00:00:00 2001 From: Tristan Bailey Date: Thu, 4 May 2017 08:22:32 +0100 Subject: [PATCH 009/313] Update Redis Docker File The dir for the conf seems to be missing from the base image, so the copy fails Also if the server does not start with the conf as parameter it will not pick it up. Which leaves Redis wide open to attack by default: Example try to telnet to your ip on the redis port for this container: telnet 192.168.1.11 6379 echo "Hey no AUTH required!" --- redis/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/redis/Dockerfile b/redis/Dockerfile index e8fedab3..35df84dd 100644 --- a/redis/Dockerfile +++ b/redis/Dockerfile @@ -2,10 +2,13 @@ FROM redis:latest MAINTAINER Mahmoud Zalt +## For security settings uncomment, make the dir, copy conf, and also start with the conf, to use it +#RUN mkdir -p /usr/local/etc/redis #COPY redis.conf /usr/local/etc/redis/redis.conf VOLUME /data EXPOSE 6379 +#CMD ["redis-server", "/usr/local/etc/redis/redis.conf"] CMD ["redis-server"] From 61aabf664e199b7504e1ad667f0868cac981d0ce Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 4 May 2017 16:15:28 +0800 Subject: [PATCH 010/313] fixing CI build failed --- .travis.yml | 5 +++++ travis-build.sh | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/.travis.yml b/.travis.yml index 7643643e..ccbb38dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,11 @@ env: - PHP_VERSION=71 - HUGO_VERSION=0.20.2 +# Installing a newer Docker version +before_install: + - sudo apt-get update + - sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine + script: ./travis-build.sh deploy: diff --git a/travis-build.sh b/travis-build.sh index 506d083f..8cabad86 100755 --- a/travis-build.sh +++ b/travis-build.sh @@ -3,6 +3,12 @@ #### halt script on error set -e +echo '##### Print docker version' +docker --version + +echo '##### Print environment' +env | sort + #### Build the Docker Images if [ -n "${PHP_VERSION}" ]; then cp env-example .env From 4cb440504b44a757c42dc993a5804e96df41265b Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 4 May 2017 17:41:02 +0800 Subject: [PATCH 011/313] git clone only need one depth. --- workspace/Dockerfile-56 | 2 +- workspace/Dockerfile-70 | 2 +- workspace/Dockerfile-71 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 2632ff75..e537b737 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -363,7 +363,7 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ libexpat-dev libncurses-dev && \ # Install the Linuxbrew - git clone https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ + git clone --depth=1 https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ echo "" >> ~/.bashrc && \ echo 'export PKG_CONFIG_PATH"=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:$PKG_CONFIG_PATH"' >> ~/.bashrc && \ diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 49d36922..32ae4dca 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -380,7 +380,7 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ libexpat-dev libncurses-dev && \ # Install the Linuxbrew - git clone https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ + git clone --depth=1 https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ echo "" >> ~/.bashrc && \ echo 'export PKG_CONFIG_PATH"=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:$PKG_CONFIG_PATH"' >> ~/.bashrc && \ diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 0ced70c9..1f6d9ac5 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -376,7 +376,7 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ libexpat-dev libncurses-dev && \ # Install the Linuxbrew - git clone https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ + git clone --depth=1 https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ echo "" >> ~/.bashrc && \ echo 'export PKG_CONFIG_PATH"=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:$PKG_CONFIG_PATH"' >> ~/.bashrc && \ From fde406bafa4c421c4bf752c37dba1f2c20051bd6 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Fri, 5 May 2017 12:33:09 +0800 Subject: [PATCH 012/313] Dockerfile-71 fill missing MSSQL section --- workspace/Dockerfile-71 | 79 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 0ced70c9..537404d0 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -389,6 +389,85 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ echo 'export LD_LIBRARY_PATH="$LINUXBREWHOME/lib64:$LINUXBREWHOME/lib:$LD_LIBRARY_PATH"' >> ~/.bashrc \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=true +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Install Depenencies: + ##################################### + cd / && \ + apt-get update && \ + apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ + + ##################################### + # The following steps were taken from + # Microsoft's github account: + # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways + ##################################### + + # Add PHP 7 repository + # for Debian jessie + # And System upgrade + cd / && \ + echo "deb http://packages.dotdeb.org jessie all" \ + | tee /etc/apt/sources.list.d/dotdeb.list \ + && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ + | apt-key add - \ + && apt-get update \ + && apt-get upgrade -qq && \ + + # Install UnixODBC + # Compile odbc_config as it is not part of unixodbc package + cd / && \ + apt-get update && \ + apt-get install -y whiptail \ + unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ + && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ + && cd unixodbc-*/ \ + && ./configure && make && make install \ + && cp -v ./exe/odbc_config /usr/local/bin/ && \ + + # Fake uname for install.sh + printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ + | tee /usr/local/bin/uname \ + && chmod +x /usr/local/bin/uname && \ + + # Microsoft ODBC Driver 13 for Linux + # Note: There's a copy of this tar on my hubiC + cd / && \ + wget -nv -O msodbcsql-13.0.0.0.tar.gz \ + "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ + && tar -xf msodbcsql-13.0.0.0.tar.gz \ + && cd msodbcsql-*/ \ + && ldd lib64/libmsodbcsql-13.0.so.0.0 \ + && ./install.sh install --accept-license \ + && ls -l /opt/microsoft/msodbcsql/ \ + && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ + + + ##################################### + # Install sqlsrv y pdo_sqlsrv + # extensions: + ##################################### + + pecl install sqlsrv-4.0.6 && \ + pecl install pdo_sqlsrv-4.0.6 && \ + + ##################################### + # Set locales for the container + ##################################### + + apt-get install -y locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo "extension=sqlsrv.so" > /etc/php/7.1/cli/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /etc/php/7.1/cli/conf.d/20-pdo_sqlsrv.ini \ +;fi + ##################################### # Minio: ##################################### From e579b18794395a0dd67577b677c3b04a5dd494d5 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Fri, 5 May 2017 13:07:56 +0800 Subject: [PATCH 013/313] workspace/Dockerfile-70 duplicate MSSQL section. --- workspace/Dockerfile-70 | 77 ----------------------------------------- 1 file changed, 77 deletions(-) diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 49d36922..ddd36ccb 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -508,83 +508,6 @@ RUN if [ ${INSTALL_SYMFONY} = true ]; then \ ;fi -##################################### -# SQL SERVER: -##################################### -ARG INSTALL_MSSQL=false -ENV INSTALL_MSSQL ${INSTALL_MSSQL} - -RUN if [ ${INSTALL_MSSQL} = true ]; then \ - ##################################### - # Install Depenencies: - ##################################### - apt-get update && \ - apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ - - ##################################### - # The following steps were taken from - # Microsoft's github account: - # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways - ##################################### - - # Add PHP 7 repository - # for Debian jessie - # And System upgrade - echo "deb http://packages.dotdeb.org jessie all" \ - | tee /etc/apt/sources.list.d/dotdeb.list \ - && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ - | apt-key add - \ - && apt-get update \ - && apt-get upgrade -qq && \ - - # Install UnixODBC - # Compile odbc_config as it is not part of unixodbc package - apt-get update && \ - apt-get install -y whiptail \ - unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ - && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ - && cd unixodbc-*/ \ - && ./configure && make && make install \ - && cp -v ./exe/odbc_config /usr/local/bin/ && \ - - # Fake uname for install.sh - printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ - | tee /usr/local/bin/uname \ - && chmod +x /usr/local/bin/uname && \ - - # Microsoft ODBC Driver 13 for Linux - # Note: There's a copy of this tar on my hubiC - wget -nv -O msodbcsql-13.0.0.0.tar.gz \ - "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ - && tar -xf msodbcsql-13.0.0.0.tar.gz \ - && cd msodbcsql-*/ \ - && ldd lib64/libmsodbcsql-13.0.so.0.0 \ - && ./install.sh install --accept-license \ - && ls -l /opt/microsoft/msodbcsql/ \ - && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ - - - ##################################### - # Install sqlsrv y pdo_sqlsrv - # extensions: - ##################################### - - pecl install sqlsrv-4.1.7 && \ - pecl install pdo_sqlsrv-4.1.7 && \ - - ##################################### - # Set locales for the container - ##################################### - - apt-get install -y locales \ - && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ - && locale-gen \ - && echo "extension=sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-sqlsrv.ini \ - && echo "extension=pdo_sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-pdo_sqlsrv.ini \ -;fi - -USER laradock - # #-------------------------------------------------------------------------- # Final Touch From 2f010506eb87af63761a2d2b80e7a04087243ead Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Fri, 5 May 2017 18:21:45 +0800 Subject: [PATCH 014/313] aerospike-client-php version to 3.4.14 --- workspace/Dockerfile-56 | 2 +- workspace/Dockerfile-70 | 2 +- workspace/Dockerfile-71 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index e537b737..83e4cc13 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -283,7 +283,7 @@ COPY ./aerospike.ini /etc/php/5.6/cli/conf.d/aerospike.ini RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index cf7c9076..f5dc718f 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -283,7 +283,7 @@ COPY ./aerospike.ini /etc/php/7.0/cli/conf.d/aerospike.ini RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 68735bde..6d4ee3f2 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -279,7 +279,7 @@ COPY ./aerospike.ini /etc/php/7.1/cli/conf.d/aerospike.ini RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ From a81686d9d0a4e629b0e56294c6ba4739246ceea4 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Fri, 5 May 2017 19:13:10 +0800 Subject: [PATCH 015/313] aerospike-client-php version to 3.4.14 (php-fpm) --- php-fpm/Dockerfile-56 | 2 +- php-fpm/Dockerfile-70 | 2 +- php-fpm/Dockerfile-71 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 952b7929..176a0624 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -154,7 +154,7 @@ ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index f6edcb24..1c7a1b2c 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -162,7 +162,7 @@ ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 1614ac4a..17e87d2b 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -162,7 +162,7 @@ ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ From 61f74b5307389ee0fe3dbad1ee8e51958a027776 Mon Sep 17 00:00:00 2001 From: Winfried Date: Fri, 5 May 2017 13:29:14 +0200 Subject: [PATCH 016/313] Updating issue template, checkmarks are tasks --- .github/ISSUE_TEMPLATE.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 0337fe18..84d4624e 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,11 +1,7 @@ ### Info: -- Docker version (`$ docker --version`): -- Laradock commit (`$ git rev-parse HEAD`): -- System (`place x between the [ ]`): - - [ ] Mac - - [ ] PC - - [ ] Linux - - Info: +- Docker version (`$ docker --version`): +- Laradock commit (`$ git rev-parse HEAD`): +- System info (Mac, PC, Linux): ### Issue: ##### What seems to be going wrong? @@ -24,6 +20,6 @@ _____ ### Relevant Code: - ``` - // place code here - ``` \ No newline at end of file +``` +// place code here +``` From e8b49a9fe5957a4e2bf9d0450d2173cd3419d48a Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 6 May 2017 15:13:18 +0800 Subject: [PATCH 017/313] split build jobs --- .travis.yml | 149 ++++++++++++++++++++++++++++++++++++++++++++++-- travis-build.sh | 2 +- 2 files changed, 146 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index ccbb38dc..95369603 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,151 @@ services: - docker env: - matrix: - - PHP_VERSION=56 - - PHP_VERSION=70 - - PHP_VERSION=71 + matrix: + - PHP_VERSION=56 BUILD_SERVICE=applications + - PHP_VERSION=70 BUILD_SERVICE=applications + - PHP_VERSION=71 BUILD_SERVICE=applications + + - PHP_VERSION=56 BUILD_SERVICE=workspace + - PHP_VERSION=70 BUILD_SERVICE=workspace + - PHP_VERSION=71 BUILD_SERVICE=workspace + + - PHP_VERSION=56 BUILD_SERVICE=php-fpm + - PHP_VERSION=70 BUILD_SERVICE=php-fpm + - PHP_VERSION=71 BUILD_SERVICE=php-fpm + + - PHP_VERSION=56 BUILD_SERVICE=php-worker + - PHP_VERSION=70 BUILD_SERVICE=php-worker + - PHP_VERSION=71 BUILD_SERVICE=php-worker + + - PHP_VERSION=56 BUILD_SERVICE=nginx + - PHP_VERSION=70 BUILD_SERVICE=nginx + - PHP_VERSION=71 BUILD_SERVICE=nginx + + - PHP_VERSION=56 BUILD_SERVICE=blackfire + - PHP_VERSION=70 BUILD_SERVICE=blackfire + - PHP_VERSION=71 BUILD_SERVICE=blackfire + + - PHP_VERSION=56 BUILD_SERVICE=apache2 + - PHP_VERSION=70 BUILD_SERVICE=apache2 + - PHP_VERSION=71 BUILD_SERVICE=apache2 + + - PHP_VERSION=56 BUILD_SERVICE=hhvm + - PHP_VERSION=70 BUILD_SERVICE=hhvm + - PHP_VERSION=71 BUILD_SERVICE=hhvm + + - PHP_VERSION=56 BUILD_SERVICE=minio + - PHP_VERSION=70 BUILD_SERVICE=minio + - PHP_VERSION=71 BUILD_SERVICE=minio + + - PHP_VERSION=56 BUILD_SERVICE=mysql + - PHP_VERSION=70 BUILD_SERVICE=mysql + - PHP_VERSION=71 BUILD_SERVICE=mysql + + - PHP_VERSION=56 BUILD_SERVICE=percona + - PHP_VERSION=70 BUILD_SERVICE=percona + - PHP_VERSION=71 BUILD_SERVICE=percona + + - PHP_VERSION=56 BUILD_SERVICE=mssql + - PHP_VERSION=70 BUILD_SERVICE=mssql + - PHP_VERSION=71 BUILD_SERVICE=mssql + + - PHP_VERSION=56 BUILD_SERVICE=mariadb + - PHP_VERSION=70 BUILD_SERVICE=mariadb + - PHP_VERSION=71 BUILD_SERVICE=mariadb + + - PHP_VERSION=56 BUILD_SERVICE=postgres + - PHP_VERSION=70 BUILD_SERVICE=postgres + - PHP_VERSION=71 BUILD_SERVICE=postgres + + - PHP_VERSION=56 BUILD_SERVICE=postgres-postgis + - PHP_VERSION=70 BUILD_SERVICE=postgres-postgis + - PHP_VERSION=71 BUILD_SERVICE=postgres-postgis + + - PHP_VERSION=56 BUILD_SERVICE=neo4j + - PHP_VERSION=70 BUILD_SERVICE=neo4j + - PHP_VERSION=71 BUILD_SERVICE=neo4j + + - PHP_VERSION=56 BUILD_SERVICE=mongo + - PHP_VERSION=70 BUILD_SERVICE=mongo + - PHP_VERSION=71 BUILD_SERVICE=mongo + + - PHP_VERSION=56 BUILD_SERVICE=rethinkdb + - PHP_VERSION=70 BUILD_SERVICE=rethinkdb + - PHP_VERSION=71 BUILD_SERVICE=rethinkdb + + - PHP_VERSION=56 BUILD_SERVICE=redis + - PHP_VERSION=70 BUILD_SERVICE=redis + - PHP_VERSION=71 BUILD_SERVICE=redis + + - PHP_VERSION=56 BUILD_SERVICE=aerospike + - PHP_VERSION=70 BUILD_SERVICE=aerospike + - PHP_VERSION=71 BUILD_SERVICE=aerospike + + - PHP_VERSION=56 BUILD_SERVICE=memcached + - PHP_VERSION=70 BUILD_SERVICE=memcached + - PHP_VERSION=71 BUILD_SERVICE=memcached + + - PHP_VERSION=56 BUILD_SERVICE=beanstalkd + - PHP_VERSION=70 BUILD_SERVICE=beanstalkd + - PHP_VERSION=71 BUILD_SERVICE=beanstalkd + + - PHP_VERSION=56 BUILD_SERVICE=rabbitmq + - PHP_VERSION=70 BUILD_SERVICE=rabbitmq + - PHP_VERSION=71 BUILD_SERVICE=rabbitmq + + - PHP_VERSION=56 BUILD_SERVICE=beanstalkd-console + - PHP_VERSION=70 BUILD_SERVICE=beanstalkd-console + - PHP_VERSION=71 BUILD_SERVICE=beanstalkd-console + + - PHP_VERSION=56 BUILD_SERVICE=caddy + - PHP_VERSION=70 BUILD_SERVICE=caddy + - PHP_VERSION=71 BUILD_SERVICE=caddy + + - PHP_VERSION=56 BUILD_SERVICE=phpmyadmin + - PHP_VERSION=70 BUILD_SERVICE=phpmyadmin + - PHP_VERSION=71 BUILD_SERVICE=phpmyadmin + + - PHP_VERSION=56 BUILD_SERVICE=adminer + - PHP_VERSION=70 BUILD_SERVICE=adminer + - PHP_VERSION=71 BUILD_SERVICE=adminer + + - PHP_VERSION=56 BUILD_SERVICE=pgadmin + - PHP_VERSION=70 BUILD_SERVICE=pgadmin + - PHP_VERSION=71 BUILD_SERVICE=pgadmin + + - PHP_VERSION=56 BUILD_SERVICE=elasticsearch + - PHP_VERSION=70 BUILD_SERVICE=elasticsearch + - PHP_VERSION=71 BUILD_SERVICE=elasticsearch + + - PHP_VERSION=56 BUILD_SERVICE=certbot + - PHP_VERSION=70 BUILD_SERVICE=certbot + - PHP_VERSION=71 BUILD_SERVICE=certbot + + - PHP_VERSION=56 BUILD_SERVICE=mailhog + - PHP_VERSION=70 BUILD_SERVICE=mailhog + - PHP_VERSION=71 BUILD_SERVICE=mailhog + + - PHP_VERSION=56 BUILD_SERVICE=selenium + - PHP_VERSION=70 BUILD_SERVICE=selenium + - PHP_VERSION=71 BUILD_SERVICE=selenium + + - PHP_VERSION=56 BUILD_SERVICE=proxy + - PHP_VERSION=70 BUILD_SERVICE=proxy + - PHP_VERSION=71 BUILD_SERVICE=proxy + + - PHP_VERSION=56 BUILD_SERVICE=proxy2 + - PHP_VERSION=70 BUILD_SERVICE=proxy2 + - PHP_VERSION=71 BUILD_SERVICE=proxy2 + + - PHP_VERSION=56 BUILD_SERVICE=balancer + - PHP_VERSION=70 BUILD_SERVICE=balancer + - PHP_VERSION=71 BUILD_SERVICE=balancer + + - PHP_VERSION=56 BUILD_SERVICE=jenkins + - PHP_VERSION=70 BUILD_SERVICE=jenkins + - PHP_VERSION=71 BUILD_SERVICE=jenkins + - HUGO_VERSION=0.20.2 # Installing a newer Docker version diff --git a/travis-build.sh b/travis-build.sh index 8cabad86..66223d03 100755 --- a/travis-build.sh +++ b/travis-build.sh @@ -15,7 +15,7 @@ if [ -n "${PHP_VERSION}" ]; then sed -i -- "s/PHP_VERSION=.*/PHP_VERSION=${PHP_VERSION}/g" .env sed -i -- 's/=false/=true/g' .env cat .env - docker-compose build + docker-compose build ${BUILD_SERVICE} docker images fi From 3b0e4cd05dfc7ada51825bf5793a8c933748f4b9 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 6 May 2017 16:02:23 +0800 Subject: [PATCH 018/313] join short time jobs --- .travis.yml | 144 +++++++++++----------------------------------------- 1 file changed, 30 insertions(+), 114 deletions(-) diff --git a/.travis.yml b/.travis.yml index 95369603..c5061dbc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,9 @@ services: env: matrix: - - PHP_VERSION=56 BUILD_SERVICE=applications - - PHP_VERSION=70 BUILD_SERVICE=applications - - PHP_VERSION=71 BUILD_SERVICE=applications + - PHP_VERSION=56 BUILD_SERVICE="applications blackfire minio percona" + - PHP_VERSION=70 BUILD_SERVICE="applications blackfire minio percona" + - PHP_VERSION=71 BUILD_SERVICE="applications blackfire minio percona" - PHP_VERSION=56 BUILD_SERVICE=workspace - PHP_VERSION=70 BUILD_SERVICE=workspace @@ -17,137 +17,53 @@ env: - PHP_VERSION=70 BUILD_SERVICE=php-fpm - PHP_VERSION=71 BUILD_SERVICE=php-fpm - - PHP_VERSION=56 BUILD_SERVICE=php-worker - - PHP_VERSION=70 BUILD_SERVICE=php-worker - - PHP_VERSION=71 BUILD_SERVICE=php-worker + - PHP_VERSION=56 BUILD_SERVICE="php-worker hhvm" + - PHP_VERSION=70 BUILD_SERVICE="php-worker hhvm" + - PHP_VERSION=71 BUILD_SERVICE="php-worker hhvm" - - PHP_VERSION=56 BUILD_SERVICE=nginx - - PHP_VERSION=70 BUILD_SERVICE=nginx - - PHP_VERSION=71 BUILD_SERVICE=nginx + - PHP_VERSION=56 BUILD_SERVICE="nginx caddy apache2" + - PHP_VERSION=70 BUILD_SERVICE="nginx caddy apache2" + - PHP_VERSION=71 BUILD_SERVICE="nginx caddy apache2" - - PHP_VERSION=56 BUILD_SERVICE=blackfire - - PHP_VERSION=70 BUILD_SERVICE=blackfire - - PHP_VERSION=71 BUILD_SERVICE=blackfire - - - PHP_VERSION=56 BUILD_SERVICE=apache2 - - PHP_VERSION=70 BUILD_SERVICE=apache2 - - PHP_VERSION=71 BUILD_SERVICE=apache2 - - - PHP_VERSION=56 BUILD_SERVICE=hhvm - - PHP_VERSION=70 BUILD_SERVICE=hhvm - - PHP_VERSION=71 BUILD_SERVICE=hhvm - - - PHP_VERSION=56 BUILD_SERVICE=minio - - PHP_VERSION=70 BUILD_SERVICE=minio - - PHP_VERSION=71 BUILD_SERVICE=minio - - - PHP_VERSION=56 BUILD_SERVICE=mysql - - PHP_VERSION=70 BUILD_SERVICE=mysql - - PHP_VERSION=71 BUILD_SERVICE=mysql - - - PHP_VERSION=56 BUILD_SERVICE=percona - - PHP_VERSION=70 BUILD_SERVICE=percona - - PHP_VERSION=71 BUILD_SERVICE=percona + - PHP_VERSION=56 BUILD_SERVICE="mysql mariadb phpmyadmin" + - PHP_VERSION=70 BUILD_SERVICE="mysql mariadb phpmyadmin" + - PHP_VERSION=71 BUILD_SERVICE="mysql mariadb phpmyadmin" - PHP_VERSION=56 BUILD_SERVICE=mssql - PHP_VERSION=70 BUILD_SERVICE=mssql - PHP_VERSION=71 BUILD_SERVICE=mssql - - PHP_VERSION=56 BUILD_SERVICE=mariadb - - PHP_VERSION=70 BUILD_SERVICE=mariadb - - PHP_VERSION=71 BUILD_SERVICE=mariadb + - PHP_VERSION=56 BUILD_SERVICE="postgres postgres-postgis pgadmin" + - PHP_VERSION=70 BUILD_SERVICE="postgres postgres-postgis pgadmin" + - PHP_VERSION=71 BUILD_SERVICE="postgres postgres-postgis pgadmin" - - PHP_VERSION=56 BUILD_SERVICE=postgres - - PHP_VERSION=70 BUILD_SERVICE=postgres - - PHP_VERSION=71 BUILD_SERVICE=postgres - - - PHP_VERSION=56 BUILD_SERVICE=postgres-postgis - - PHP_VERSION=70 BUILD_SERVICE=postgres-postgis - - PHP_VERSION=71 BUILD_SERVICE=postgres-postgis - - - PHP_VERSION=56 BUILD_SERVICE=neo4j - - PHP_VERSION=70 BUILD_SERVICE=neo4j - - PHP_VERSION=71 BUILD_SERVICE=neo4j - - - PHP_VERSION=56 BUILD_SERVICE=mongo - - PHP_VERSION=70 BUILD_SERVICE=mongo - - PHP_VERSION=71 BUILD_SERVICE=mongo + - PHP_VERSION=56 BUILD_SERVICE="neo4j mongo redis" + - PHP_VERSION=70 BUILD_SERVICE="neo4j mongo redis" + - PHP_VERSION=71 BUILD_SERVICE="neo4j mongo redis" - PHP_VERSION=56 BUILD_SERVICE=rethinkdb - PHP_VERSION=70 BUILD_SERVICE=rethinkdb - PHP_VERSION=71 BUILD_SERVICE=rethinkdb - - PHP_VERSION=56 BUILD_SERVICE=redis - - PHP_VERSION=70 BUILD_SERVICE=redis - - PHP_VERSION=71 BUILD_SERVICE=redis - - PHP_VERSION=56 BUILD_SERVICE=aerospike - PHP_VERSION=70 BUILD_SERVICE=aerospike - PHP_VERSION=71 BUILD_SERVICE=aerospike - - PHP_VERSION=56 BUILD_SERVICE=memcached - - PHP_VERSION=70 BUILD_SERVICE=memcached - - PHP_VERSION=71 BUILD_SERVICE=memcached + - PHP_VERSION=56 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq" + - PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq" + - PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq" - - PHP_VERSION=56 BUILD_SERVICE=beanstalkd - - PHP_VERSION=70 BUILD_SERVICE=beanstalkd - - PHP_VERSION=71 BUILD_SERVICE=beanstalkd + - PHP_VERSION=56 BUILD_SERVICE="adminer elasticsearch certbot mailhog" + - PHP_VERSION=70 BUILD_SERVICE="adminer elasticsearch certbot mailhog" + - PHP_VERSION=71 BUILD_SERVICE="adminer elasticsearch certbot mailhog" - - PHP_VERSION=56 BUILD_SERVICE=rabbitmq - - PHP_VERSION=70 BUILD_SERVICE=rabbitmq - - PHP_VERSION=71 BUILD_SERVICE=rabbitmq + - PHP_VERSION=56 BUILD_SERVICE="selenium jenkins" + - PHP_VERSION=70 BUILD_SERVICE="selenium jenkins" + - PHP_VERSION=71 BUILD_SERVICE="selenium jenkins" - - PHP_VERSION=56 BUILD_SERVICE=beanstalkd-console - - PHP_VERSION=70 BUILD_SERVICE=beanstalkd-console - - PHP_VERSION=71 BUILD_SERVICE=beanstalkd-console - - - PHP_VERSION=56 BUILD_SERVICE=caddy - - PHP_VERSION=70 BUILD_SERVICE=caddy - - PHP_VERSION=71 BUILD_SERVICE=caddy - - - PHP_VERSION=56 BUILD_SERVICE=phpmyadmin - - PHP_VERSION=70 BUILD_SERVICE=phpmyadmin - - PHP_VERSION=71 BUILD_SERVICE=phpmyadmin - - - PHP_VERSION=56 BUILD_SERVICE=adminer - - PHP_VERSION=70 BUILD_SERVICE=adminer - - PHP_VERSION=71 BUILD_SERVICE=adminer - - - PHP_VERSION=56 BUILD_SERVICE=pgadmin - - PHP_VERSION=70 BUILD_SERVICE=pgadmin - - PHP_VERSION=71 BUILD_SERVICE=pgadmin - - - PHP_VERSION=56 BUILD_SERVICE=elasticsearch - - PHP_VERSION=70 BUILD_SERVICE=elasticsearch - - PHP_VERSION=71 BUILD_SERVICE=elasticsearch - - - PHP_VERSION=56 BUILD_SERVICE=certbot - - PHP_VERSION=70 BUILD_SERVICE=certbot - - PHP_VERSION=71 BUILD_SERVICE=certbot - - - PHP_VERSION=56 BUILD_SERVICE=mailhog - - PHP_VERSION=70 BUILD_SERVICE=mailhog - - PHP_VERSION=71 BUILD_SERVICE=mailhog - - - PHP_VERSION=56 BUILD_SERVICE=selenium - - PHP_VERSION=70 BUILD_SERVICE=selenium - - PHP_VERSION=71 BUILD_SERVICE=selenium - - - PHP_VERSION=56 BUILD_SERVICE=proxy - - PHP_VERSION=70 BUILD_SERVICE=proxy - - PHP_VERSION=71 BUILD_SERVICE=proxy - - - PHP_VERSION=56 BUILD_SERVICE=proxy2 - - PHP_VERSION=70 BUILD_SERVICE=proxy2 - - PHP_VERSION=71 BUILD_SERVICE=proxy2 - - - PHP_VERSION=56 BUILD_SERVICE=balancer - - PHP_VERSION=70 BUILD_SERVICE=balancer - - PHP_VERSION=71 BUILD_SERVICE=balancer - - - PHP_VERSION=56 BUILD_SERVICE=jenkins - - PHP_VERSION=70 BUILD_SERVICE=jenkins - - PHP_VERSION=71 BUILD_SERVICE=jenkins + - PHP_VERSION=56 BUILD_SERVICE="proxy proxy2 balancer" + - PHP_VERSION=70 BUILD_SERVICE="proxy proxy2 balancer" + - PHP_VERSION=71 BUILD_SERVICE="proxy proxy2 balancer" - HUGO_VERSION=0.20.2 From 6843f508fad9387e57a980ae9fe9ef7abbac8ca6 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 6 May 2017 17:08:10 +0800 Subject: [PATCH 019/313] join short time jobs --- .travis.yml | 38 +++++++++----------------------------- 1 file changed, 9 insertions(+), 29 deletions(-) diff --git a/.travis.yml b/.travis.yml index c5061dbc..2c192886 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,9 @@ services: env: matrix: - - PHP_VERSION=56 BUILD_SERVICE="applications blackfire minio percona" - - PHP_VERSION=70 BUILD_SERVICE="applications blackfire minio percona" - - PHP_VERSION=71 BUILD_SERVICE="applications blackfire minio percona" + - PHP_VERSION=56 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2" + - PHP_VERSION=70 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2" + - PHP_VERSION=71 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2" - PHP_VERSION=56 BUILD_SERVICE=workspace - PHP_VERSION=70 BUILD_SERVICE=workspace @@ -21,10 +21,6 @@ env: - PHP_VERSION=70 BUILD_SERVICE="php-worker hhvm" - PHP_VERSION=71 BUILD_SERVICE="php-worker hhvm" - - PHP_VERSION=56 BUILD_SERVICE="nginx caddy apache2" - - PHP_VERSION=70 BUILD_SERVICE="nginx caddy apache2" - - PHP_VERSION=71 BUILD_SERVICE="nginx caddy apache2" - - PHP_VERSION=56 BUILD_SERVICE="mysql mariadb phpmyadmin" - PHP_VERSION=70 BUILD_SERVICE="mysql mariadb phpmyadmin" - PHP_VERSION=71 BUILD_SERVICE="mysql mariadb phpmyadmin" @@ -33,13 +29,9 @@ env: - PHP_VERSION=70 BUILD_SERVICE=mssql - PHP_VERSION=71 BUILD_SERVICE=mssql - - PHP_VERSION=56 BUILD_SERVICE="postgres postgres-postgis pgadmin" - - PHP_VERSION=70 BUILD_SERVICE="postgres postgres-postgis pgadmin" - - PHP_VERSION=71 BUILD_SERVICE="postgres postgres-postgis pgadmin" - - - PHP_VERSION=56 BUILD_SERVICE="neo4j mongo redis" - - PHP_VERSION=70 BUILD_SERVICE="neo4j mongo redis" - - PHP_VERSION=71 BUILD_SERVICE="neo4j mongo redis" + - PHP_VERSION=56 BUILD_SERVICE="postgres postgres-postgis pgadmin neo4j mongo redis" + - PHP_VERSION=70 BUILD_SERVICE="postgres postgres-postgis pgadmin neo4j mongo redis" + - PHP_VERSION=71 BUILD_SERVICE="postgres postgres-postgis pgadmin neo4j mongo redis" - PHP_VERSION=56 BUILD_SERVICE=rethinkdb - PHP_VERSION=70 BUILD_SERVICE=rethinkdb @@ -49,21 +41,9 @@ env: - PHP_VERSION=70 BUILD_SERVICE=aerospike - PHP_VERSION=71 BUILD_SERVICE=aerospike - - PHP_VERSION=56 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq" - - PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq" - - PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq" - - - PHP_VERSION=56 BUILD_SERVICE="adminer elasticsearch certbot mailhog" - - PHP_VERSION=70 BUILD_SERVICE="adminer elasticsearch certbot mailhog" - - PHP_VERSION=71 BUILD_SERVICE="adminer elasticsearch certbot mailhog" - - - PHP_VERSION=56 BUILD_SERVICE="selenium jenkins" - - PHP_VERSION=70 BUILD_SERVICE="selenium jenkins" - - PHP_VERSION=71 BUILD_SERVICE="selenium jenkins" - - - PHP_VERSION=56 BUILD_SERVICE="proxy proxy2 balancer" - - PHP_VERSION=70 BUILD_SERVICE="proxy proxy2 balancer" - - PHP_VERSION=71 BUILD_SERVICE="proxy proxy2 balancer" + - PHP_VERSION=56 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" - HUGO_VERSION=0.20.2 From e8aad1238eeec8e5b416535b42baaaa016492aab Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 6 May 2017 17:37:03 +0800 Subject: [PATCH 020/313] join short time jobs --- .travis.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2c192886..03e4e584 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,9 @@ services: env: matrix: - - PHP_VERSION=56 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2" - - PHP_VERSION=70 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2" - - PHP_VERSION=71 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2" + - PHP_VERSION=56 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis" + - PHP_VERSION=70 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis" + - PHP_VERSION=71 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis" - PHP_VERSION=56 BUILD_SERVICE=workspace - PHP_VERSION=70 BUILD_SERVICE=workspace @@ -21,18 +21,10 @@ env: - PHP_VERSION=70 BUILD_SERVICE="php-worker hhvm" - PHP_VERSION=71 BUILD_SERVICE="php-worker hhvm" - - PHP_VERSION=56 BUILD_SERVICE="mysql mariadb phpmyadmin" - - PHP_VERSION=70 BUILD_SERVICE="mysql mariadb phpmyadmin" - - PHP_VERSION=71 BUILD_SERVICE="mysql mariadb phpmyadmin" - - PHP_VERSION=56 BUILD_SERVICE=mssql - PHP_VERSION=70 BUILD_SERVICE=mssql - PHP_VERSION=71 BUILD_SERVICE=mssql - - PHP_VERSION=56 BUILD_SERVICE="postgres postgres-postgis pgadmin neo4j mongo redis" - - PHP_VERSION=70 BUILD_SERVICE="postgres postgres-postgis pgadmin neo4j mongo redis" - - PHP_VERSION=71 BUILD_SERVICE="postgres postgres-postgis pgadmin neo4j mongo redis" - - PHP_VERSION=56 BUILD_SERVICE=rethinkdb - PHP_VERSION=70 BUILD_SERVICE=rethinkdb - PHP_VERSION=71 BUILD_SERVICE=rethinkdb From 9f12f63aeae78f8235891e993304e6e0fbf799f3 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 6 May 2017 14:17:44 +0800 Subject: [PATCH 021/313] php-fpm Dockerfile-70 remove duplicate MSSQL section. --- php-fpm/Dockerfile-70 | 80 ------------------------------------------- 1 file changed, 80 deletions(-) diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 1c7a1b2c..824483f2 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -205,86 +205,6 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \ docker-php-ext-install tokenizer \ ;fi -##################################### -# SQL SERVER: -##################################### - -ARG MSSQL=false -RUN if [ ${MSSQL} = true ]; then \ - - ##################################### - # Install Depenencies: - ##################################### - apt-get update && \ - apt-get install -y --force-yes wget apt-transport-https curl freetds-common php5-odbc libsybdb5 freetds-bin unixodbc unixodbc-dev php5-sybase && \ - - ##################################### - # The following steps were taken from - # Microsoft's github account: - # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways - ##################################### - - # Add PHP 7 repository - # for Debian jessie - # And System upgrade - echo "deb http://packages.dotdeb.org jessie all" \ - | tee /etc/apt/sources.list.d/dotdeb.list \ - && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ - | apt-key add - \ - && apt-get update \ - && apt-get upgrade -qq && \ - - # Install UnixODBC - # Compile odbc_config as it is not part of unixodbc package - apt-get install -y whiptail \ - unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ - && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ - && cd unixodbc-*/ \ - && dpkg-buildpackage -uc -us -B -d \ - && cp -v ./exe/odbc_config /usr/local/bin/ && \ - - # Fake uname for install.sh - printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ - | tee /usr/local/bin/uname \ - && chmod +x /usr/local/bin/uname && \ - - # Microsoft ODBC Driver 13 for Linux - # Note: There's a copy of this tar on my hubiC - wget -nv -O msodbcsql-13.0.0.0.tar.gz \ - "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ - && tar -xf msodbcsql-13.0.0.0.tar.gz \ - && cd msodbcsql-*/ \ - && ldd lib64/libmsodbcsql-13.0.so.0.0 \ - && ./install.sh install --accept-license \ - && ls -l /opt/microsoft/msodbcsql/ \ - && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" \ - - ##################################### - # Install pdo_dblib - ##################################### - - && docker-php-ext-install pdo \ - && docker-php-ext-configure pdo_dblib --with-libdir=/lib/x86_64-linux-gnu \ - && docker-php-ext-install pdo_dblib \ - && docker-php-ext-enable pdo_dblib && \ - - ##################################### - # Install sqlsrv y pdo_sqlsrv - # extensions: - ##################################### - - pecl install sqlsrv-4.1.7preview && \ - pecl install pdo_sqlsrv-4.1.7preview && \ - - ##################################### - # Set locales for the container - ##################################### - - apt-get install -y locales \ - && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ - && locale-gen \ -;fi - ##################################### # Human Language and Character Encoding Support: ##################################### From cf30e159fb0c534cf6aef3fb0c54213173b092b9 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 6 May 2017 14:21:56 +0800 Subject: [PATCH 022/313] php-fpm Dockerfile-70 fix ini file path --- php-fpm/Dockerfile-70 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 824483f2..24b92f29 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -303,8 +303,8 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ apt-get install -y locales \ && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ && locale-gen \ - && echo "extension=sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-sqlsrv.ini \ - && echo "extension=pdo_sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-pdo_sqlsrv.ini \ + && echo "extension=sqlsrv.so" > /usr/local/etc/php/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /usr/local/etc/php/conf.d/20-pdo_sqlsrv.ini \ ;fi # @@ -313,7 +313,7 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ #-------------------------------------------------------------------------- # -ADD ./laravel.ini /usr/local/etc/php/conf.d +ADD ./laravel.ini /usr/local/etc/php/conf.d/ ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ #RUN rm -r /var/lib/apt/lists/* From a6e2a6ee59983fb0108833263637d14f596d6759 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 6 May 2017 14:23:03 +0800 Subject: [PATCH 023/313] php-fpm Dockerfile-70 MYSQL install stable version --- php-fpm/Dockerfile-70 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 24b92f29..91c6f524 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -293,8 +293,8 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ # extensions: ##################################### - pecl install sqlsrv-4.1.7 && \ - pecl install pdo_sqlsrv-4.1.7 && \ + pecl install sqlsrv-4.0.8 && \ + pecl install pdo_sqlsrv-4.0.8 && \ ##################################### # Set locales for the container From 02958c06fe419d67579fcded3ac406ea341f3730 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 6 May 2017 14:35:40 +0800 Subject: [PATCH 024/313] php-fpm Dockerfile-71 MYSQL * remove old section * fill new section --- php-fpm/Dockerfile-71 | 155 ++++++++++++++++++++---------------------- 1 file changed, 75 insertions(+), 80 deletions(-) diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 17e87d2b..9cb54cd9 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -205,86 +205,6 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \ docker-php-ext-install tokenizer \ ;fi -##################################### -# SQL SERVER: -##################################### - -ARG MSSQL=false -RUN if [ ${MSSQL} = true ]; then \ - - ##################################### - # Install Depenencies: - ##################################### - apt-get update && \ - apt-get install -y --force-yes wget apt-transport-https curl freetds-common php5-odbc libsybdb5 freetds-bin unixodbc unixodbc-dev php5-sybase && \ - - ##################################### - # The following steps were taken from - # Microsoft's github account: - # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways - ##################################### - - # Add PHP 7 repository - # for Debian jessie - # And System upgrade - echo "deb http://packages.dotdeb.org jessie all" \ - | tee /etc/apt/sources.list.d/dotdeb.list \ - && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ - | apt-key add - \ - && apt-get update \ - && apt-get upgrade -qq && \ - - # Install UnixODBC - # Compile odbc_config as it is not part of unixodbc package - apt-get install -y whiptail \ - unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ - && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ - && cd unixodbc-*/ \ - && dpkg-buildpackage -uc -us -B -d \ - && cp -v ./exe/odbc_config /usr/local/bin/ && \ - - # Fake uname for install.sh - printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ - | tee /usr/local/bin/uname \ - && chmod +x /usr/local/bin/uname && \ - - # Microsoft ODBC Driver 13 for Linux - # Note: There's a copy of this tar on my hubiC - wget -nv -O msodbcsql-13.0.0.0.tar.gz \ - "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ - && tar -xf msodbcsql-13.0.0.0.tar.gz \ - && cd msodbcsql-*/ \ - && ldd lib64/libmsodbcsql-13.0.so.0.0 \ - && ./install.sh install --accept-license \ - && ls -l /opt/microsoft/msodbcsql/ \ - && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" \ - - ##################################### - # Install pdo_dblib - ##################################### - - && docker-php-ext-install pdo \ - && docker-php-ext-configure pdo_dblib --with-libdir=/lib/x86_64-linux-gnu \ - && docker-php-ext-install pdo_dblib \ - && docker-php-ext-enable pdo_dblib && \ - - ##################################### - # Install sqlsrv y pdo_sqlsrv - # extensions: - ##################################### - - pecl install sqlsrv-4.1.7preview && \ - pecl install pdo_sqlsrv-4.1.7preview && \ - - ##################################### - # Set locales for the container - ##################################### - - apt-get install -y locales \ - && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ - && locale-gen \ -;fi - ##################################### # Human Language and Character Encoding Support: ##################################### @@ -312,6 +232,81 @@ RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ ghostscript \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Install Depenencies: + ##################################### + apt-get update && \ + apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ + + ##################################### + # The following steps were taken from + # Microsoft's github account: + # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways + ##################################### + + # Add PHP 7 repository + # for Debian jessie + # And System upgrade + echo "deb http://packages.dotdeb.org jessie all" \ + | tee /etc/apt/sources.list.d/dotdeb.list \ + && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ + | apt-key add - \ + && apt-get update \ + && apt-get upgrade -qq && \ + + # Install UnixODBC + # Compile odbc_config as it is not part of unixodbc package + apt-get update && \ + apt-get install -y whiptail \ + unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ + && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ + && cd unixodbc-*/ \ + && ./configure && make && make install \ + && cp -v ./exe/odbc_config /usr/local/bin/ && \ + + # Fake uname for install.sh + printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ + | tee /usr/local/bin/uname \ + && chmod +x /usr/local/bin/uname && \ + + # Microsoft ODBC Driver 13 for Linux + # Note: There's a copy of this tar on my hubiC + wget -nv -O msodbcsql-13.0.0.0.tar.gz \ + "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ + && tar -xf msodbcsql-13.0.0.0.tar.gz \ + && cd msodbcsql-*/ \ + && ldd lib64/libmsodbcsql-13.0.so.0.0 \ + && ./install.sh install --accept-license \ + && ls -l /opt/microsoft/msodbcsql/ \ + && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ + + + ##################################### + # Install sqlsrv y pdo_sqlsrv + # extensions: + ##################################### + + pecl install sqlsrv-4.0.8 && \ + pecl install pdo_sqlsrv-4.0.8 && \ + + ##################################### + # Set locales for the container + ##################################### + + apt-get install -y locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo "extension=sqlsrv.so" > /usr/local/etc/php/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /usr/local/etc/php/conf.d/20-pdo_sqlsrv.ini \ +;fi + # #-------------------------------------------------------------------------- # Final Touch From 59293d7a9913b2143bc2007f0f72e9a41f7f981a Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 6 May 2017 18:48:44 +0800 Subject: [PATCH 025/313] set php-fpm and workspace use sam sqlsrv version. --- workspace/Dockerfile-70 | 4 ++-- workspace/Dockerfile-71 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index f5dc718f..b4b7af32 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -458,8 +458,8 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ # extensions: ##################################### - pecl install sqlsrv-4.0.6 && \ - pecl install pdo_sqlsrv-4.0.6 && \ + pecl install sqlsrv-4.0.8 && \ + pecl install pdo_sqlsrv-4.0.8 && \ ##################################### # Set locales for the container diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 6d4ee3f2..f6ad96fb 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -454,8 +454,8 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ # extensions: ##################################### - pecl install sqlsrv-4.0.6 && \ - pecl install pdo_sqlsrv-4.0.6 && \ + pecl install sqlsrv-4.0.8 && \ + pecl install pdo_sqlsrv-4.0.8 && \ ##################################### # Set locales for the container From 69c9202304372cc898edcd58052a1645343575f6 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sun, 7 May 2017 01:08:56 +0800 Subject: [PATCH 026/313] apt-get update just need run at first, after add-apt-repository or update apt source list. --- workspace/Dockerfile-56 | 10 ++++------ workspace/Dockerfile-70 | 16 ++++++---------- workspace/Dockerfile-71 | 18 ++++++++---------- 3 files changed, 18 insertions(+), 26 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 83e4cc13..701aa9e0 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -47,8 +47,8 @@ MAINTAINER Mahmoud Zalt ARG PUID=1000 ARG PGID=1000 RUN groupadd -g $PGID laradock && \ - useradd -u $PUID -g laradock -m laradock - + useradd -u $PUID -g laradock -m laradock && \ + apt-get update -yqq ##################################### # SOAP: @@ -60,8 +60,8 @@ ENV INSTALL_SOAP ${INSTALL_SOAP} RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the PHP SOAP extension - apt-get -y update && \ add-apt-repository -y ppa:ondrej/php && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php5.6-soap \ ;fi @@ -128,7 +128,6 @@ RUN echo "" >> ~/.bashrc && \ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands - apt-get update && \ apt-get install -y --force-yes php5.6-xdebug && \ sed -i 's/^/;/g' /etc/php/5.6/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ @@ -150,7 +149,7 @@ ENV BLACKFIRE_CLIENT_TOKEN ${BLACKFIRE_CLIENT_TOKEN} RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ curl -L https://packagecloud.io/gpg.key | apt-key add - && \ echo "deb http://packages.blackfire.io/debian any main" | tee /etc/apt/sources.list.d/blackfire.list && \ - apt-get update && \ + apt-get update -yqq && \ apt-get install blackfire-agent \ ;fi @@ -354,7 +353,6 @@ ENV INSTALL_LINUXBREW ${INSTALL_LINUXBREW} RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ # Preparation - apt-get update && \ apt-get upgrade -y && \ apt-get install -y build-essential make cmake scons curl git \ ruby autoconf automake autoconf-archive \ diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index b4b7af32..b4607580 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -47,8 +47,8 @@ MAINTAINER Mahmoud Zalt ARG PUID=1000 ARG PGID=1000 RUN groupadd -g $PGID laradock && \ - useradd -u $PUID -g laradock -m laradock - + useradd -u $PUID -g laradock -m laradock && \ + apt-get update -yqq ##################################### # SOAP: @@ -60,8 +60,8 @@ ENV INSTALL_SOAP ${INSTALL_SOAP} RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the PHP SOAP extension - apt-get -y update && \ add-apt-repository -y ppa:ondrej/php && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php7.0-soap \ ;fi @@ -128,7 +128,6 @@ RUN echo "" >> ~/.bashrc && \ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands - apt-get update && \ apt-get install -y --force-yes php7.0-xdebug && \ sed -i 's/^/;/g' /etc/php/7.0/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ @@ -150,7 +149,7 @@ ENV BLACKFIRE_CLIENT_TOKEN ${BLACKFIRE_CLIENT_TOKEN} RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ curl -L https://packagecloud.io/gpg.key | apt-key add - && \ echo "deb http://packages.blackfire.io/debian any main" | tee /etc/apt/sources.list.d/blackfire.list && \ - apt-get update && \ + apt-get update -yqq && \ apt-get install blackfire-agent \ ;fi @@ -310,7 +309,7 @@ ENV INSTALL_V8JS_EXTENSION ${INSTALL_V8JS_EXTENSION} RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then \ # Install the php V8JS extension add-apt-repository -y ppa:pinepain/libv8-5.4 \ - && apt-get update \ + && apt-get update -yqq \ && apt-get install -y php7.0-xml php7.0-dev php-pear libv8-5.4 \ && pecl install v8js \ && echo "extension=v8js.so" >> /etc/php/7.0/cli/php.ini \ @@ -371,7 +370,6 @@ ENV INSTALL_LINUXBREW ${INSTALL_LINUXBREW} RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ # Preparation - apt-get update && \ apt-get upgrade -y && \ apt-get install -y build-essential make cmake scons curl git \ ruby autoconf automake autoconf-archive \ @@ -404,7 +402,6 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ # Install Depenencies: ##################################### cd / && \ - apt-get update && \ apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ ##################################### @@ -421,13 +418,12 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ | tee /etc/apt/sources.list.d/dotdeb.list \ && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ | apt-key add - \ - && apt-get update \ + && apt-get update -yqq \ && apt-get upgrade -qq && \ # Install UnixODBC # Compile odbc_config as it is not part of unixodbc package cd / && \ - apt-get update && \ apt-get install -y whiptail \ unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index f6ad96fb..8efc74c1 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -47,8 +47,8 @@ MAINTAINER Mahmoud Zalt ARG PUID=1000 ARG PGID=1000 RUN groupadd -g $PGID laradock && \ - useradd -u $PUID -g laradock -m laradock - + useradd -u $PUID -g laradock -m laradock && \ + apt-get update -yqq ##################################### # SOAP: @@ -60,8 +60,8 @@ ENV INSTALL_SOAP ${INSTALL_SOAP} RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the PHP SOAP extension - apt-get -y update && \ add-apt-repository -y ppa:ondrej/php && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php7.1-soap \ ;fi @@ -124,7 +124,6 @@ RUN echo "" >> ~/.bashrc && \ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands - apt-get update && \ apt-get install -y --force-yes php-xdebug && \ sed -i 's/^/;/g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ @@ -146,7 +145,7 @@ ENV BLACKFIRE_CLIENT_TOKEN ${BLACKFIRE_CLIENT_TOKEN} RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ curl -L https://packagecloud.io/gpg.key | apt-key add - && \ echo "deb http://packages.blackfire.io/debian any main" | tee /etc/apt/sources.list.d/blackfire.list && \ - apt-get update && \ + apt-get update -yqq && \ apt-get install blackfire-agent \ ;fi @@ -306,7 +305,7 @@ ENV INSTALL_V8JS_EXTENSION ${INSTALL_V8JS_EXTENSION} RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then \ # Install the php V8JS extension add-apt-repository -y ppa:pinepain/libv8-5.4 \ - && apt-get update \ + && apt-get update -yqq \ && apt-get install -y php-xml php-dev php-pear libv8-5.4 \ && pecl install v8js \ && echo "extension=v8js.so" >> /etc/php/7.1/cli/php.ini \ @@ -367,7 +366,6 @@ ENV INSTALL_LINUXBREW ${INSTALL_LINUXBREW} RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ # Preparation - apt-get update && \ apt-get upgrade -y && \ apt-get install -y build-essential make cmake scons curl git \ ruby autoconf automake autoconf-archive \ @@ -400,7 +398,7 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ # Install Depenencies: ##################################### cd / && \ - apt-get update && \ + apt-get update -yqq && \ apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ ##################################### @@ -417,13 +415,13 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ | tee /etc/apt/sources.list.d/dotdeb.list \ && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ | apt-key add - \ - && apt-get update \ + && apt-get update -yqq \ && apt-get upgrade -qq && \ # Install UnixODBC # Compile odbc_config as it is not part of unixodbc package cd / && \ - apt-get update && \ + apt-get update -yqq && \ apt-get install -y whiptail \ unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ From f162864e8971fd121045207fc172fdc68922684a Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sun, 7 May 2017 01:17:35 +0800 Subject: [PATCH 027/313] apt-get update just need run at first, after add-apt-repository or update apt source list. --- php-fpm/Dockerfile-56 | 4 ++-- php-fpm/Dockerfile-70 | 12 ++++++------ php-fpm/Dockerfile-71 | 12 ++++++------ 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 176a0624..124bd49b 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -45,7 +45,7 @@ MAINTAINER Mahmoud Zalt ARG INSTALL_SOAP=false RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the soap extension - apt-get -y update && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php-soap && \ docker-php-ext-install soap \ ;fi @@ -219,7 +219,7 @@ RUN if [ ${INSTALL_INTL} = true ]; then \ ARG INSTALL_GHOSTSCRIPT=false RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ # Install the ghostscript extension for PDF editing - apt-get update && \ + apt-get update -yqq && \ apt-get install -y poppler-utils ghostscript \ ;fi diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 91c6f524..4ee90e80 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -45,7 +45,7 @@ MAINTAINER Mahmoud Zalt ARG INSTALL_SOAP=false RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the soap extension - apt-get -y update && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php-soap && \ docker-php-ext-install soap \ ;fi @@ -212,7 +212,7 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \ ARG INSTALL_INTL=false RUN if [ ${INSTALL_INTL} = true ]; then \ # Install intl and requirements - apt-get -y update && \ + apt-get update -yqq && \ apt-get install -y zlib1g-dev libicu-dev g++ && \ docker-php-ext-configure intl && \ docker-php-ext-install intl \ @@ -226,7 +226,7 @@ ARG INSTALL_GHOSTSCRIPT=false RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ # Install the ghostscript extension # for PDF editing - apt-get -y update \ + apt-get update -yqq \ && apt-get install -y \ poppler-utils \ ghostscript \ @@ -242,7 +242,7 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ ##################################### # Install Depenencies: ##################################### - apt-get update && \ + apt-get update -yqq && \ apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ ##################################### @@ -258,12 +258,12 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ | tee /etc/apt/sources.list.d/dotdeb.list \ && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ | apt-key add - \ - && apt-get update \ + && apt-get update -yqq \ && apt-get upgrade -qq && \ # Install UnixODBC # Compile odbc_config as it is not part of unixodbc package - apt-get update && \ + apt-get update -yqq && \ apt-get install -y whiptail \ unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 9cb54cd9..a971c0e1 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -45,7 +45,7 @@ MAINTAINER Mahmoud Zalt ARG INSTALL_SOAP=false RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the soap extension - apt-get -y update && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php-soap && \ docker-php-ext-install soap \ ;fi @@ -212,7 +212,7 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \ ARG INSTALL_INTL=false RUN if [ ${INSTALL_INTL} = true ]; then \ # Install intl and requirements - apt-get -y update && \ + apt-get update -yqq && \ apt-get install -y zlib1g-dev libicu-dev g++ && \ docker-php-ext-configure intl && \ docker-php-ext-install intl \ @@ -226,7 +226,7 @@ ARG INSTALL_GHOSTSCRIPT=false RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ # Install the ghostscript extension # for PDF editing - apt-get -y update \ + apt-get update -yqq \ && apt-get install -y \ poppler-utils \ ghostscript \ @@ -242,7 +242,7 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ ##################################### # Install Depenencies: ##################################### - apt-get update && \ + apt-get update -yqq && \ apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ ##################################### @@ -258,12 +258,12 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ | tee /etc/apt/sources.list.d/dotdeb.list \ && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ | apt-key add - \ - && apt-get update \ + && apt-get update -yqq \ && apt-get upgrade -qq && \ # Install UnixODBC # Compile odbc_config as it is not part of unixodbc package - apt-get update && \ + apt-get update -yqq && \ apt-get install -y whiptail \ unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ From e454d1c8a75ef8408d056a05b51eb00711125f6d Mon Sep 17 00:00:00 2001 From: Sascha Brendel Date: Sun, 7 May 2017 12:43:20 +0200 Subject: [PATCH 028/313] Fixed broken adoption for PUID and PGID for Non-Root User laradock. --- workspace/Dockerfile-56 | 8 ++++++-- workspace/Dockerfile-70 | 8 ++++++-- workspace/Dockerfile-71 | 8 ++++++-- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 83e4cc13..1fa7119f 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -46,8 +46,12 @@ MAINTAINER Mahmoud Zalt # Add a non-root user to prevent files being created with root permissions on host machine. ARG PUID=1000 ARG PGID=1000 -RUN groupadd -g $PGID laradock && \ - useradd -u $PUID -g laradock -m laradock + +ENV PUID ${PUID} +ENV PGID ${PGID} + +RUN groupadd -g ${PGID} laradock && \ + useradd -u ${PUID} -g laradock -m laradock ##################################### diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index b4b7af32..117f82b7 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -46,8 +46,12 @@ MAINTAINER Mahmoud Zalt # Add a non-root user to prevent files being created with root permissions on host machine. ARG PUID=1000 ARG PGID=1000 -RUN groupadd -g $PGID laradock && \ - useradd -u $PUID -g laradock -m laradock + +ENV PUID ${PUID} +ENV PGID ${PGID} + +RUN groupadd -g ${PGID} laradock && \ + useradd -u ${PUID} -g laradock -m laradock ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index f6ad96fb..8128aabb 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -46,8 +46,12 @@ MAINTAINER Mahmoud Zalt # Add a non-root user to prevent files being created with root permissions on host machine. ARG PUID=1000 ARG PGID=1000 -RUN groupadd -g $PGID laradock && \ - useradd -u $PUID -g laradock -m laradock + +ENV PUID ${PUID} +ENV PGID ${PGID} + +RUN groupadd -g ${PGID} laradock && \ + useradd -u ${PUID} -g laradock -m laradock ##################################### From 1d6c369c060e681addc9fd5e7c60c29aefa05a10 Mon Sep 17 00:00:00 2001 From: Winfried Date: Sun, 7 May 2017 15:17:25 +0200 Subject: [PATCH 029/313] Adding Docker version recommendation #895 --- DOCUMENTATION/content/getting-started/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DOCUMENTATION/content/getting-started/index.md b/DOCUMENTATION/content/getting-started/index.md index f5b73aa0..a3c12076 100644 --- a/DOCUMENTATION/content/getting-started/index.md +++ b/DOCUMENTATION/content/getting-started/index.md @@ -145,6 +145,10 @@ If you are using **Docker Toolbox** (VM), do one of the following:
+We recommend using a Docker version which is newer than 1.13. + +
+ >**Warning:** If you used an older version of Laradock it's highly recommended to rebuild the containers you need to use [see how you rebuild a container](#Build-Re-build-Containers) in order to prevent as much errors as possible.
From eab859fe80b808cf331636a9fabced097e58ae59 Mon Sep 17 00:00:00 2001 From: Winfried Date: Sun, 7 May 2017 15:18:09 +0200 Subject: [PATCH 030/313] Adding Docker-sync documenation #612 Closes #612 --- DOCUMENTATION/content/documentation/index.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 8db3ee38..49d13765 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -153,9 +153,28 @@ You might use the `--no-cache` option if you want full rebuilding (`docker-compo +
+ + +## Docker-Sync + +Docker on the Mac [is slow](https://github.com/docker/for-mac/issues/77), at the time of writing. Especially for larger projects, this can be a problem. The problem is [older than March 2016](https://forums.docker.com/t/file-access-in-mounted-volumes-extremely-slow-cpu-bound/8076) - as it's a such a long-running issue, we're including it in the docs here. + +The problem originates in bind-mount performance on MacOS. Docker for Mac uses osxfs by default. This is not without reason, it has [a lot of advantages](https://docs.docker.com/docker-for-mac/osxfs/). + +Solutions to resolve this issue are easily installed however, we're hoping it'll be fixed by Docker themselves over time. They are currently [adding "cached and delegated" options](https://github.com/docker/for-mac/issues/77#issuecomment-283996750), which is partly available for Docker Edge. + +Options are [to switch over to NFS](https://github.com/IFSight/d4m-nfs) which is the simplest. The fastest option is [Docker-Sync "native"](https://github.com/EugenMayer/docker-sync) which is still quite easy to install. + +Clone [this repo](https://github.com/EugenMayer/docker-sync-boilerplate) to your machine, copy `default/docker-sync.yml` to your Laradock directory and run `docker-sync-stack start`. Be sure to use `docker-sync-stack clean` to stop and `docker-compose build` to rebuild. More information can be found [in the Docker-sync docs](https://github.com/EugenMayer/docker-sync). + + + +
+ ## Add more Software (Docker Images) To add an image (software), just edit the `docker-compose.yml` and add your container details, to do so you need to be familiar with the [docker compose file syntax](https://docs.docker.com/compose/compose-file/). From 6db5bc016239036d9bdeb3e7a463a48f8adfa90e Mon Sep 17 00:00:00 2001 From: Winfried Date: Sun, 7 May 2017 15:18:26 +0200 Subject: [PATCH 031/313] Removing unfinished sentence --- DOCUMENTATION/content/getting-started/index.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/DOCUMENTATION/content/getting-started/index.md b/DOCUMENTATION/content/getting-started/index.md index a3c12076..0aba2e0a 100644 --- a/DOCUMENTATION/content/getting-started/index.md +++ b/DOCUMENTATION/content/getting-started/index.md @@ -211,6 +211,4 @@ DB_HOST=mysql *If you want to install Laravel as PHP project, see [How to Install Laravel in a Docker Container](#Install-Laravel).*
-5 - Open your browser and visit your localhost address `http://localhost/`. If you followed the multiple projects setup, you can visit `http://project-1.dev/` and `http://project-2.dev/`. But first don't - - +5 - Open your browser and visit your localhost address `http://localhost/`. If you followed the multiple projects setup, you can visit `http://project-1.dev/` and `http://project-2.dev/`. From 4cf5f3eabfced1f223373017cbf3dc666b80a972 Mon Sep 17 00:00:00 2001 From: Winfried Date: Sun, 7 May 2017 16:54:55 +0200 Subject: [PATCH 032/313] Removing suffix for Aerospike and V8JS --- DOCUMENTATION/content/documentation/index.md | 8 ++++---- docker-compose.yml | 6 +++--- env-example | 6 +++--- php-fpm/Dockerfile-56 | 6 +++--- php-fpm/Dockerfile-70 | 6 +++--- php-fpm/Dockerfile-71 | 6 +++--- workspace/Dockerfile-56 | 8 ++++---- workspace/Dockerfile-70 | 14 +++++++------- workspace/Dockerfile-71 | 14 +++++++------- 9 files changed, 37 insertions(+), 37 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 8db3ee38..f1f5dcff 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -1239,11 +1239,11 @@ You are free to modify the `aliases.sh` as you see fit, adding your own aliases
a) open the `docker-compose.yml` file
-b) search for the `INSTALL_AEROSPIKE_EXTENSION` argument under the Workspace Container +b) search for the `INSTALL_AEROSPIKE` argument under the Workspace Container
c) set it to `true`
-d) search for the `INSTALL_AEROSPIKE_EXTENSION` argument under the PHP-FPM Container +d) search for the `INSTALL_AEROSPIKE` argument under the PHP-FPM Container
e) set it to `true` @@ -1254,13 +1254,13 @@ It should be like this: build: context: ./workspace args: - - INSTALL_AEROSPIKE_EXTENSION=true + - INSTALL_AEROSPIKE=true ... php-fpm: build: context: ./php-fpm args: - - INSTALL_AEROSPIKE_EXTENSION=true + - INSTALL_AEROSPIKE=true ... ``` diff --git a/docker-compose.yml b/docker-compose.yml index 3db26275..e7b82fe9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -23,8 +23,8 @@ services: - INSTALL_NODE=${WORKSPACE_INSTALL_NODE} - INSTALL_YARN=${WORKSPACE_INSTALL_YARN} - INSTALL_DRUSH=${WORKSPACE_INSTALL_DRUSH} - - INSTALL_AEROSPIKE_EXTENSION=${WORKSPACE_INSTALL_AEROSPIKE_EXTENSION} - - INSTALL_V8JS_EXTENSION=${WORKSPACE_INSTALL_V8JS_EXTENSION} + - INSTALL_AEROSPIKE=${WORKSPACE_INSTALL_AEROSPIKE} + - INSTALL_V8JS=${WORKSPACE_INSTALL_V8JS} - COMPOSER_GLOBAL_INSTALL=${WORKSPACE_COMPOSER_GLOBAL_INSTALL} - INSTALL_WORKSPACE_SSH=${WORKSPACE_INSTALL_WORKSPACE_SSH} - INSTALL_LARAVEL_ENVOY=${WORKSPACE_INSTALL_LARAVEL_ENVOY} @@ -67,7 +67,7 @@ services: - INSTALL_MEMCACHED=${PHP_FPM_INSTALL_MEMCACHED} - INSTALL_OPCACHE=${PHP_FPM_INSTALL_OPCACHE} - INSTALL_EXIF=${PHP_FPM_INSTALL_EXIF} - - INSTALL_AEROSPIKE_EXTENSION=${PHP_FPM_INSTALL_AEROSPIKE_EXTENSION} + - INSTALL_AEROSPIKE=${PHP_FPM_INSTALL_AEROSPIKE} - INSTALL_MYSQLI=${PHP_FPM_INSTALL_MYSQLI} - INSTALL_TOKENIZER=${PHP_FPM_INSTALL_TOKENIZER} - INSTALL_INTL=${PHP_FPM_INSTALL_INTL} diff --git a/env-example b/env-example index 22dab27d..2a38efb5 100644 --- a/env-example +++ b/env-example @@ -36,8 +36,8 @@ WORKSPACE_INSTALL_MSSQL=false WORKSPACE_INSTALL_NODE=false WORKSPACE_INSTALL_YARN=false WORKSPACE_INSTALL_DRUSH=false -WORKSPACE_INSTALL_AEROSPIKE_EXTENSION=false -WORKSPACE_INSTALL_V8JS_EXTENSION=false +WORKSPACE_INSTALL_AEROSPIKE=false +WORKSPACE_INSTALL_V8JS=false WORKSPACE_COMPOSER_GLOBAL_INSTALL=false WORKSPACE_INSTALL_WORKSPACE_SSH=false WORKSPACE_INSTALL_LARAVEL_ENVOY=false @@ -63,7 +63,7 @@ PHP_FPM_INSTALL_PHPREDIS=false PHP_FPM_INSTALL_MEMCACHED=false PHP_FPM_INSTALL_OPCACHE=false PHP_FPM_INSTALL_EXIF=false -PHP_FPM_INSTALL_AEROSPIKE_EXTENSION=false +PHP_FPM_INSTALL_AEROSPIKE=false PHP_FPM_INSTALL_MYSQLI=false PHP_FPM_INSTALL_TOKENIZER=false PHP_FPM_INSTALL_INTL=false diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 124bd49b..3ad2ad86 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -148,11 +148,11 @@ RUN if [ ${INSTALL_EXIF} = true ]; then \ # PHP Aerospike: ##################################### -ARG INSTALL_AEROSPIKE_EXTENSION=false -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=false +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 4ee90e80..99fda381 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -156,11 +156,11 @@ RUN if [ ${INSTALL_EXIF} = true ]; then \ # PHP Aerospike: ##################################### -ARG INSTALL_AEROSPIKE_EXTENSION=false -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=false +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index a971c0e1..a635df08 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -156,11 +156,11 @@ RUN if [ ${INSTALL_EXIF} = true ]; then \ # PHP Aerospike: ##################################### -ARG INSTALL_AEROSPIKE_EXTENSION=false -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=false +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index a306ae03..73ffd034 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -278,13 +278,13 @@ RUN if [ ${INSTALL_YARN} = true ]; then \ ##################################### USER root -ARG INSTALL_AEROSPIKE_EXTENSION=true -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=true +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /etc/php/5.6/cli/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ @@ -298,7 +298,7 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ && rm /tmp/aerospike-client-php.tar.gz \ ;fi -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = false ]; then \ rm /etc/php/5.6/cli/conf.d/aerospike.ini \ ;fi diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 82c76a55..ade5d0c4 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -278,13 +278,13 @@ RUN if [ ${INSTALL_YARN} = true ]; then \ ##################################### USER root -ARG INSTALL_AEROSPIKE_EXTENSION=true -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=true +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /etc/php/7.0/cli/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ @@ -298,7 +298,7 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ && rm /tmp/aerospike-client-php.tar.gz \ ;fi -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = false ]; then \ rm /etc/php/7.0/cli/conf.d/aerospike.ini \ ;fi @@ -307,10 +307,10 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ ##################################### USER root -ARG INSTALL_V8JS_EXTENSION=false -ENV INSTALL_V8JS_EXTENSION ${INSTALL_V8JS_EXTENSION} +ARG INSTALL_V8JS=false +ENV INSTALL_V8JS ${INSTALL_V8JS} -RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_V8JS} = true ]; then \ # Install the php V8JS extension add-apt-repository -y ppa:pinepain/libv8-5.4 \ && apt-get update -yqq \ diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index b01ce514..acc13354 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -274,13 +274,13 @@ RUN if [ ${INSTALL_YARN} = true ]; then \ ##################################### USER root -ARG INSTALL_AEROSPIKE_EXTENSION=true -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=true +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /etc/php/7.1/cli/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ @@ -294,7 +294,7 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ && rm /tmp/aerospike-client-php.tar.gz \ ;fi -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = false ]; then \ rm /etc/php/7.1/cli/conf.d/aerospike.ini \ ;fi @@ -303,10 +303,10 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ ##################################### USER root -ARG INSTALL_V8JS_EXTENSION=false -ENV INSTALL_V8JS_EXTENSION ${INSTALL_V8JS_EXTENSION} +ARG INSTALL_V8JS=false +ENV INSTALL_V8JS ${INSTALL_V8JS} -RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_V8JS} = true ]; then \ # Install the php V8JS extension add-apt-repository -y ppa:pinepain/libv8-5.4 \ && apt-get update -yqq \ From 313422144582fa98808b17609de9fbe0ceb0a6ba Mon Sep 17 00:00:00 2001 From: Winfried Date: Sun, 7 May 2017 16:56:15 +0200 Subject: [PATCH 033/313] Fixing aerospike --- php-fpm/Dockerfile-71 | 11 ++++++++++- workspace/Dockerfile-71 | 6 +++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index a635df08..ba8101fc 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -158,9 +158,15 @@ RUN if [ ${INSTALL_EXIF} = true ]; then \ ARG INSTALL_AEROSPIKE=false ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} + # Copy aerospike configration for remote debugging COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini + RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ + # Fix dependencies for PHPUnit within aerospike extension + apt-get update -yqq && \ + apt-get -y install sudo wget && \ + # Install the php aerospike extension curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ @@ -172,7 +178,10 @@ RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ && make install \ ) \ && rm /tmp/aerospike-client-php.tar.gz \ - && docker-php-ext-enable aerospike \ +;fi + +RUN if [ ${INSTALL_AEROSPIKE} = false ]; then \ + rm /usr/local/etc/php/conf.d/aerospike.ini \ ;fi ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index acc13354..e29e2217 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -274,13 +274,17 @@ RUN if [ ${INSTALL_YARN} = true ]; then \ ##################################### USER root -ARG INSTALL_AEROSPIKE=true +ARG INSTALL_AEROSPIKE=false ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /etc/php/7.1/cli/conf.d/aerospike.ini RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ + # Fix dependencies for PHPUnit within aerospike extension + apt-get update -yqq && \ + apt-get -y install sudo wget && \ + # Install the php aerospike extension curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ From a414e5434ff1ff8593f755944b13edf37232c8a7 Mon Sep 17 00:00:00 2001 From: Winfried Date: Sun, 7 May 2017 17:58:44 +0200 Subject: [PATCH 034/313] Adding system distro/version to issue template --- .github/ISSUE_TEMPLATE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 84d4624e..4cb3eea4 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -2,6 +2,7 @@ - Docker version (`$ docker --version`): - Laradock commit (`$ git rev-parse HEAD`): - System info (Mac, PC, Linux): +- System info disto/version: ### Issue: ##### What seems to be going wrong? From c539c630edd08391260e1000fe1403f81ee2bee9 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Mon, 8 May 2017 00:00:19 +0800 Subject: [PATCH 035/313] fix hugo doc build failed --- travis-build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/travis-build.sh b/travis-build.sh index 66223d03..fa7e5773 100755 --- a/travis-build.sh +++ b/travis-build.sh @@ -30,7 +30,9 @@ if [ -n "${HUGO_VERSION}" ]; then mv ./${HUGO_BIN}/${HUGO_BIN} $HOME/bin/hugo # Remove existing docs - rm -r ./docs + if [ -d "./docs" ]; then + rm -r ./docs + fi # Build docs cd DOCUMENTATION From 31d21c74a0e541d1e7c9be15e13b51dbba03b50c Mon Sep 17 00:00:00 2001 From: wxb Date: Mon, 8 May 2017 01:42:46 +0800 Subject: [PATCH 036/313] add swoole extension config --- env-example | 1 + php-fpm/Dockerfile-56 | 11 +++++++++++ php-fpm/Dockerfile-70 | 11 +++++++++++ php-fpm/Dockerfile-71 | 13 ++++++++++++- 4 files changed, 35 insertions(+), 1 deletion(-) diff --git a/env-example b/env-example index 2a38efb5..96d95b84 100644 --- a/env-example +++ b/env-example @@ -68,6 +68,7 @@ PHP_FPM_INSTALL_MYSQLI=false PHP_FPM_INSTALL_TOKENIZER=false PHP_FPM_INSTALL_INTL=false PHP_FPM_INSTALL_GHOSTSCRIPT=false +PHP_FPM_INSTALL_SWOOLE=false ### NGINX ############################################################################################################## diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 3ad2ad86..761ef299 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -92,6 +92,17 @@ RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ && docker-php-ext-enable redis \ ;fi +##################################### +# Swoole EXTENSION FOR PHP 5 +##################################### + +ARG INSTALL_SWOOLE=false +RUN if [ ${INSTALL_SWOOLE} = true ]; then \ + # Install Php Swoole Extension + pecl install swoole \ + && docker-php-ext-enable swoole \ +;fi + ##################################### # MongoDB: ##################################### diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 99fda381..9c39fa17 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -89,6 +89,17 @@ RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ && docker-php-ext-enable redis \ ;fi +##################################### +# Swoole EXTENSION FOR PHP 7 +##################################### + +ARG INSTALL_SWOOLE=false +RUN if [ ${INSTALL_SWOOLE} = true ]; then \ + # Install Php Swoole Extension + pecl install swoole \ + && docker-php-ext-enable swoole \ +;fi + ##################################### # MongoDB: ##################################### diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index ba8101fc..668f29e1 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -89,6 +89,17 @@ RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ && docker-php-ext-enable redis \ ;fi +##################################### +# Swoole EXTENSION FOR PHP 7 +##################################### + +ARG INSTALL_SWOOLE=false +RUN if [ ${INSTALL_SWOOLE} = true ]; then \ + # Install Php Swoole Extension + pecl install swoole \ + && docker-php-ext-enable swoole \ +;fi + ##################################### # MongoDB: ##################################### @@ -166,7 +177,7 @@ RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Fix dependencies for PHPUnit within aerospike extension apt-get update -yqq && \ apt-get -y install sudo wget && \ - + # Install the php aerospike extension curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ From 3796f9f70af507856c861a89bc5572626443a8e9 Mon Sep 17 00:00:00 2001 From: ZeroC0D3 Team Date: Mon, 8 May 2017 06:20:43 +0700 Subject: [PATCH 037/313] Add network setup in Jenkins container --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 3db26275..dbe5fbe7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -568,6 +568,10 @@ services: volumes: - ${JENKINS_HOME}:/var/jenkins_home - /var/run/docker.sock:/var/run/docker.sock + networks: + - frontend + - backend + ### Networks Setup ############################################ From 533c8fc7f7a4340fd6e30d1b8b7400b6e119aab3 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Mon, 8 May 2017 22:26:10 +0800 Subject: [PATCH 038/313] mysql create multiple database. --- docker-compose.yml | 1 + mysql/docker-entrypoint-initdb.d/.gitignore | 1 + mysql/docker-entrypoint-initdb.d/createdb.sql.example | 8 ++++++++ 3 files changed, 10 insertions(+) create mode 100644 mysql/docker-entrypoint-initdb.d/.gitignore create mode 100644 mysql/docker-entrypoint-initdb.d/createdb.sql.example diff --git a/docker-compose.yml b/docker-compose.yml index 0f0582e2..7cca302d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -194,6 +194,7 @@ services: - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} volumes: - ${DATA_SAVE_PATH}/mysql:/var/lib/mysql + - ./mysql/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d ports: - "${MYSQL_PORT}:3306" networks: diff --git a/mysql/docker-entrypoint-initdb.d/.gitignore b/mysql/docker-entrypoint-initdb.d/.gitignore new file mode 100644 index 00000000..d1b811b7 --- /dev/null +++ b/mysql/docker-entrypoint-initdb.d/.gitignore @@ -0,0 +1 @@ +*.sql diff --git a/mysql/docker-entrypoint-initdb.d/createdb.sql.example b/mysql/docker-entrypoint-initdb.d/createdb.sql.example new file mode 100644 index 00000000..07b277ea --- /dev/null +++ b/mysql/docker-entrypoint-initdb.d/createdb.sql.example @@ -0,0 +1,8 @@ +### +### Copy createdb.sql.example to createdb.sql +### then uncomment and set database name to create you need databases +### + +#CREATE DATABASE IF NOT EXISTS `dev_db_1` ; +#CREATE DATABASE IF NOT EXISTS `dev_db_2` ; +#CREATE DATABASE IF NOT EXISTS `dev_db_3` ; From e1e98303480459cbf4d402fa7a1c71fed308343c Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Mon, 8 May 2017 23:49:37 +0800 Subject: [PATCH 039/313] mariadb container create multiple database. --- mariadb/docker-entrypoint-initdb.d/.gitignore | 1 + mariadb/docker-entrypoint-initdb.d/createdb.sql.example | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 mariadb/docker-entrypoint-initdb.d/.gitignore create mode 100644 mariadb/docker-entrypoint-initdb.d/createdb.sql.example diff --git a/mariadb/docker-entrypoint-initdb.d/.gitignore b/mariadb/docker-entrypoint-initdb.d/.gitignore new file mode 100644 index 00000000..d1b811b7 --- /dev/null +++ b/mariadb/docker-entrypoint-initdb.d/.gitignore @@ -0,0 +1 @@ +*.sql diff --git a/mariadb/docker-entrypoint-initdb.d/createdb.sql.example b/mariadb/docker-entrypoint-initdb.d/createdb.sql.example new file mode 100644 index 00000000..07b277ea --- /dev/null +++ b/mariadb/docker-entrypoint-initdb.d/createdb.sql.example @@ -0,0 +1,8 @@ +### +### Copy createdb.sql.example to createdb.sql +### then uncomment and set database name to create you need databases +### + +#CREATE DATABASE IF NOT EXISTS `dev_db_1` ; +#CREATE DATABASE IF NOT EXISTS `dev_db_2` ; +#CREATE DATABASE IF NOT EXISTS `dev_db_3` ; From e2d60be3e51b8cc38321df760e509801d8e66c45 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Mon, 8 May 2017 23:50:19 +0800 Subject: [PATCH 040/313] percona container create multiple database. --- percona/docker-entrypoint-initdb.d/.gitignore | 1 + percona/docker-entrypoint-initdb.d/createdb.sql.example | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 percona/docker-entrypoint-initdb.d/.gitignore create mode 100644 percona/docker-entrypoint-initdb.d/createdb.sql.example diff --git a/percona/docker-entrypoint-initdb.d/.gitignore b/percona/docker-entrypoint-initdb.d/.gitignore new file mode 100644 index 00000000..d1b811b7 --- /dev/null +++ b/percona/docker-entrypoint-initdb.d/.gitignore @@ -0,0 +1 @@ +*.sql diff --git a/percona/docker-entrypoint-initdb.d/createdb.sql.example b/percona/docker-entrypoint-initdb.d/createdb.sql.example new file mode 100644 index 00000000..07b277ea --- /dev/null +++ b/percona/docker-entrypoint-initdb.d/createdb.sql.example @@ -0,0 +1,8 @@ +### +### Copy createdb.sql.example to createdb.sql +### then uncomment and set database name to create you need databases +### + +#CREATE DATABASE IF NOT EXISTS `dev_db_1` ; +#CREATE DATABASE IF NOT EXISTS `dev_db_2` ; +#CREATE DATABASE IF NOT EXISTS `dev_db_3` ; From 4661f1ab0e6e50a3d4359f6b02f346c174d8e9f1 Mon Sep 17 00:00:00 2001 From: Sascha Brendel Date: Tue, 9 May 2017 00:55:15 +0200 Subject: [PATCH 041/313] Improved caddy support to latest ENV-config. --- docker-compose.yml | 13 ++++++------- env-example | 6 ++++++ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7cca302d..43e72d0e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -399,16 +399,15 @@ services: caddy: build: ./caddy - ports: - - "80:80" - - "443:443" - - "2015:2015" volumes_from: - applications volumes: - - ./caddy/Caddyfile:/etc/Caddyfile - - ./logs/caddy:/var/log/caddy - - caddy:/root/.caddy + - ${CADDY_CUSTOM_CADDYFILE}:/etc/Caddyfile + - ${CADDY_HOST_LOG_PATH}:/var/log/caddy + - ${DATA_SAVE_PATH}:/root/.caddy + ports: + - "${CADDY_HOST_HTTP_PORT}:80" + - "${CADDY_HOST_HTTPS_PORT}:443" depends_on: - php-fpm networks: diff --git a/env-example b/env-example index 2a38efb5..deafc6e4 100644 --- a/env-example +++ b/env-example @@ -215,6 +215,12 @@ BLACKFIRE_CLIENT_TOKEN= BLACKFIRE_SERVER_ID= BLACKFIRE_SERVER_TOKEN= +### CADDY ############################################################################################################## + +CADDY_HOST_HTTP_PORT=80 +CADDY_HOST_HTTPS_PORT=443 +CADDY_HOST_LOG_PATH=./logs/caddy +CADDY_CUSTOM_CADDYFILE=./caddy/Caddyfile ##### TO BE CONTINUE ................................. From 546ef0ade610609316d15198d63674df234012cb Mon Sep 17 00:00:00 2001 From: Sascha Brendel Date: Tue, 9 May 2017 01:31:00 +0200 Subject: [PATCH 042/313] Added ENV support for aerospike, rethinkdb and mongodb. Part of #763. --- docker-compose.yml | 12 ++++++------ env-example | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7cca302d..53e9412a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -298,7 +298,7 @@ services: mongo: build: ./mongo ports: - - "27017:27017" + - "${MONGODB_PORT}:27017" volumes: - ${DATA_SAVE_PATH}/mongo:/data/db networks: @@ -309,7 +309,7 @@ services: rethinkdb: build: ./rethinkdb ports: - - "8090:8080" + - "${RETHINKDB_PORT}:8080" volumes: - ${DATA_SAVE_PATH}/rethinkdb:/data/rethinkdb_data networks: @@ -335,10 +335,10 @@ services: volumes: - ${DATA_SAVE_PATH}/aerospike:/opt/aerospike/data ports: - - "3000:3000" - - "3001:3001" - - "3002:3002" - - "3003:3003" + - "${AEROSPIKE_SERVICE_PORT}:3000" + - "${AEROSPIKE_FABRIC_PORT}:3001" + - "${AEROSPIKE_HEARTBEAT_PORT}:3002" + - "${AEROSPIKE_INFO_PORT}:3003" networks: - backend diff --git a/env-example b/env-example index 2a38efb5..ce3651f3 100644 --- a/env-example +++ b/env-example @@ -215,6 +215,20 @@ BLACKFIRE_CLIENT_TOKEN= BLACKFIRE_SERVER_ID= BLACKFIRE_SERVER_TOKEN= +### AEROSPIKE ########################################################################################################## + +AEROSPIKE_SERVICE_PORT=3000 +AEROSPIKE_FABRIC_PORT=3001 +AEROSPIKE_HEARTBEAT_PORT=3002 +AEROSPIKE_INFO_PORT=3003 + +### RETHINKDB ########################################################################################################## + +RETHINKDB_PORT=8090 + +### MONGODB ############################################################################################################ + +MONGODB_PORT=27017 ##### TO BE CONTINUE ................................. From b24d6224d9958992b8589198e632b1594b2901ab Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 11 May 2017 09:02:54 +0800 Subject: [PATCH 043/313] fixing MYSQL_USER not show other databases. --- .../createdb.sql.example | 28 ++++++++++++++++--- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/mysql/docker-entrypoint-initdb.d/createdb.sql.example b/mysql/docker-entrypoint-initdb.d/createdb.sql.example index 07b277ea..2b7c5157 100644 --- a/mysql/docker-entrypoint-initdb.d/createdb.sql.example +++ b/mysql/docker-entrypoint-initdb.d/createdb.sql.example @@ -1,8 +1,28 @@ ### ### Copy createdb.sql.example to createdb.sql -### then uncomment and set database name to create you need databases +### then uncomment then set database name and username to create you need databases +# +# example: .env MYSQL_USER=appuser and need db name is myshop_db +# +# CREATE DATABASE IF NOT EXISTS `myshop_db` ; +# GRANT ALL ON `myshop_db`.* TO 'appuser'@'%' ; +# +### +### this sql script is auto run when mysql container start and $DATA_SAVE_PATH/mysql not exists. +### +### if your $DATA_SAVE_PATH/mysql is exists and you do not want to delete it, you can run by manual execution: +### +### docker-compose exec mysql bash +### mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql ### -#CREATE DATABASE IF NOT EXISTS `dev_db_1` ; -#CREATE DATABASE IF NOT EXISTS `dev_db_2` ; -#CREATE DATABASE IF NOT EXISTS `dev_db_3` ; +#CREATE DATABASE IF NOT EXISTS `dev_db_1` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_1`.* TO 'default'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_2` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_2`.* TO 'default'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_3` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_3`.* TO 'default'@'%' ; + +FLUSH PRIVILEGES ; From 4dfc794b6ea38b43b057f6477bab14017e343904 Mon Sep 17 00:00:00 2001 From: Cecil van Enter Date: Thu, 11 May 2017 22:37:00 +0200 Subject: [PATCH 044/313] correct xdebug sed in workspace --- workspace/Dockerfile-56 | 2 +- workspace/Dockerfile-70 | 2 +- workspace/Dockerfile-71 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 73ffd034..42d0256b 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -133,7 +133,7 @@ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands apt-get install -y --force-yes php5.6-xdebug && \ - sed -i 's/^/;/g' /etc/php/5.6/cli/conf.d/20-xdebug.ini && \ + sed -i 's/^;//g' /etc/php/5.6/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ ;fi # ADD for REMOTE debugging diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index ade5d0c4..9c7d5627 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -133,7 +133,7 @@ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands apt-get install -y --force-yes php7.0-xdebug && \ - sed -i 's/^/;/g' /etc/php/7.0/cli/conf.d/20-xdebug.ini && \ + sed -i 's/^;//g' /etc/php/7.0/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ ;fi # ADD for REMOTE debugging diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index e29e2217..71d865b3 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -129,7 +129,7 @@ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands apt-get install -y --force-yes php-xdebug && \ - sed -i 's/^/;/g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ + sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ ;fi # ADD for REMOTE debugging From 848398d44351c770f66d65f27d84a63012385a4c Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Fri, 12 May 2017 19:23:03 +0800 Subject: [PATCH 045/313] php-fpm service LDAP support --- docker-compose.yml | 1 + env-example | 1 + php-fpm/Dockerfile-56 | 12 ++++++++++++ php-fpm/Dockerfile-70 | 12 ++++++++++++ php-fpm/Dockerfile-71 | 12 ++++++++++++ 5 files changed, 38 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index c9fd0b50..08e22d68 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -72,6 +72,7 @@ services: - INSTALL_TOKENIZER=${PHP_FPM_INSTALL_TOKENIZER} - INSTALL_INTL=${PHP_FPM_INSTALL_INTL} - INSTALL_GHOSTSCRIPT=${PHP_FPM_INSTALL_GHOSTSCRIPT} + - INSTALL_LDAP=${PHP_FPM_INSTALL_LDAP} dockerfile: "Dockerfile-${PHP_VERSION}" volumes_from: - applications diff --git a/env-example b/env-example index 108022bc..7397b6d0 100644 --- a/env-example +++ b/env-example @@ -68,6 +68,7 @@ PHP_FPM_INSTALL_MYSQLI=false PHP_FPM_INSTALL_TOKENIZER=false PHP_FPM_INSTALL_INTL=false PHP_FPM_INSTALL_GHOSTSCRIPT=false +PHP_FPM_INSTALL_LDAP=false PHP_FPM_INSTALL_SWOOLE=false ### NGINX ############################################################################################################## diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 761ef299..1ce3276f 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -234,6 +234,18 @@ RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ apt-get install -y poppler-utils ghostscript \ ;fi +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \ + docker-php-ext-install ldap \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 9c39fa17..e442b650 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -243,6 +243,18 @@ RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ ghostscript \ ;fi +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \ + docker-php-ext-install ldap \ +;fi + ##################################### # SQL SERVER: ##################################### diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 668f29e1..c8b827c3 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -252,6 +252,18 @@ RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ ghostscript \ ;fi +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \ + docker-php-ext-install ldap \ +;fi + ##################################### # SQL SERVER: ##################################### From 41574fe0260c2d847ec4bd9643b07ba366d7e72a Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 12 May 2017 17:17:38 +0300 Subject: [PATCH 046/313] Fix #934. Add extra_hosts to php-worker container --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index c9fd0b50..147be88b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -97,6 +97,8 @@ services: - applications depends_on: - workspace + extra_hosts: + - "dockerhost:${DOCKER_HOST_IP}" networks: - backend From 855241d9667d68cbbb3515e57450ed02beea5a8f Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 13 May 2017 11:00:36 +0800 Subject: [PATCH 047/313] =?UTF-8?q?fix=20mariadb=20service=20create=20mult?= =?UTF-8?q?iple=20db=20solution=20user=20can=E2=80=99t=20see=20other=20db?= =?UTF-8?q?=20problem.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 1 + .../createdb.sql.example | 28 ++++++++++++++++--- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index c9fd0b50..1f39750f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -239,6 +239,7 @@ services: build: ./mariadb volumes: - ${DATA_SAVE_PATH}/mariadb:/var/lib/mysql + - ./mariadb/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d ports: - "${MARIADB_PORT}:3306" environment: diff --git a/mariadb/docker-entrypoint-initdb.d/createdb.sql.example b/mariadb/docker-entrypoint-initdb.d/createdb.sql.example index 07b277ea..243041cf 100644 --- a/mariadb/docker-entrypoint-initdb.d/createdb.sql.example +++ b/mariadb/docker-entrypoint-initdb.d/createdb.sql.example @@ -1,8 +1,28 @@ ### ### Copy createdb.sql.example to createdb.sql -### then uncomment and set database name to create you need databases +### then uncomment then set database name and username to create you need databases +# +# example: .env MYSQL_USER=appuser and need db name is myshop_db +# +# CREATE DATABASE IF NOT EXISTS `myshop_db` ; +# GRANT ALL ON `myshop_db`.* TO 'appuser'@'%' ; +# +### +### this sql script is auto run when mariadb container start and $DATA_SAVE_PATH/mariadb not exists. +### +### if your $DATA_SAVE_PATH/mariadb is exists and you do not want to delete it, you can run by manual execution: +### +### docker-compose exec mariadb bash +### mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql ### -#CREATE DATABASE IF NOT EXISTS `dev_db_1` ; -#CREATE DATABASE IF NOT EXISTS `dev_db_2` ; -#CREATE DATABASE IF NOT EXISTS `dev_db_3` ; +#CREATE DATABASE IF NOT EXISTS `dev_db_1` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_1`.* TO 'default'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_2` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_2`.* TO 'default'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_3` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_3`.* TO 'default'@'%' ; + +FLUSH PRIVILEGES ; From 20fddc6de7712dcc6bca8faabd677c8d0a017d49 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 13 May 2017 21:37:25 +0800 Subject: [PATCH 048/313] =?UTF-8?q?fix=20percona=20service=20create=20mult?= =?UTF-8?q?iple=20db=20solution=20user=20can=E2=80=99t=20see=20other=20db?= =?UTF-8?q?=20problem.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 1 + .../createdb.sql.example | 28 ++++++++++++++++--- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 677141c0..1a5bbee8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -215,6 +215,7 @@ services: - MYSQL_ROOT_PASSWORD=${PERCONA_ROOT_PASSWORD} volumes: - percona:/var/lib/mysql + - ./percona/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d ports: - "${PERCONA_PORT}:3306" networks: diff --git a/percona/docker-entrypoint-initdb.d/createdb.sql.example b/percona/docker-entrypoint-initdb.d/createdb.sql.example index 07b277ea..10b579cb 100644 --- a/percona/docker-entrypoint-initdb.d/createdb.sql.example +++ b/percona/docker-entrypoint-initdb.d/createdb.sql.example @@ -1,8 +1,28 @@ ### ### Copy createdb.sql.example to createdb.sql -### then uncomment and set database name to create you need databases +### then uncomment then set database name and username to create you need databases +# +# example: .env MYSQL_USER=appuser and need db name is myshop_db +# +# CREATE DATABASE IF NOT EXISTS `myshop_db` ; +# GRANT ALL ON `myshop_db`.* TO 'appuser'@'%' ; +# +### +### this sql script is auto run when percona container start and $DATA_SAVE_PATH/percona not exists. +### +### if your $DATA_SAVE_PATH/percona is exists and you do not want to delete it, you can run by manual execution: +### +### docker-compose exec percona bash +### mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql ### -#CREATE DATABASE IF NOT EXISTS `dev_db_1` ; -#CREATE DATABASE IF NOT EXISTS `dev_db_2` ; -#CREATE DATABASE IF NOT EXISTS `dev_db_3` ; +#CREATE DATABASE IF NOT EXISTS `dev_db_1` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_1`.* TO 'homestead'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_2` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_2`.* TO 'homestead'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_3` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_3`.* TO 'homestead'@'%' ; + +FLUSH PRIVILEGES ; From 6ff7f4a402b40c4d9b6277406403e54d1deb1cd5 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 13 May 2017 22:04:35 +0800 Subject: [PATCH 049/313] percona service use DATA_SAVE_PATH env var, same way mysql, mariadb. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 1a5bbee8..92c5d0a0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -214,7 +214,7 @@ services: - MYSQL_PASSWORD=${PERCONA_PASSWORD} - MYSQL_ROOT_PASSWORD=${PERCONA_ROOT_PASSWORD} volumes: - - percona:/var/lib/mysql + - ${DATA_SAVE_PATH}/percona:/var/lib/mysql - ./percona/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d ports: - "${PERCONA_PORT}:3306" From 895a24f3327a9f13456a13dfc200d55e23d5686e Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Sat, 13 May 2017 17:41:44 +0300 Subject: [PATCH 050/313] Adding amazing members to the Laradock team Welcome @sixlive and @bestlong :) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3fd399fa..94fe67a5 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,8 @@ A Docker PHP development environment that facilitates running **PHP** Apps on ** - [Dwi Fahni Denni](https://github.com/zeroc0d3) @zeroc0d3 - [Thor Erik](https://github.com/thorerik) @thorerik - [Winfried van Loon](https://github.com/winfried-van-loon) @winfried-van-loon +- [TJ Miller](https://github.com/sixlive) @sixlive +- [Yu-Lung Shao (Allen)](https://github.com/bestlong) @bestlong - Join Us. ## License From 35efcc4a7c83f557435cd0a1480dfa123131e8e1 Mon Sep 17 00:00:00 2001 From: Viktor Matushevskyi Date: Sat, 13 May 2017 20:51:19 +0300 Subject: [PATCH 051/313] Update index.md --- DOCUMENTATION/content/guides/index.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/DOCUMENTATION/content/guides/index.md b/DOCUMENTATION/content/guides/index.md index 5cb6ddc8..ffc0c3e6 100644 --- a/DOCUMENTATION/content/guides/index.md +++ b/DOCUMENTATION/content/guides/index.md @@ -55,6 +55,10 @@ $root@server:~/laravel/ cd laradock $root@server:~/laravel/laradock# curl -L https://github.com/docker/compose/releases/download/1.8.0/run.sh > /usr/local/bin/docker-compose $root@server:~/chmod +x /usr/local/bin/docker-compose ``` +## Enter the laradock folder and rename env-example to .env. +``` +$root@server:~/laravel/laradock# cp env-example .env +``` ## Create Your Laradock Containers @@ -138,8 +142,8 @@ And add `server_name` (your custom domain) ## Rebuild Your Nginx ``` -$root@server:~/laravel/laradock/nginx# docker-compose down -$root@server:~/laravel/laradock/nginx# docker-compose build nginx +$root@server:~/laravel/laradock# docker-compose down +$root@server:~/laravel/laradock# docker-compose build nginx ``` ## Re Run Your Containers MYSQL and NGINX From a1bc99ef4e72f9dec01da9349be1eed5174adad3 Mon Sep 17 00:00:00 2001 From: ZeroC0D3 Team Date: Sun, 14 May 2017 14:21:50 +0700 Subject: [PATCH 052/313] Update badges laradock --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 94fe67a5..269465c6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![](https://s19.postimg.org/jblfytw9f/laradock-logo.jpg) -[![Build Status](https://travis-ci.org/laradock/laradock.svg?branch=master)](https://travis-ci.org/laradock/laradock) +[![Build Status](https://travis-ci.org/laradock/laradock.svg?branch=master)](https://travis-ci.org/laradock/laradock) [![GitHub issues](https://img.shields.io/github/issues/laradock/laradock.svg)](https://github.com/laradock/laradock/issues) [![GitHub forks](https://img.shields.io/github/forks/laradock/laradock.svg)](https://github.com/laradock/laradock/network) [![GitHub stars](https://img.shields.io/github/stars/laradock/laradock.svg)](https://github.com/laradock/laradock/stargazers) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/laradock/laradock/master/LICENSE) > Use Docker first and learn about it later. From 01f6d8f03809710db82312f87092e1c50bf240c6 Mon Sep 17 00:00:00 2001 From: wxb Date: Mon, 15 May 2017 02:07:45 +0800 Subject: [PATCH 053/313] edit docker-compose.yml, add swoole config --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 92c5d0a0..c79ba6aa 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -73,6 +73,7 @@ services: - INSTALL_INTL=${PHP_FPM_INSTALL_INTL} - INSTALL_GHOSTSCRIPT=${PHP_FPM_INSTALL_GHOSTSCRIPT} - INSTALL_LDAP=${PHP_FPM_INSTALL_LDAP} + - INSTALL_SWOOLE=${PHP_FPM_INSTALL_SWOOLE} dockerfile: "Dockerfile-${PHP_VERSION}" volumes_from: - applications From 71364f962ec084b6e6680d091913aaf9b056de71 Mon Sep 17 00:00:00 2001 From: "Yu-Lung Shao (Allen)" Date: Fri, 19 May 2017 04:00:13 -0500 Subject: [PATCH 054/313] fix php-fpm show warning not install extension (#954) --- php-fpm/laravel.ini | 3 --- 1 file changed, 3 deletions(-) diff --git a/php-fpm/laravel.ini b/php-fpm/laravel.ini index fdf70e71..486a2cab 100644 --- a/php-fpm/laravel.ini +++ b/php-fpm/laravel.ini @@ -11,6 +11,3 @@ upload_max_filesize = 20M ; Sets max size of post data allowed. ; http://php.net/post-max-size post_max_size = 20M -; Enables the MSSQL extensions -extension=sqlsrv.so -extension=pdo_sqlsrv.so \ No newline at end of file From 43545cefd25841b064b37875a42a80d96388d3d0 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 20 May 2017 09:20:00 +0800 Subject: [PATCH 055/313] fixing PHP7.1 php-fpm mssql extension build failed --- php-fpm/Dockerfile-71 | 74 +++++++------------------------------------ 1 file changed, 12 insertions(+), 62 deletions(-) diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index c8b827c3..3a71dc21 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -267,76 +267,26 @@ RUN if [ ${INSTALL_LDAP} = true ]; then \ ##################################### # SQL SERVER: ##################################### + ARG INSTALL_MSSQL=false ENV INSTALL_MSSQL ${INSTALL_MSSQL} - RUN if [ ${INSTALL_MSSQL} = true ]; then \ ##################################### - # Install Depenencies: + # Ref from https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-adding-pdo_sqlsrv-and-sqlsrv-to-official-php-image ##################################### - apt-get update -yqq && \ - apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ - - ##################################### - # The following steps were taken from - # Microsoft's github account: - # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways - ##################################### - - # Add PHP 7 repository - # for Debian jessie - # And System upgrade - echo "deb http://packages.dotdeb.org jessie all" \ - | tee /etc/apt/sources.list.d/dotdeb.list \ - && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ - | apt-key add - \ + # Add Microsoft repo for Microsoft ODBC Driver 13 for Linux + apt-get update -yqq && apt-get install -y apt-transport-https \ + && curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ + && curl https://packages.microsoft.com/config/debian/8/prod.list > /etc/apt/sources.list.d/mssql-release.list \ && apt-get update -yqq \ - && apt-get upgrade -qq && \ - # Install UnixODBC - # Compile odbc_config as it is not part of unixodbc package - apt-get update -yqq && \ - apt-get install -y whiptail \ - unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ - && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ - && cd unixodbc-*/ \ - && ./configure && make && make install \ - && cp -v ./exe/odbc_config /usr/local/bin/ && \ + # Install Dependencies + && ACCEPT_EULA=Y apt-get install -y unixodbc unixodbc-dev libgss3 odbcinst msodbcsql locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen \ - # Fake uname for install.sh - printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ - | tee /usr/local/bin/uname \ - && chmod +x /usr/local/bin/uname && \ - - # Microsoft ODBC Driver 13 for Linux - # Note: There's a copy of this tar on my hubiC - wget -nv -O msodbcsql-13.0.0.0.tar.gz \ - "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ - && tar -xf msodbcsql-13.0.0.0.tar.gz \ - && cd msodbcsql-*/ \ - && ldd lib64/libmsodbcsql-13.0.so.0.0 \ - && ./install.sh install --accept-license \ - && ls -l /opt/microsoft/msodbcsql/ \ - && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ - - - ##################################### - # Install sqlsrv y pdo_sqlsrv - # extensions: - ##################################### - - pecl install sqlsrv-4.0.8 && \ - pecl install pdo_sqlsrv-4.0.8 && \ - - ##################################### - # Set locales for the container - ##################################### - - apt-get install -y locales \ - && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ - && locale-gen \ - && echo "extension=sqlsrv.so" > /usr/local/etc/php/conf.d/20-sqlsrv.ini \ - && echo "extension=pdo_sqlsrv.so" > /usr/local/etc/php/conf.d/20-pdo_sqlsrv.ini \ + # Install pdo_sqlsrv and sqlsrv from PECL. Replace pdo_sqlsrv-4.1.8preview with preferred version. + && pecl install pdo_sqlsrv-4.1.8preview sqlsrv-4.1.8preview \ + && docker-php-ext-enable pdo_sqlsrv sqlsrv \ ;fi # From 5a8df95fd359a64cdf286255b029aeef5158b61b Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Sat, 20 May 2017 10:35:41 +0800 Subject: [PATCH 056/313] fixing PHP7.0 php-fpm mssql extension build failed --- php-fpm/Dockerfile-70 | 76 ++++++++----------------------------------- 1 file changed, 14 insertions(+), 62 deletions(-) diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index e442b650..b14adacb 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -258,76 +258,28 @@ RUN if [ ${INSTALL_LDAP} = true ]; then \ ##################################### # SQL SERVER: ##################################### + ARG INSTALL_MSSQL=false ENV INSTALL_MSSQL ${INSTALL_MSSQL} - RUN if [ ${INSTALL_MSSQL} = true ]; then \ ##################################### - # Install Depenencies: + # Ref from https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-adding-pdo_sqlsrv-and-sqlsrv-to-official-php-image ##################################### - apt-get update -yqq && \ - apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ - - ##################################### - # The following steps were taken from - # Microsoft's github account: - # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways - ##################################### - - # Add PHP 7 repository - # for Debian jessie - # And System upgrade - echo "deb http://packages.dotdeb.org jessie all" \ - | tee /etc/apt/sources.list.d/dotdeb.list \ - && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ - | apt-key add - \ + # Add Microsoft repo for Microsoft ODBC Driver 13 for Linux + apt-get update -yqq \ + && apt-get install -y apt-transport-https \ + && curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ + && curl https://packages.microsoft.com/config/debian/8/prod.list > /etc/apt/sources.list.d/mssql-release.list \ && apt-get update -yqq \ - && apt-get upgrade -qq && \ - # Install UnixODBC - # Compile odbc_config as it is not part of unixodbc package - apt-get update -yqq && \ - apt-get install -y whiptail \ - unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ - && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ - && cd unixodbc-*/ \ - && ./configure && make && make install \ - && cp -v ./exe/odbc_config /usr/local/bin/ && \ + # Install Dependencies + && ACCEPT_EULA=Y apt-get install -y unixodbc unixodbc-dev libgss3 odbcinst msodbcsql locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ - # Fake uname for install.sh - printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ - | tee /usr/local/bin/uname \ - && chmod +x /usr/local/bin/uname && \ - - # Microsoft ODBC Driver 13 for Linux - # Note: There's a copy of this tar on my hubiC - wget -nv -O msodbcsql-13.0.0.0.tar.gz \ - "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ - && tar -xf msodbcsql-13.0.0.0.tar.gz \ - && cd msodbcsql-*/ \ - && ldd lib64/libmsodbcsql-13.0.so.0.0 \ - && ./install.sh install --accept-license \ - && ls -l /opt/microsoft/msodbcsql/ \ - && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ - - - ##################################### - # Install sqlsrv y pdo_sqlsrv - # extensions: - ##################################### - - pecl install sqlsrv-4.0.8 && \ - pecl install pdo_sqlsrv-4.0.8 && \ - - ##################################### - # Set locales for the container - ##################################### - - apt-get install -y locales \ - && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ - && locale-gen \ - && echo "extension=sqlsrv.so" > /usr/local/etc/php/conf.d/20-sqlsrv.ini \ - && echo "extension=pdo_sqlsrv.so" > /usr/local/etc/php/conf.d/20-pdo_sqlsrv.ini \ + # Install pdo_sqlsrv and sqlsrv from PECL. Replace pdo_sqlsrv-4.1.8preview with preferred version. + && pecl install pdo_sqlsrv-4.1.8preview sqlsrv-4.1.8preview \ + && docker-php-ext-enable pdo_sqlsrv sqlsrv \ ;fi # From bf4a5beb0be77eb952a5012c27f7e538f950c274 Mon Sep 17 00:00:00 2001 From: Colin Schoen Date: Mon, 22 May 2017 22:52:19 -0700 Subject: [PATCH 057/313] Fix typo (#962) sumit -> submit --- DOCUMENTATION/content/introduction/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index de23f371..120a3e51 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -108,7 +108,7 @@ You can choose, which tools to install in your workspace container and other con -If you can't find your Software in the list, build it yourself and sumit it. Contributions are welcomed :) +If you can't find your Software in the list, build it yourself and submit it. Contributions are welcomed :) From 9e81f92d583fb6812d1bae998250fe5ba1081579 Mon Sep 17 00:00:00 2001 From: avenli Date: Wed, 24 May 2017 14:47:12 +0800 Subject: [PATCH 058/313] fix mongodb php extension config --- workspace/Dockerfile-56 | 3 ++- workspace/Dockerfile-70 | 3 ++- workspace/Dockerfile-71 | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 42d0256b..9b2239e6 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -186,7 +186,8 @@ ENV INSTALL_MONGO ${INSTALL_MONGO} RUN if [ ${INSTALL_MONGO} = true ]; then \ # Install the mongodb extension pecl install mongodb && \ - echo "extension=mongodb.so" >> /etc/php/5.6/cli/conf.d/30-mongodb.ini \ + echo "extension=mongodb.so" >> /etc/php/5.6/mods-available/mongodb.ini && \ + ln -s /etc/php/5.6/mods-available/mongodb.ini /etc/php/5.6/cli/conf.d/30-mongodb.ini \ ;fi ##################################### diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 9c7d5627..e19c041a 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -186,7 +186,8 @@ ENV INSTALL_MONGO ${INSTALL_MONGO} RUN if [ ${INSTALL_MONGO} = true ]; then \ # Install the mongodb extension pecl install mongodb && \ - echo "extension=mongodb.so" >> /etc/php/7.0/cli/conf.d/30-mongodb.ini \ + echo "extension=mongodb.so" >> /etc/php/7.0/mods-available/mongodb.ini && \ + ln -s /etc/php/7.0/mods-available/mongodb.ini /etc/php/7.0/cli/conf.d/30-mongodb.ini \ ;fi ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 71d865b3..d26c6358 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -182,7 +182,8 @@ ENV INSTALL_MONGO ${INSTALL_MONGO} RUN if [ ${INSTALL_MONGO} = true ]; then \ # Install the mongodb extension pecl install mongodb && \ - echo "extension=mongodb.so" >> /etc/php/7.1/cli/conf.d/30-mongodb.ini \ + echo "extension=mongodb.so" >> /etc/php/7.1/mods-available/mongodb.ini && \ + ln -s /etc/php/7.1/mods-available/mongodb.ini /etc/php/7.1/cli/conf.d/30-mongodb.ini \ ;fi ##################################### From fc8ffe573163b6f74894e51449bc474bef471506 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Fri, 19 May 2017 19:47:57 +0800 Subject: [PATCH 059/313] using set -x could produce more debug info. --- travis-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-build.sh b/travis-build.sh index fa7e5773..9d47e09b 100755 --- a/travis-build.sh +++ b/travis-build.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash #### halt script on error -set -e +set -xe echo '##### Print docker version' docker --version From d4caddcaeda92aa4639d2cc26254d4a9bfab2b36 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 25 May 2017 09:56:14 +0800 Subject: [PATCH 060/313] move default config DATA_SAVE_PATH from /tmp to ~/.laradocc/data avoid lost data and windows no have /tmp folder. --- env-example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env-example b/env-example index 7397b6d0..05731550 100644 --- a/env-example +++ b/env-example @@ -10,7 +10,7 @@ APPLICATION=../ ### Data Path: # For all storage systems. -DATA_SAVE_PATH=/tmp +DATA_SAVE_PATH=~/laradock/data ### PHP version # Applies to the Workspace and PHP-FPM containers (Does not apply to HHVM) From c913c429c094f9b1b5dd81205cf931216c3869d7 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 25 May 2017 10:04:41 +0800 Subject: [PATCH 061/313] change DATA_SAVE_PATH --- env-example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env-example b/env-example index 05731550..a1fa108d 100644 --- a/env-example +++ b/env-example @@ -10,7 +10,7 @@ APPLICATION=../ ### Data Path: # For all storage systems. -DATA_SAVE_PATH=~/laradock/data +DATA_SAVE_PATH=~/.laradock/data ### PHP version # Applies to the Workspace and PHP-FPM containers (Does not apply to HHVM) From f3a016aa796f69d70595a8fe5375a30fe5af5ec8 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 25 May 2017 16:44:51 +0800 Subject: [PATCH 062/313] adminer support mssql --- adminer/Dockerfile | 17 +++++++++++++++++ docker-compose.yml | 5 ++++- env-example | 1 + 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/adminer/Dockerfile b/adminer/Dockerfile index 6117454f..818c8e13 100644 --- a/adminer/Dockerfile +++ b/adminer/Dockerfile @@ -8,5 +8,22 @@ MAINTAINER Patrick Artounian # Add volume for sessions to allow session persistence VOLUME /sessions +##################################### +# SQL SERVER: +##################################### +USER root +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + set -xe \ + && apk --update add --no-cache --virtual .phpize-deps $PHPIZE_DEPS unixodbc unixodbc-dev \ + && pecl channel-update pecl.php.net \ + && pecl install pdo_sqlsrv-4.1.8preview sqlsrv-4.1.8preview \ + && echo "extension=sqlsrv.so" > /usr/local/etc/php/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /usr/local/etc/php/conf.d/20-pdo_sqlsrv.ini \ +;fi + +USER adminer + # We expose Adminer on port 8080 (Adminer's default) EXPOSE 8080 diff --git a/docker-compose.yml b/docker-compose.yml index c79ba6aa..f05663c2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -440,7 +440,10 @@ services: ### Adminer Container #################################### adminer: - build: ./adminer + build: + context: ./adminer + args: + - INSTALL_MSSQL=${ADM_INSTALL_MSSQL} ports: - "${ADM_PORT}:8080" depends_on: diff --git a/env-example b/env-example index a1fa108d..7ec7e921 100644 --- a/env-example +++ b/env-example @@ -161,6 +161,7 @@ MINIO_PORT=9000 ### ADMINER ############################################################################################################ ADM_PORT=8080 +ADM_INSTALL_MSSQL=false ### PHP MY ADMIN ####################################################################################################### From f04acee6dfc3a8e2dba93f8a76cddcd73c5336ed Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 25 May 2017 20:04:21 +0800 Subject: [PATCH 063/313] fix jenkins permission denied --- jenkins/install-plugins.sh | 0 jenkins/jenkins-support | 0 jenkins/jenkins.sh | 0 jenkins/plugins.sh | 0 jenkins/publish.sh | 0 jenkins/update-official-library.sh | 0 6 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 jenkins/install-plugins.sh mode change 100644 => 100755 jenkins/jenkins-support mode change 100644 => 100755 jenkins/jenkins.sh mode change 100644 => 100755 jenkins/plugins.sh mode change 100644 => 100755 jenkins/publish.sh mode change 100644 => 100755 jenkins/update-official-library.sh diff --git a/jenkins/install-plugins.sh b/jenkins/install-plugins.sh old mode 100644 new mode 100755 diff --git a/jenkins/jenkins-support b/jenkins/jenkins-support old mode 100644 new mode 100755 diff --git a/jenkins/jenkins.sh b/jenkins/jenkins.sh old mode 100644 new mode 100755 diff --git a/jenkins/plugins.sh b/jenkins/plugins.sh old mode 100644 new mode 100755 diff --git a/jenkins/publish.sh b/jenkins/publish.sh old mode 100644 new mode 100755 diff --git a/jenkins/update-official-library.sh b/jenkins/update-official-library.sh old mode 100644 new mode 100755 From 5a4708085918076837cd0a10200858ce04f64d08 Mon Sep 17 00:00:00 2001 From: Lawrence Eldridge Date: Sat, 27 May 2017 14:07:45 +0100 Subject: [PATCH 064/313] This issue relates to https://github.com/laradock/laradock/issues/563, which also occurs on Mac. This has been one of the solutions proposed. --- workspace/Dockerfile-56 | 8 ++++++-- workspace/Dockerfile-70 | 8 ++++++-- workspace/Dockerfile-71 | 8 ++++++-- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 42d0256b..e50c830f 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -117,13 +117,17 @@ COPY ./aliases.sh /home/laradock/aliases.sh RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh USER root RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh ##################################### # xDebug: diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 9c7d5627..7f551d25 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -117,13 +117,17 @@ COPY ./aliases.sh /home/laradock/aliases.sh RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh USER root RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh ##################################### # xDebug: diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 71d865b3..786d43cd 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -113,13 +113,17 @@ COPY ./aliases.sh /home/laradock/aliases.sh RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh USER root RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh ##################################### # xDebug: From da60b32a045e72bc9fdd45616ade987806de9c97 Mon Sep 17 00:00:00 2001 From: Mirko Date: Sat, 27 May 2017 15:24:50 +0200 Subject: [PATCH 065/313] add laravel echo server --- docker-compose.yml | 14 ++++++++++++++ env-example | 4 ++++ laravel-echo-server/Dockerfile | 15 +++++++++++++++ laravel-echo-server/laravel-echo-server.json | 19 +++++++++++++++++++ laravel-echo-server/package.json | 12 ++++++++++++ 5 files changed, 64 insertions(+) create mode 100644 laravel-echo-server/Dockerfile create mode 100644 laravel-echo-server/laravel-echo-server.json create mode 100644 laravel-echo-server/package.json diff --git a/docker-compose.yml b/docker-compose.yml index f05663c2..698f2890 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -566,6 +566,7 @@ services: - proxy2 ### Jenkins ################################################### + jenkins: build: ./jenkins environment: @@ -581,6 +582,19 @@ services: - frontend - backend +### Laravel Echo Server ####################################### + laravel-echo-server: + build: + context: ./laravel-echo-server + volumes: + - ./laravel-echo-server/laravel-echo-server.json:/app/laravel-echo-server.json:ro + ports: + - "${LARAVEL_ECHO_SERVER_PORT}:6001" + links: + - redis + networks: + - frontend + - backend ### Networks Setup ############################################ diff --git a/env-example b/env-example index 7ec7e921..8ff3134b 100644 --- a/env-example +++ b/env-example @@ -240,6 +240,10 @@ CADDY_HOST_HTTPS_PORT=443 CADDY_HOST_LOG_PATH=./logs/caddy CADDY_CUSTOM_CADDYFILE=./caddy/Caddyfile +### LARAVEL ECHO SERVER ################################################################################################ + +LARAVEL_ECHO_SERVER_PORT=6001 + ##### TO BE CONTINUE ................................. diff --git a/laravel-echo-server/Dockerfile b/laravel-echo-server/Dockerfile new file mode 100644 index 00000000..5074a1f8 --- /dev/null +++ b/laravel-echo-server/Dockerfile @@ -0,0 +1,15 @@ +FROM node:argon + +# Create app directory +RUN mkdir -p /usr/src/app +WORKDIR /usr/src/app + +# Install app dependencies +COPY package.json /usr/src/app/ +RUN npm install + +# Bundle app source +COPY laravel-echo-server.json /usr/src/app/laravel-echo-server.json + +EXPOSE 3000 +CMD [ "npm", "start" ] \ No newline at end of file diff --git a/laravel-echo-server/laravel-echo-server.json b/laravel-echo-server/laravel-echo-server.json new file mode 100644 index 00000000..0a98ef90 --- /dev/null +++ b/laravel-echo-server/laravel-echo-server.json @@ -0,0 +1,19 @@ +{ + "authHost": "localhost", + "authEndpoint": "/broadcasting/auth", + "clients": [], + "database": "redis", + "databaseConfig": { + "redis": { + "port": "6379", + "host": "redis" + } + }, + "devMode": true, + "host": null, + "port": "6001", + "protocol": "http", + "socketio": {}, + "sslCertPath": "", + "sslKeyPath": "" +} \ No newline at end of file diff --git a/laravel-echo-server/package.json b/laravel-echo-server/package.json new file mode 100644 index 00000000..2784a039 --- /dev/null +++ b/laravel-echo-server/package.json @@ -0,0 +1,12 @@ +{ + "name": "laravel-echo-server-docker", + "description": "Docker container for running laravel-echo-server", + "version": "0.0.1", + "license": "MIT", + "dependencies": { + "laravel-echo-server": "^1.2.8" + }, + "scripts": { + "start": "laravel-echo-server start" + } +} \ No newline at end of file From e23ecb6a116eeec4b35cf6a82b6e54a8edbf7328 Mon Sep 17 00:00:00 2001 From: Diego Vieira Date: Tue, 30 May 2017 15:05:09 +0100 Subject: [PATCH 066/313] fix mssql startup (#985) - Sleep 45s is invalid - /opt/mssql/bin/sqlservr is the correct path for mssql binary --- mssql/create_table.sh | 2 +- mssql/entrypoint.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mssql/create_table.sh b/mssql/create_table.sh index f0c1a7c6..9fe5214c 100644 --- a/mssql/create_table.sh +++ b/mssql/create_table.sh @@ -1,5 +1,5 @@ #wait for the SQL Server to come up -sleep 45s +sleep 45 #run the setup script to create the DB and the schema in the DB /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P $SA_PASSWORD -d master -i setup.sql \ No newline at end of file diff --git a/mssql/entrypoint.sh b/mssql/entrypoint.sh index e3835130..062293b8 100644 --- a/mssql/entrypoint.sh +++ b/mssql/entrypoint.sh @@ -1,2 +1,2 @@ #start SQL Server, start the script to create the DB and import the data, start the app -/opt/mssql/bin/sqlservr.sh & /usr/src/app/create_table.sh & tail -f /dev/null \ No newline at end of file +/opt/mssql/bin/sqlservr & /usr/src/app/create_table.sh & tail -f /dev/null From d0c0a8895efcc36d89f03e8869ad971bd2704d4a Mon Sep 17 00:00:00 2001 From: Lawrence Eldridge Date: Tue, 30 May 2017 15:05:30 +0100 Subject: [PATCH 067/313] add global instance of larval installer for fresh projects. (#988) --- docker-compose.yml | 1 + env-example | 1 + workspace/Dockerfile-56 | 17 +++++++++++++++++ workspace/Dockerfile-70 | 17 +++++++++++++++++ workspace/Dockerfile-71 | 17 +++++++++++++++++ 5 files changed, 53 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index f05663c2..93c6663e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -28,6 +28,7 @@ services: - COMPOSER_GLOBAL_INSTALL=${WORKSPACE_COMPOSER_GLOBAL_INSTALL} - INSTALL_WORKSPACE_SSH=${WORKSPACE_INSTALL_WORKSPACE_SSH} - INSTALL_LARAVEL_ENVOY=${WORKSPACE_INSTALL_LARAVEL_ENVOY} + - INSTALL_LARAVEL_INSTALLER=${WORKSPACE_INSTALL_LARAVEL_INSTALLER} - INSTALL_DEPLOYER=${WORKSPACE_INSTALL_DEPLOYER} - INSTALL_LINUXBREW=${WORKSPACE_INSTALL_LINUXBREW} - INSTALL_MC=${WORKSPACE_INSTALL_MC} diff --git a/env-example b/env-example index 7ec7e921..fc4832da 100644 --- a/env-example +++ b/env-example @@ -41,6 +41,7 @@ WORKSPACE_INSTALL_V8JS=false WORKSPACE_COMPOSER_GLOBAL_INSTALL=false WORKSPACE_INSTALL_WORKSPACE_SSH=false WORKSPACE_INSTALL_LARAVEL_ENVOY=false +WORKSPACE_INSTALL_LARAVEL_INSTALLER=false WORKSPACE_INSTALL_DEPLOYER=false WORKSPACE_INSTALL_LINUXBREW=false WORKSPACE_INSTALL_MC=false diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 42d0256b..2ae0a6cd 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -333,6 +333,23 @@ RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then \ composer global require "laravel/envoy=~1.0" \ ;fi +##################################### +# Laravel Installer: +##################################### +USER root + +ARG INSTALL_LARAVEL_INSTALLER=true +ENV INSTALL_LARAVEL_INSTALLER ${INSTALL_LARAVEL_INSTALLER} + +RUN if [ ${INSTALL_LARAVEL_INSTALLER} = true ]; then \ + # Install the Laravel Installer + echo "" >> ~/.bashrc && \ + echo 'export PATH="~/.composer/vendor/bin:$PATH"' >> ~/.bashrc \ + && composer global require "laravel/installer" \ +;fi + +USER laradock + ##################################### # Deployer: ##################################### diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 9c7d5627..00747d81 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -350,6 +350,23 @@ RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then \ composer global require "laravel/envoy=~1.0" \ ;fi +##################################### +# Laravel Installer: +##################################### +USER root + +ARG INSTALL_LARAVEL_INSTALLER=true +ENV INSTALL_LARAVEL_INSTALLER ${INSTALL_LARAVEL_INSTALLER} + +RUN if [ ${INSTALL_LARAVEL_INSTALLER} = true ]; then \ + # Install the Laravel Installer + echo "" >> ~/.bashrc && \ + echo 'export PATH="~/.composer/vendor/bin:$PATH"' >> ~/.bashrc \ + && composer global require "laravel/installer" \ +;fi + +USER laradock + ##################################### # Deployer: ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 71d865b3..151df362 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -350,6 +350,23 @@ RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then \ composer global require "laravel/envoy=~1.0" \ ;fi +##################################### +# Laravel Installer: +##################################### +USER root + +ARG INSTALL_LARAVEL_INSTALLER=true +ENV INSTALL_LARAVEL_INSTALLER ${INSTALL_LARAVEL_INSTALLER} + +RUN if [ ${INSTALL_LARAVEL_INSTALLER} = true ]; then \ + # Install the Laravel Installer + echo "" >> ~/.bashrc && \ + echo 'export PATH="~/.composer/vendor/bin:$PATH"' >> ~/.bashrc \ + && composer global require "laravel/installer" \ +;fi + +USER laradock + ##################################### # Deployer: ##################################### From d0e5d507121209c343e1a50276bfe9435132788d Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 30 May 2017 17:41:11 +0300 Subject: [PATCH 068/313] Update readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 269465c6..daa9e6ff 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ A Docker PHP development environment that facilitates running **PHP** Apps on ** - [Winfried van Loon](https://github.com/winfried-van-loon) @winfried-van-loon - [TJ Miller](https://github.com/sixlive) @sixlive - [Yu-Lung Shao (Allen)](https://github.com/bestlong) @bestlong +- [Milan Urukalo](https://github.com/urukalo) @urukalo - Join Us. ## License From 0290142bf442badfcdf67ea3207d7df234077965 Mon Sep 17 00:00:00 2001 From: mycontroller Date: Tue, 23 May 2017 18:58:58 +0800 Subject: [PATCH 069/313] Dockerfile-56 fill missing MSSQL section --- php-fpm/Dockerfile-56 | 12 ++++++++++++ workspace/Dockerfile-56 | 11 +++++++++++ 2 files changed, 23 insertions(+) diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 1ce3276f..cad89a5d 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -246,6 +246,18 @@ RUN if [ ${INSTALL_LDAP} = true ]; then \ docker-php-ext-install ldap \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + apt-get -y install php5-sybase freetds-bin && \ + cp /usr/lib/php5/20131226/*.so /usr/local/lib/php/extensions/no-debug-non-zts-20131226/ && \ + docker-php-ext-enable mssql pdo pdo_dblib \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 0e7962cb..f945358d 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -400,6 +400,17 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ echo 'export LD_LIBRARY_PATH="$LINUXBREWHOME/lib64:$LINUXBREWHOME/lib:$LD_LIBRARY_PATH"' >> ~/.bashrc \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + apt-get -y install php5.6-sybase freetds-bin freetds-common libsybdb5 \ + && echo "extension=pdo_dblib.so" > /etc/php/5.6/cli/conf.d/20-pdo_dblib.ini \ +;fi + ##################################### # Minio: ##################################### From 430a5f21cfbb1660ba986cec3e5d2469feb11790 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Fri, 2 Jun 2017 13:53:13 +0800 Subject: [PATCH 070/313] git key to pull code git key to pull code --- caddy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/Dockerfile b/caddy/Dockerfile index b10a9f52..f183fbc9 100644 --- a/caddy/Dockerfile +++ b/caddy/Dockerfile @@ -8,7 +8,7 @@ LABEL caddy_version="$caddy_version" architecture="amd64" RUN apk update \ && apk upgrade \ - && apk add tar curl git + && apk add tar curl git openssh RUN curl --silent --show-error --fail --location \ --header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \ From 0561199914e0653e27ae3e3ecda4c36781d9c4a2 Mon Sep 17 00:00:00 2001 From: Mark Davidson Date: Sat, 3 Jun 2017 05:54:37 +0100 Subject: [PATCH 071/313] Add Kibana Container (#993) * Add Kibana Container * Add Kibana Port to env-example --- docker-compose.yml | 13 +++++++++++++ env-example | 4 ++++ kibana/Dockerfile | 3 +++ 3 files changed, 20 insertions(+) create mode 100644 kibana/Dockerfile diff --git a/docker-compose.yml b/docker-compose.yml index 38603d66..7e3a70f1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -481,6 +481,19 @@ services: - frontend - backend + +### Kibana Container ####################################### + + kibana: + build: ./kibana + ports: + - "${KIBANA_HTTP_PORT}:5601" + depends_on: + - elasticsearch + networks: + - frontend + - backend + ### Certbot Container ################################## certbot: diff --git a/env-example b/env-example index 13e495e8..f8ca6509 100644 --- a/env-example +++ b/env-example @@ -137,6 +137,10 @@ RABBITMQ_DEFAULT_PASS=guest ELASTICSEARCH_HOST_HTTP_PORT=9200 ELASTICSEARCH_HOST_TRANSPORT_PORT=9300 +### KIBANA ############################################################################################################# + +KIBANA_HTTP_PORT=5601 + ### MEMCACHED ########################################################################################################## MEMCACHED_HOST_PORT=11211 diff --git a/kibana/Dockerfile b/kibana/Dockerfile new file mode 100644 index 00000000..f90cebee --- /dev/null +++ b/kibana/Dockerfile @@ -0,0 +1,3 @@ +FROM kibana:latest + +EXPOSE 5601 \ No newline at end of file From 7207ccbbeb7d341037f366fd43600c7d1c078088 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Sun, 4 Jun 2017 07:29:13 -0500 Subject: [PATCH 072/313] upgrade caddy to 0.10.3 version (#994) --- caddy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/Dockerfile b/caddy/Dockerfile index b10a9f52..1e669ee7 100644 --- a/caddy/Dockerfile +++ b/caddy/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.4 MAINTAINER Eric Pfeiffer -ENV caddy_version=0.10.0 +ENV caddy_version=0.10.3 LABEL caddy_version="$caddy_version" architecture="amd64" From cbfd160cbfba8f88424594ee14e4def09cb80fbb Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Tue, 6 Jun 2017 18:11:31 +0800 Subject: [PATCH 073/313] Fix --- pgadmin/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgadmin/Dockerfile b/pgadmin/Dockerfile index 2d34c22b..7dd96068 100644 --- a/pgadmin/Dockerfile +++ b/pgadmin/Dockerfile @@ -1,4 +1,4 @@ -FROM fenglc/pgadmin4 +FROM chorss/docker-pgadmin4 MAINTAINER Bo-Yi Wu From 1bdf113767f63f5cc7f832368c187490164f2740 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Fri, 9 Jun 2017 17:33:10 +0300 Subject: [PATCH 074/313] update tools list in the docs --- DOCUMENTATION/content/introduction/index.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 120a3e51..115a79c6 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -83,17 +83,21 @@ In adhering to the separation of concerns principle as promoted by Docker, Larad You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm. - **Database Engines:** -MySQL - MariaDB - Percona - MongoDB - Neo4j - RethinkDB - MSSQL - PostgreSQL - Postgres Postgis. +MySQL - MariaDB - Percona - MongoDB - Neo4j - RethinkDB - MSSQL - PostgreSQL - Postgres-PostGIS. +- **Database Management:** +PhpMyAdmin - Adminer - PgAdmin - **Cache Engines:** Redis - Memcached - Aerospike - **PHP Servers:** NGINX - Apache2 - Caddy - **PHP Compilers:** PHP FPM - HHVM -- **Message Queuing:** -Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console - PHP Worker -- **Tools:** -HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varnish - PhpMyAdmin - Adminer - PgAdmin - MailHog - [Blackfire](https://blackfire.io)... +- **Message Queueing:** +Beanstalkd - RabbitMQ - PHP Worker +- **Queueing Management:** +Beanstalkd Console - RabbitMQ Console +- **Random Tools:** +HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Mailhog - Minio - Varnish - Swoole - Laravel Echo... Laradock introduces the **Workspace** Image, as a development environment. It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose. @@ -148,7 +152,7 @@ Most importantly Docker can run on Development and on Production (same environme What's better than a **Demo Video**: -- Laradock v5.* (soon or never) +- Laradock v5.* (should be next!) - Laradock [v4.*](https://www.youtube.com/watch?v=TQii1jDa96Y) - Laradock [v2.*](https://www.youtube.com/watch?v=-DamFMczwDA) - Laradock [v0.3](https://www.youtube.com/watch?v=jGkyO6Is_aI) From 05f8166bef6c3bdf769a71e3fd83368bd68722c3 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Fri, 9 Jun 2017 17:46:26 +0300 Subject: [PATCH 075/313] add PR template --- .github/PULL_REQUEST_TEMPLATE.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..567ed506 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,7 @@ +### Thank you for contributing to Laradock. + +##### Make sure you completed the basic 3 steps below: + +- [] I've read the simple [Contribution Guide](http://laradock.io/contributing). +- [] I've updated the **documentation**. (refer to [this](http://laradock.io/contributing/#update-the-documentation-site) for how to do so). +- [] I enjoyed my time contributing and making developer's life easier :) From 262b9f20a36adf0da547984fa799141f5606f2d2 Mon Sep 17 00:00:00 2001 From: Edmund Luong Date: Fri, 9 Jun 2017 11:00:42 -0400 Subject: [PATCH 076/313] Set default setting to false for the following options in workspace: - Laravel Envoy - Laravel Installer - LinuxBrew - MS SQL Server --- workspace/Dockerfile-71 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index c6bf635e..29f5b620 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -347,7 +347,7 @@ RUN echo "" >> ~/.bashrc && \ ##################################### USER laradock -ARG INSTALL_LARAVEL_ENVOY=true +ARG INSTALL_LARAVEL_ENVOY=false ENV INSTALL_LARAVEL_ENVOY ${INSTALL_LARAVEL_ENVOY} RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then \ @@ -360,7 +360,7 @@ RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then \ ##################################### USER root -ARG INSTALL_LARAVEL_INSTALLER=true +ARG INSTALL_LARAVEL_INSTALLER=false ENV INSTALL_LARAVEL_INSTALLER ${INSTALL_LARAVEL_INSTALLER} RUN if [ ${INSTALL_LARAVEL_INSTALLER} = true ]; then \ @@ -390,7 +390,7 @@ RUN if [ ${INSTALL_DEPLOYER} = true ]; then \ ##################################### USER root -ARG INSTALL_LINUXBREW=true +ARG INSTALL_LINUXBREW=false ENV INSTALL_LINUXBREW ${INSTALL_LINUXBREW} RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ @@ -420,7 +420,7 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ ##################################### # SQL SERVER: ##################################### -ARG INSTALL_MSSQL=true +ARG INSTALL_MSSQL=false ENV INSTALL_MSSQL ${INSTALL_MSSQL} RUN if [ ${INSTALL_MSSQL} = true ]; then \ From 30df311ec2df59f454764bcb6eca3a4f8fdade75 Mon Sep 17 00:00:00 2001 From: ItaloBC Date: Mon, 12 Jun 2017 13:02:08 -0400 Subject: [PATCH 077/313] Change to official repository Elastic.co announced they will pull out their official images from the Docker Registry and user their own. There will be no updates starting 6/20/2017. Pulling needs explicit version. Currently 5.4.1 --- kibana/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kibana/Dockerfile b/kibana/Dockerfile index f90cebee..572f15ac 100644 --- a/kibana/Dockerfile +++ b/kibana/Dockerfile @@ -1,3 +1,3 @@ -FROM kibana:latest +FROM docker.elastic.co/kibana/kibana:5.4.1 -EXPOSE 5601 \ No newline at end of file +EXPOSE 5601 From 03b551f9d6e622763a09e67c46fa93ce7379f814 Mon Sep 17 00:00:00 2001 From: ItaloBC Date: Mon, 12 Jun 2017 13:06:41 -0400 Subject: [PATCH 078/313] Change to official repository Elastic.co announced they will pull out their official images from the Docker Registry and user their own. There will be no updates starting 6/20/2017. Pulling needs explicit version. Currently 5.4.1 --- elasticsearch/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/elasticsearch/Dockerfile b/elasticsearch/Dockerfile index 363932e4..914761ee 100644 --- a/elasticsearch/Dockerfile +++ b/elasticsearch/Dockerfile @@ -1,5 +1,3 @@ -FROM elasticsearch:latest - -MAINTAINER Bo-Yi Wu +FROM docker.elastic.co/elasticsearch/elasticsearch:5.4.1 EXPOSE 9200 9300 From bbea2f0bab4fc208ce7240cd16554ffe2e33812a Mon Sep 17 00:00:00 2001 From: Michal Ardziejewski Date: Tue, 13 Jun 2017 00:55:05 +0200 Subject: [PATCH 079/313] Set Timezone --- mysql/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mysql/Dockerfile b/mysql/Dockerfile index e494b651..aada38f2 100644 --- a/mysql/Dockerfile +++ b/mysql/Dockerfile @@ -2,6 +2,14 @@ FROM mysql:5.7 MAINTAINER Mahmoud Zalt +##################################### +# Set Timezone +##################################### + +ARG TZ=UTC +ENV TZ ${TZ} +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + RUN chown -R mysql:root /var/lib/mysql/ ADD my.cnf /etc/mysql/conf.d/my.cnf From e56587ec472775780f9572bdd10731f92214fb6c Mon Sep 17 00:00:00 2001 From: Michal Ardziejewski Date: Tue, 13 Jun 2017 01:03:42 +0200 Subject: [PATCH 080/313] Added TZ environment for MySQL Container --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 7e3a70f1..ec9af2cf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -197,6 +197,7 @@ services: - MYSQL_USER=${MYSQL_USER} - MYSQL_PASSWORD=${MYSQL_PASSWORD} - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} + - TZ=${WORKSPACE_TIMEZONE} volumes: - ${DATA_SAVE_PATH}/mysql:/var/lib/mysql - ./mysql/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d From bbbd247653778e982c7f1bacbaa84ca6d0a3ab3e Mon Sep 17 00:00:00 2001 From: ItaloBC Date: Wed, 14 Jun 2017 14:19:47 -0400 Subject: [PATCH 081/313] ElasticSearch instance fails at loading (wrong) ElasticSearch (ES from now onwards) will fail to initialize since the parameters for its environment are not correct or absent. These are: * `cluster.name`: Name of the cluster itself * `bootstrap.memory_lock`: Needed for ES to [lock the JVM into swap instead of memory](https://www.elastic.co/guide/en/elasticsearch/reference/master/_memory_lock_check.html). * `"ES_JAVA_OPTS=-Xms256m -Xmx256m"`: [Initial and maximum HEAP size for JVM](https://www.elastic.co/guide/en/elasticsearch/reference/current/_heap_size_check.html). Since it's locked to disk, should be the same. Half the defaults (512m) for development. * `ulimits: memlock: soft (-1), hard (-1)`: [ES needs to have unlimited access to memory](https://www.elastic.co/guide/en/elasticsearch/reference/current/max-size-virtual-memory-check.html), otherwise it will feel sluggish. * `mem_limit: 512m`: Hard limit the memory available for the container. This can, and should, be changed using `.env` file variables, but it seems that this should suffice for basic ES development. --- docker-compose.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index ec9af2cf..ff285fc2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -473,6 +473,15 @@ services: volumes: - elasticsearch-data:/usr/share/elasticsearch/data - elasticsearch-plugins:/usr/share/elasticsearch/plugins + environment: + - cluster.name=laradock-cluster + - bootstrap.memory_lock=true + - "ES_JAVA_OPTS=-Xms256m -Xmx256m" + ulimits: + memlock: + soft: -1 + hard: -1 + mem_limit: 512m ports: - "${ELASTICSEARCH_HOST_HTTP_PORT}:9200" - "${ELASTICSEARCH_HOST_TRANSPORT_PORT}:9300" From 4c732aa5d6018e8010a83ee0694113f2ebeefdaa Mon Sep 17 00:00:00 2001 From: LinBo len Date: Mon, 26 Jun 2017 11:11:10 +0800 Subject: [PATCH 082/313] nginx sites-available shoule only use *.conf although most much of use case developer should modify laradock to suit their project. we can use *.conf.example to take effect. but we also need a dummy nginx conf to info other newer to know how to config their nginx conf. the *.conf.example should be. so i think we should only take *.conf to take effect. not * --- nginx/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index c627c4e1..e747e983 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -28,7 +28,7 @@ http { ssl_ciphers 'ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS'; include /etc/nginx/conf.d/*.conf; - include /etc/nginx/sites-available/*; + include /etc/nginx/sites-available/*.conf; open_file_cache off; # Disabled for issue 619 charset UTF-8; } From 19518341503bb265fce40f5a2aaf4734eacd985e Mon Sep 17 00:00:00 2001 From: Patrick Mac Gregor Date: Wed, 28 Jun 2017 11:28:04 +0200 Subject: [PATCH 083/313] [Fix] Mailhog should be exposed to backend - fixes failing connection to host "mailhog" when sending mail via smtp - mailhog needs to be available for the backend at Port 1025 - i.e. in a Laravel app .env should contain "MAIL_HOST=mailhog --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index ec9af2cf..556e3b9a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -518,6 +518,7 @@ services: - "8025:8025" networks: - frontend + - backend ### Selenium Container ######################################## From 26d7fb01ed503b3a77bfa3928fe11f967569a0ee Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 29 Jun 2017 09:25:24 +0800 Subject: [PATCH 084/313] fixing package docker-engine is not available. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 03e4e584..87a8450c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,8 +41,10 @@ env: # Installing a newer Docker version before_install: + - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - + - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt-get update - - sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine + - sudo apt-get -y install docker-ce script: ./travis-build.sh From 70e01125fd72b47fab49afb95ff47134cd6cc9a4 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 29 Jun 2017 09:30:37 +0800 Subject: [PATCH 085/313] fixing package docker-engine is not available. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 87a8450c..f54fc735 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,6 +45,7 @@ before_install: - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt-get update - sudo apt-get -y install docker-ce + - docker version script: ./travis-build.sh From 63152e11fa94866de2eeb9d3fc19c3a513e36a87 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 29 Jun 2017 12:47:29 +0800 Subject: [PATCH 086/313] fix caddy build failed --- caddy/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/caddy/Dockerfile b/caddy/Dockerfile index 072a0c71..09d4bbd0 100644 --- a/caddy/Dockerfile +++ b/caddy/Dockerfile @@ -3,6 +3,7 @@ FROM alpine:3.4 MAINTAINER Eric Pfeiffer ENV caddy_version=0.10.3 +ARG plugins=http.git LABEL caddy_version="$caddy_version" architecture="amd64" @@ -12,7 +13,7 @@ RUN apk update \ RUN curl --silent --show-error --fail --location \ --header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \ - "https://caddyserver.com/download/linux/amd64?plugins=http.cgi,http.cors,http.expires,http.filemanager,http.git,http.ipfilter,http.realip,tls.dns.cloudflare,tls.dns.digitalocean,tls.dns.dnspod,tls.dns.dyn,tls.dns.googlecloud,tls.dns.linode,tls.dns.namecheap,tls.dns.ovh,tls.dns.route53,tls.dns.vultr" \ + "https://caddyserver.com/download/linux/amd64?plugins=${plugins}" \ | tar --no-same-owner -C /usr/bin/ -xz caddy \ && mv /usr/bin/caddy /usr/bin/caddy \ && chmod 0755 /usr/bin/caddy From bc1c957f4796d5be26b3067e0468fb09f208ea18 Mon Sep 17 00:00:00 2001 From: Vincent Chu Date: Fri, 30 Jun 2017 06:22:55 -0400 Subject: [PATCH 087/313] add APACHE_SITES_PATH variable --- docker-compose.yml | 2 +- env-example | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 556e3b9a..699794b7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -149,7 +149,7 @@ services: - applications volumes: - ${APACHE_HOST_LOG_PATH}:/var/log/apache2 - - ./apache2/sites:/etc/apache2/sites-available + - ${APACHE_SITES_PATH}:/etc/apache2/sites-available ports: - "${APACHE_HOST_HTTP_PORT}:80" - "${APACHE_HOST_HTTPS_PORT}:443" diff --git a/env-example b/env-example index f8ca6509..f80de1ea 100644 --- a/env-example +++ b/env-example @@ -85,6 +85,7 @@ APACHE_HOST_HTTP_PORT=80 APACHE_HOST_HTTPS_PORT=443 APACHE2_PHP_SOCKET=php-fpm:9000 APACHE_HOST_LOG_PATH=./logs/apache2 +APACHE_SITES_PATH=./apache2/sites PHP_SOCKET=php-fpm:9000 ### MYSQL ############################################################################################################## From 19f9b25a4612278f878202683677f928ed7f5c63 Mon Sep 17 00:00:00 2001 From: sakanaproductions Date: Fri, 30 Jun 2017 17:48:24 -0700 Subject: [PATCH 088/313] fixed issue #1017, added ENV variables back to Dockerfile and added startup file back --- mysql/Dockerfile | 18 +++++++++++++++++- mysql/startup | 3 +++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 mysql/startup diff --git a/mysql/Dockerfile b/mysql/Dockerfile index aada38f2..f63e014f 100644 --- a/mysql/Dockerfile +++ b/mysql/Dockerfile @@ -12,8 +12,24 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN chown -R mysql:root /var/lib/mysql/ +ADD startup /etc/mysql/startup + +ARG MYSQL_DATABASE=default +ARG MYSQL_USER=default +ARG MYSQL_PASSWORD=secret +ARG MYSQL_ROOT_PASSWORD=root + +ENV MYSQL_DATABASE=$MYSQL_DATABASE +ENV MYSQL_USER=$MYSQL_USER +ENV MYSQL_PASSWORD=$MYSQL_PASSWORD +ENV MYSQL_ROOT_PASSWORD=$MYSQL_ROOT_PASSWORD + +RUN sed -i 's/MYSQL_DATABASE/'$MYSQL_DATABASE'/g' /etc/mysql/startup && \ + sed -i 's/MYSQL_USER/'$MYSQL_USER'/g' /etc/mysql/startup && \ + sed -i 's/MYSQL_PASSWORD/'$MYSQL_PASSWORD'/g' /etc/mysql/startup + ADD my.cnf /etc/mysql/conf.d/my.cnf -CMD ["mysqld"] +CMD ["mysqld", "--init-file=/etc/mysql/startup"] EXPOSE 3306 diff --git a/mysql/startup b/mysql/startup new file mode 100644 index 00000000..11ced199 --- /dev/null +++ b/mysql/startup @@ -0,0 +1,3 @@ +DROP USER MYSQL_USER; +CREATE DATABASE IF NOT EXISTS MYSQL_DATABASE; +GRANT ALL ON `MYSQL_DATABASE`.* TO 'MYSQL_USER'@'%' IDENTIFIED BY 'MYSQL_PASSWORD'; \ No newline at end of file From 007017a2a74068696dc4a0e435c02788ebf604c5 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 4 Jul 2017 06:00:31 +0300 Subject: [PATCH 089/313] fix mysql error no access --- mysql/Dockerfile | 18 +----------------- mysql/startup | 3 --- 2 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 mysql/startup diff --git a/mysql/Dockerfile b/mysql/Dockerfile index f63e014f..aada38f2 100644 --- a/mysql/Dockerfile +++ b/mysql/Dockerfile @@ -12,24 +12,8 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN chown -R mysql:root /var/lib/mysql/ -ADD startup /etc/mysql/startup - -ARG MYSQL_DATABASE=default -ARG MYSQL_USER=default -ARG MYSQL_PASSWORD=secret -ARG MYSQL_ROOT_PASSWORD=root - -ENV MYSQL_DATABASE=$MYSQL_DATABASE -ENV MYSQL_USER=$MYSQL_USER -ENV MYSQL_PASSWORD=$MYSQL_PASSWORD -ENV MYSQL_ROOT_PASSWORD=$MYSQL_ROOT_PASSWORD - -RUN sed -i 's/MYSQL_DATABASE/'$MYSQL_DATABASE'/g' /etc/mysql/startup && \ - sed -i 's/MYSQL_USER/'$MYSQL_USER'/g' /etc/mysql/startup && \ - sed -i 's/MYSQL_PASSWORD/'$MYSQL_PASSWORD'/g' /etc/mysql/startup - ADD my.cnf /etc/mysql/conf.d/my.cnf -CMD ["mysqld", "--init-file=/etc/mysql/startup"] +CMD ["mysqld"] EXPOSE 3306 diff --git a/mysql/startup b/mysql/startup deleted file mode 100644 index 11ced199..00000000 --- a/mysql/startup +++ /dev/null @@ -1,3 +0,0 @@ -DROP USER MYSQL_USER; -CREATE DATABASE IF NOT EXISTS MYSQL_DATABASE; -GRANT ALL ON `MYSQL_DATABASE`.* TO 'MYSQL_USER'@'%' IDENTIFIED BY 'MYSQL_PASSWORD'; \ No newline at end of file From 50834268a76afb0b4685345b03943b2cd80ac6ea Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 4 Jul 2017 06:00:45 +0300 Subject: [PATCH 090/313] upgrade mysql base image to 8.0 --- mysql/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql/Dockerfile b/mysql/Dockerfile index aada38f2..2061a0b9 100644 --- a/mysql/Dockerfile +++ b/mysql/Dockerfile @@ -1,4 +1,4 @@ -FROM mysql:5.7 +FROM mysql:8.0 MAINTAINER Mahmoud Zalt From 3e59a2a813688a5336c7e06080a905e6cd6776ce Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 4 Jul 2017 06:01:18 +0300 Subject: [PATCH 091/313] add creating multiple databases to the docs --- DOCUMENTATION/content/documentation/index.md | 24 +++++++++++++++---- .../createdb.sql.example | 22 ++++++++--------- 2 files changed, 31 insertions(+), 15 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index e447225b..e4a7ced1 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -192,14 +192,17 @@ The NGINX Log file is stored in the `logs/nginx` directory. However to view the logs of all the other containers (MySQL, PHP-FPM,...) you can run this: ```bash -docker logs {container-name} +docker-compose logs {container-name} +``` + +```bash +docker-compose logs -f {container-name} ``` More [options](https://docs.docker.com/compose/reference/logs/) -```bash -docker logs -f {container-name} -``` + + @@ -1057,6 +1060,19 @@ The default username and password for the root MySQL user are `root` and `root ` +
+ +## Create Multiple Databases (MySQL) + +Create `createdb.sql` from `mysql/docker-entrypoint-initdb.d/createdb.sql.example` in `mysql/docker-entrypoint-initdb.d/*` and add your SQL syntax as follow: + +```sql +CREATE DATABASE IF NOT EXISTS `your_db_1` COLLATE 'utf8_general_ci' ; +GRANT ALL ON `your_db_1`.* TO 'mysql_user'@'%' ; +``` + + +
diff --git a/mysql/docker-entrypoint-initdb.d/createdb.sql.example b/mysql/docker-entrypoint-initdb.d/createdb.sql.example index 2b7c5157..55679859 100644 --- a/mysql/docker-entrypoint-initdb.d/createdb.sql.example +++ b/mysql/docker-entrypoint-initdb.d/createdb.sql.example @@ -1,20 +1,20 @@ -### -### Copy createdb.sql.example to createdb.sql -### then uncomment then set database name and username to create you need databases +# +# Copy createdb.sql.example to createdb.sql +# then uncomment then set database name and username to create you need databases # # example: .env MYSQL_USER=appuser and need db name is myshop_db # # CREATE DATABASE IF NOT EXISTS `myshop_db` ; # GRANT ALL ON `myshop_db`.* TO 'appuser'@'%' ; # -### -### this sql script is auto run when mysql container start and $DATA_SAVE_PATH/mysql not exists. -### -### if your $DATA_SAVE_PATH/mysql is exists and you do not want to delete it, you can run by manual execution: -### -### docker-compose exec mysql bash -### mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql -### +# +# this sql script will auto run when the mysql container starts and the $DATA_SAVE_PATH/mysql not found. +# +# if your $DATA_SAVE_PATH/mysql exists and you do not want to delete it, you can run by manual execution: +# +# docker-compose exec mysql bash +# mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql +# #CREATE DATABASE IF NOT EXISTS `dev_db_1` COLLATE 'utf8_general_ci' ; #GRANT ALL ON `dev_db_1`.* TO 'default'@'%' ; From 9d2be424def0200dbcc0fe8bf8024e01c4f68bd5 Mon Sep 17 00:00:00 2001 From: Vincent Chu Date: Thu, 6 Jul 2017 00:31:42 -0400 Subject: [PATCH 092/313] fix #1041 Possible fix described on: https://bugs.mysql.com/bug.php?id=85946 ``` [mysqld] character-set-server=utf8 ``` --- mysql/my.cnf | 1 + 1 file changed, 1 insertion(+) diff --git a/mysql/my.cnf b/mysql/my.cnf index 06595ca5..bee678ab 100644 --- a/mysql/my.cnf +++ b/mysql/my.cnf @@ -7,3 +7,4 @@ [mysqld] sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" +character-set-server=utf8 From 02e2454c79d499ef9d52c2500b0476c9b7c17cb9 Mon Sep 17 00:00:00 2001 From: Vincent Chu Date: Wed, 5 Jul 2017 17:56:50 -0400 Subject: [PATCH 093/313] add docker-entrypoint-initdb.d variables for MySQL + MariaDB + Percona --- docker-compose.yml | 6 +++--- env-example | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 55d6a187..8f397d62 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -200,7 +200,7 @@ services: - TZ=${WORKSPACE_TIMEZONE} volumes: - ${DATA_SAVE_PATH}/mysql:/var/lib/mysql - - ./mysql/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d + - ${MYSQL_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d ports: - "${MYSQL_PORT}:3306" networks: @@ -218,7 +218,7 @@ services: - MYSQL_ROOT_PASSWORD=${PERCONA_ROOT_PASSWORD} volumes: - ${DATA_SAVE_PATH}/percona:/var/lib/mysql - - ./percona/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d + - ${PERCONA_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d ports: - "${PERCONA_PORT}:3306" networks: @@ -246,7 +246,7 @@ services: build: ./mariadb volumes: - ${DATA_SAVE_PATH}/mariadb:/var/lib/mysql - - ./mariadb/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d + - ${MARIADB_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d ports: - "${MARIADB_PORT}:3306" environment: diff --git a/env-example b/env-example index f80de1ea..72aa07f0 100644 --- a/env-example +++ b/env-example @@ -95,6 +95,7 @@ MYSQL_USER=default MYSQL_PASSWORD=secret MYSQL_PORT=3306 MYSQL_ROOT_PASSWORD=root +MYSQL_ENTRYPOINT_INITDB=./mysql/docker-entrypoint-initdb.d ### Percona ############################################################################################################ @@ -103,6 +104,7 @@ PERCONA_USER=homestead PERCONA_PASSWORD=secret PERCONA_PORT=3306 PERCONA_ROOT_PASSWORD=root +PERCONA_ENTRYPOINT_INITDB=./percona/docker-entrypoint-initdb.d ### MSSQL ############################################################################################################## @@ -117,6 +119,7 @@ MARIADB_USER=default MARIADB_PASSWORD=secret MARIADB_PORT=3306 MARIADB_ROOT_PASSWORD=root +MARIADB_ENTRYPOINT_INITDB=./mariadb/docker-entrypoint-initdb.d ### POSTGRES ########################################################################################################### From f2f665dc087cb5ceb2e3a9495f2b398db7b3034f Mon Sep 17 00:00:00 2001 From: Rudolf Gitler Date: Fri, 7 Jul 2017 13:21:14 +0200 Subject: [PATCH 094/313] Update Dockerfile-71 php7.1-xdebug instead of php-xdebug instead. apt-get update needed therefore --- workspace/Dockerfile-71 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 29f5b620..14fb2957 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -132,8 +132,8 @@ RUN echo "" >> ~/.bashrc && \ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands - apt-get install -y --force-yes php-xdebug && \ - sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ + apt-get update && \ + apt-get install -y --force-yes php7.1-xdebug && \ sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ ;fi # ADD for REMOTE debugging From 7ec8b8846eb5de60141c25a94c3895decfdb1164 Mon Sep 17 00:00:00 2001 From: Ryan Hayle Date: Fri, 7 Jul 2017 16:43:06 -0500 Subject: [PATCH 095/313] Allow specifying the version of MySQL to install in .env file. --- docker-compose.yml | 2 ++ env-example | 1 + mysql/Dockerfile | 3 ++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 55d6a187..ee0d4b73 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -192,6 +192,8 @@ services: mysql: build: context: ./mysql + args: + - MYSQL_VERSION=${MYSQL_VERSION} environment: - MYSQL_DATABASE=${MYSQL_DATABASE} - MYSQL_USER=${MYSQL_USER} diff --git a/env-example b/env-example index f80de1ea..07828182 100644 --- a/env-example +++ b/env-example @@ -90,6 +90,7 @@ PHP_SOCKET=php-fpm:9000 ### MYSQL ############################################################################################################## +MYSQL_VERSION=8.0 MYSQL_DATABASE=default MYSQL_USER=default MYSQL_PASSWORD=secret diff --git a/mysql/Dockerfile b/mysql/Dockerfile index 2061a0b9..5eb6c40d 100644 --- a/mysql/Dockerfile +++ b/mysql/Dockerfile @@ -1,4 +1,5 @@ -FROM mysql:8.0 +ARG MYSQL_VERSION=8.0 +FROM mysql:${MYSQL_VERSION} MAINTAINER Mahmoud Zalt From fe38f0c2ffb1caea43ed66ae8b2c78e92bf928e0 Mon Sep 17 00:00:00 2001 From: Ryan Hayle Date: Fri, 7 Jul 2017 17:02:05 -0500 Subject: [PATCH 096/313] Add documentation on the MYSQL_VERSION variable. --- DOCUMENTATION/content/documentation/index.md | 24 ++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index e4a7ced1..f2d0c63c 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -158,7 +158,7 @@ You might use the `--no-cache` option if you want full rebuilding (`docker-compo ## Docker-Sync -Docker on the Mac [is slow](https://github.com/docker/for-mac/issues/77), at the time of writing. Especially for larger projects, this can be a problem. The problem is [older than March 2016](https://forums.docker.com/t/file-access-in-mounted-volumes-extremely-slow-cpu-bound/8076) - as it's a such a long-running issue, we're including it in the docs here. +Docker on the Mac [is slow](https://github.com/docker/for-mac/issues/77), at the time of writing. Especially for larger projects, this can be a problem. The problem is [older than March 2016](https://forums.docker.com/t/file-access-in-mounted-volumes-extremely-slow-cpu-bound/8076) - as it's a such a long-running issue, we're including it in the docs here. The problem originates in bind-mount performance on MacOS. Docker for Mac uses osxfs by default. This is not without reason, it has [a lot of advantages](https://docs.docker.com/docker-for-mac/osxfs/). @@ -737,7 +737,7 @@ docker-compose up -d mariadb phpmyadmin 1 - Run the Adminer Container (`adminer`) with the `docker-compose up` command. Example: ```bash -docker-compose up -d adminer +docker-compose up -d adminer ``` 2 - Open your browser and visit the localhost on port **8080**: `http://localhost:8080` @@ -1026,6 +1026,26 @@ To change the default forwarded port for ssh: +
+ +## Change the (MySQL) Version +By default **MySQL 8.0** is running. + +MySQL 8.0 is a development release. You may prefer to use the latest stable version, or an even older release. If you wish, you can change the MySQL image that is used. + +Open up your .env file and set the `MYSQL_VERSION` variable to the version you would like to install. + +``` +MYSQL_VERSION=5.7 +``` + +Available versions are: 5.5, 5.6, 5.7, 8.0, or latest. See https://store.docker.com/images/mysql for more information. + + + + + +
## MySQL access from host From 7765df107610cea6a019419786356dec6d6d7dd6 Mon Sep 17 00:00:00 2001 From: Ujjwal Ojha Date: Sat, 8 Jul 2017 10:00:52 +0545 Subject: [PATCH 097/313] fix php7.1-xdebug because of missing new line --- workspace/Dockerfile-71 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 14fb2957..e5525c12 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -133,7 +133,8 @@ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands apt-get update && \ - apt-get install -y --force-yes php7.1-xdebug && \ sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ + apt-get install -y --force-yes php7.1-xdebug && \ + sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ ;fi # ADD for REMOTE debugging From 9dda2f6b9fcd8db07980066e0e8bef3b018cd7f0 Mon Sep 17 00:00:00 2001 From: Ujjwal Ojha Date: Sat, 8 Jul 2017 16:43:05 +0545 Subject: [PATCH 098/313] image optimizers libraries --- docker-compose.yml | 2 ++ env-example | 2 ++ php-fpm/Dockerfile-56 | 11 +++++++++++ php-fpm/Dockerfile-70 | 11 +++++++++++ php-fpm/Dockerfile-71 | 11 +++++++++++ workspace/Dockerfile-56 | 13 +++++++++++++ workspace/Dockerfile-70 | 13 +++++++++++++ workspace/Dockerfile-71 | 13 +++++++++++++ 8 files changed, 76 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 8f397d62..29b0109a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,6 +32,7 @@ services: - INSTALL_DEPLOYER=${WORKSPACE_INSTALL_DEPLOYER} - INSTALL_LINUXBREW=${WORKSPACE_INSTALL_LINUXBREW} - INSTALL_MC=${WORKSPACE_INSTALL_MC} + - INSTALL_IMAGE_OPTIMIZERS=${WORKSPACE_INSTALL_IMAGE_OPTIMIZERS} - PUID=${WORKSPACE_PUID} - PGID=${WORKSPACE_PGID} - NODE_VERSION=${WORKSPACE_NODE_VERSION} @@ -75,6 +76,7 @@ services: - INSTALL_GHOSTSCRIPT=${PHP_FPM_INSTALL_GHOSTSCRIPT} - INSTALL_LDAP=${PHP_FPM_INSTALL_LDAP} - INSTALL_SWOOLE=${PHP_FPM_INSTALL_SWOOLE} + - INSTALL_IMAGE_OPTIMIZERS=${PHP_FPM_INSTALL_IMAGE_OPTIMIZERS} dockerfile: "Dockerfile-${PHP_VERSION}" volumes_from: - applications diff --git a/env-example b/env-example index 72aa07f0..23eba15a 100644 --- a/env-example +++ b/env-example @@ -45,6 +45,7 @@ WORKSPACE_INSTALL_LARAVEL_INSTALLER=false WORKSPACE_INSTALL_DEPLOYER=false WORKSPACE_INSTALL_LINUXBREW=false WORKSPACE_INSTALL_MC=false +WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false WORKSPACE_PUID=1000 WORKSPACE_PGID=1000 WORKSPACE_NODE_VERSION=stable @@ -71,6 +72,7 @@ PHP_FPM_INSTALL_INTL=false PHP_FPM_INSTALL_GHOSTSCRIPT=false PHP_FPM_INSTALL_LDAP=false PHP_FPM_INSTALL_SWOOLE=false +PHP_FPM_INSTALL_IMAGE_OPTIMIZERS=false ### NGINX ############################################################################################################## diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index cad89a5d..1d8fd976 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -258,6 +258,17 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ docker-php-ext-enable mssql pdo pdo_dblib \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index b14adacb..b643a384 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -282,6 +282,17 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ && docker-php-ext-enable pdo_sqlsrv sqlsrv \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 3a71dc21..90ea2bd0 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -289,6 +289,17 @@ RUN if [ ${INSTALL_MSSQL} = true ]; then \ && docker-php-ext-enable pdo_sqlsrv sqlsrv \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index f945358d..076eda32 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -425,6 +425,19 @@ RUN if [ ${INSTALL_MC} = true ]; then\ chmod +x /usr/local/bin/mc \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ + if [ ${INSTALL_NODE} = true ]; then \ + . ~/.bashrc && npm install -g svgo \ + ;fi\ +;fi + USER laradock # diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 0ee2b70d..3751c7ac 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -530,6 +530,19 @@ RUN if [ ${INSTALL_SYMFONY} = true ]; then \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ + if [ ${INSTALL_NODE} = true ]; then \ + . ~/.bashrc && npm install -g svgo \ + ;fi\ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index e5525c12..c66befb5 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -533,6 +533,19 @@ RUN if [ ${INSTALL_SYMFONY} = true ]; then \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ + if [ ${INSTALL_NODE} = true ]; then \ + . ~/.bashrc && npm install -g svgo \ + ;fi\ +;fi + USER laradock # From 09bf0566afc55b1e7d5774c86277f75511a5becb Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 12 Jul 2017 18:32:22 +0300 Subject: [PATCH 099/313] Adding Vince Chu to the team Welcome @vwchu :) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index daa9e6ff..e7cf945c 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ A Docker PHP development environment that facilitates running **PHP** Apps on ** - [TJ Miller](https://github.com/sixlive) @sixlive - [Yu-Lung Shao (Allen)](https://github.com/bestlong) @bestlong - [Milan Urukalo](https://github.com/urukalo) @urukalo +- [Vince Chu](https://github.com/vwchu) @vwchu - Join Us. ## License From f2a9712041d13f966f2582d7daa68317a9981c55 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Thu, 13 Jul 2017 04:08:59 +0300 Subject: [PATCH 100/313] Create CODE_OF_CONDUCT.md --- CODE_OF_CONDUCT.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..8359c58e --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,46 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at mahmoud@zalt.me. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ From b4ca9c55968217a81973222715d9662d39e2d9f0 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Thu, 13 Jul 2017 04:15:09 +0300 Subject: [PATCH 101/313] Create CONTRIBUTING.md --- CONTRIBUTING.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..7d5865b0 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,3 @@ +### First off, thanks for taking the time to contribute! + +For the contribution guide [click here](http://laradock.io/contributing/). From fe096ce28256863e0b71c4178591affe4b729dde Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Thu, 13 Jul 2017 20:30:27 +0300 Subject: [PATCH 102/313] move github repository files to the .github directory --- CODE_OF_CONDUCT.md => .github/CODE_OF_CONDUCT.md | 0 CONTRIBUTING.md => .github/CONTRIBUTING.md | 0 README-zh.md => .github/README-zh.md | 0 README.md => .github/README.md | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename CODE_OF_CONDUCT.md => .github/CODE_OF_CONDUCT.md (100%) rename CONTRIBUTING.md => .github/CONTRIBUTING.md (100%) rename README-zh.md => .github/README-zh.md (100%) rename README.md => .github/README.md (100%) diff --git a/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md similarity index 100% rename from CODE_OF_CONDUCT.md rename to .github/CODE_OF_CONDUCT.md diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to .github/CONTRIBUTING.md diff --git a/README-zh.md b/.github/README-zh.md similarity index 100% rename from README-zh.md rename to .github/README-zh.md diff --git a/README.md b/.github/README.md similarity index 100% rename from README.md rename to .github/README.md From 00a38fe274f2d2275a4c16523261f67abf28e62f Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Fri, 14 Jul 2017 17:03:01 -0400 Subject: [PATCH 103/313] added docker-sync support --- .gitignore | 3 ++- docker-compose.yml | 7 ++++++- docker-sync.yml | 9 +++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 docker-sync.yml diff --git a/.gitignore b/.gitignore index a6b304c9..702790af 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ /logs /data .env -/.project \ No newline at end of file +/.project +.docker-sync \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 29b0109a..17cdde94 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,7 +7,9 @@ services: applications: image: tianon/true volumes: - - ${APPLICATION}:/var/www + #- ${APPLICATION}:/var/www + - applications-sync:/var/www:nocopy # nocopy is required + ### Workspace Utilities Container ########################### @@ -668,3 +670,6 @@ volumes: driver: "local" elasticsearch-plugins: driver: "local" + applications-sync: + external: + name: "applications-sync" diff --git a/docker-sync.yml b/docker-sync.yml new file mode 100644 index 00000000..c68352aa --- /dev/null +++ b/docker-sync.yml @@ -0,0 +1,9 @@ +version: "2" + +options: + verbose: true +syncs: + applications-host-sync: # name of the sync volume + src: '${APPLICATION}' # host source directory + # sync_strategy: 'native_osx' # native_osx is the default + # sync_excludes: ['ignored_folder', '.ignored_dot_folder'] # ignored folders form sync \ No newline at end of file From aa22f5d64822f402e7bd82392d7e71a07cf654ed Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Fri, 14 Jul 2017 17:15:45 -0400 Subject: [PATCH 104/313] fixing applications sync volume name --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 17cdde94..3fba283a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -672,4 +672,4 @@ volumes: driver: "local" applications-sync: external: - name: "applications-sync" + name: "applications-host-sync" From 11687ffd364636884380b750e99bd137e092d0ec Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Fri, 14 Jul 2017 19:14:51 -0400 Subject: [PATCH 105/313] disabling docker-sync --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3fba283a..66c82d3f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,8 +7,8 @@ services: applications: image: tianon/true volumes: - #- ${APPLICATION}:/var/www - - applications-sync:/var/www:nocopy # nocopy is required + - ${APPLICATION}:/var/www +# - applications-sync:/var/www:nocopy # nocopy is required ### Workspace Utilities Container ########################### From 0baf7917282cf92ac69d08b32d163397b9056aaa Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Fri, 14 Jul 2017 19:17:50 -0400 Subject: [PATCH 106/313] enabling sync --- docker-compose.yml | 4 ++-- docker-sync.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 66c82d3f..b6ac1b29 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,8 +7,8 @@ services: applications: image: tianon/true volumes: - - ${APPLICATION}:/var/www -# - applications-sync:/var/www:nocopy # nocopy is required +# - ${APPLICATION}:/var/www + - applications-sync:/var/www:nocopy # nocopy is required ### Workspace Utilities Container ########################### diff --git a/docker-sync.yml b/docker-sync.yml index c68352aa..d602e519 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -5,5 +5,5 @@ options: syncs: applications-host-sync: # name of the sync volume src: '${APPLICATION}' # host source directory - # sync_strategy: 'native_osx' # native_osx is the default - # sync_excludes: ['ignored_folder', '.ignored_dot_folder'] # ignored folders form sync \ No newline at end of file + sync_strategy: 'native_osx' # native_osx is the default + sync_excludes: ['laradock', '.ignored_dot_folder'] \ No newline at end of file From 3752f482498951489e16debdc75448640efc1bd8 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Fri, 14 Jul 2017 19:27:16 -0400 Subject: [PATCH 107/313] displaying php errors --- php-fpm/php71.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php-fpm/php71.ini b/php-fpm/php71.ini index c8242dc0..2c39db84 100644 --- a/php-fpm/php71.ini +++ b/php-fpm/php71.ini @@ -474,7 +474,7 @@ error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT ; Development Value: On ; Production Value: Off ; http://php.net/display-errors -display_errors = Off +display_errors = On ; The display of errors which occur during PHP's startup sequence are handled ; separately from display_errors. PHP's default behavior is to suppress those @@ -485,7 +485,7 @@ display_errors = Off ; Development Value: On ; Production Value: Off ; http://php.net/display-startup-errors -display_startup_errors = Off +display_startup_errors = On ; Besides displaying errors, PHP can also log errors to locations such as a ; server-specific log, STDERR, or a location specified by the error_log From 9970a00533cb551e2a697a61fcc4ec6c03e0b233 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 06:40:06 -0400 Subject: [PATCH 108/313] adding php-fpm user --- docker-sync.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker-sync.yml b/docker-sync.yml index d602e519..6df8bd55 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -6,4 +6,6 @@ syncs: applications-host-sync: # name of the sync volume src: '${APPLICATION}' # host source directory sync_strategy: 'native_osx' # native_osx is the default - sync_excludes: ['laradock', '.ignored_dot_folder'] \ No newline at end of file + sync_excludes: ['laradock', '.ignored_dot_folder'] # ignored directories + sync_user: www-data # php-fpm user should have permission to read the files + #sync_userid: 82 \ No newline at end of file From b2c6e53bfae21375a897e0673c55dbad32c62867 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 06:48:23 -0400 Subject: [PATCH 109/313] adding quotes to user --- docker-sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-sync.yml b/docker-sync.yml index 6df8bd55..6471720f 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -5,7 +5,7 @@ options: syncs: applications-host-sync: # name of the sync volume src: '${APPLICATION}' # host source directory + sync_user: 'www-data' # php-fpm user should have permission to read the files sync_strategy: 'native_osx' # native_osx is the default sync_excludes: ['laradock', '.ignored_dot_folder'] # ignored directories - sync_user: www-data # php-fpm user should have permission to read the files #sync_userid: 82 \ No newline at end of file From f59b9ebda697b86eca60b51d953c6bf20c08fb0e Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 07:01:45 -0400 Subject: [PATCH 110/313] removed user --- docker-sync.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/docker-sync.yml b/docker-sync.yml index 6471720f..b8282b43 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -5,7 +5,6 @@ options: syncs: applications-host-sync: # name of the sync volume src: '${APPLICATION}' # host source directory - sync_user: 'www-data' # php-fpm user should have permission to read the files sync_strategy: 'native_osx' # native_osx is the default sync_excludes: ['laradock', '.ignored_dot_folder'] # ignored directories #sync_userid: 82 \ No newline at end of file From 0aa63c40f85cefc5c5362c987eda79582b9150d9 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 07:09:58 -0400 Subject: [PATCH 111/313] defining user id 1000 --- docker-sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-sync.yml b/docker-sync.yml index b8282b43..0de3d134 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -5,6 +5,6 @@ options: syncs: applications-host-sync: # name of the sync volume src: '${APPLICATION}' # host source directory + sync_userid: 1000 # giving permissions to www-data user (as defined in nginx and php-fpm Dockerfiles) sync_strategy: 'native_osx' # native_osx is the default sync_excludes: ['laradock', '.ignored_dot_folder'] # ignored directories - #sync_userid: 82 \ No newline at end of file From 42fc8b7b577c8e339dbfe37fa78c3f54728f72d3 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 08:19:49 -0400 Subject: [PATCH 112/313] separating syn compose file --- docker-compose.sync.yml | 17 +++++++++++++++++ docker-compose.yml | 7 +------ docker-sync.yml | 2 +- 3 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 docker-compose.sync.yml diff --git a/docker-compose.sync.yml b/docker-compose.sync.yml new file mode 100644 index 00000000..b4b383a7 --- /dev/null +++ b/docker-compose.sync.yml @@ -0,0 +1,17 @@ +version: '2' + +services: + +### Applications Code Container ############################# + + applications: + image: tianon/true + volumes: + - applications-sync:/var/www:nocopy # nocopy is required + +### Volumes Setup ############################################# + +volumes: + applications-sync: + external: + name: "applications-host-sync" diff --git a/docker-compose.yml b/docker-compose.yml index b6ac1b29..29b0109a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,9 +7,7 @@ services: applications: image: tianon/true volumes: -# - ${APPLICATION}:/var/www - - applications-sync:/var/www:nocopy # nocopy is required - + - ${APPLICATION}:/var/www ### Workspace Utilities Container ########################### @@ -670,6 +668,3 @@ volumes: driver: "local" elasticsearch-plugins: driver: "local" - applications-sync: - external: - name: "applications-host-sync" diff --git a/docker-sync.yml b/docker-sync.yml index 0de3d134..d497a56d 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -6,5 +6,5 @@ syncs: applications-host-sync: # name of the sync volume src: '${APPLICATION}' # host source directory sync_userid: 1000 # giving permissions to www-data user (as defined in nginx and php-fpm Dockerfiles) - sync_strategy: 'native_osx' # native_osx is the default + sync_strategy: 'native_osx' # for windows use 'unison' for linux docker-sync is not necessary sync_excludes: ['laradock', '.ignored_dot_folder'] # ignored directories From 9585a4a7ab82423f1771663f60a9fa2e57176c37 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 08:28:15 -0400 Subject: [PATCH 113/313] changing compose file name for using docker sync stack --- docker-compose.sync.yml => docker-compose-dev.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docker-compose.sync.yml => docker-compose-dev.yml (100%) diff --git a/docker-compose.sync.yml b/docker-compose-dev.yml similarity index 100% rename from docker-compose.sync.yml rename to docker-compose-dev.yml From d83c9be2ea4bdc49c09715b8b81aea6353496bcf Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 09:05:29 -0400 Subject: [PATCH 114/313] disabling unused services --- docker-compose.yml | 745 +++++++++++++++++++++++---------------------- 1 file changed, 373 insertions(+), 372 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 29b0109a..94926ddc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -130,64 +130,64 @@ services: ### Blackfire Container ################################# - blackfire: - image: blackfire/blackfire - environment: - - BLACKFIRE_SERVER_ID=${BLACKFIRE_SERVER_ID} - - BLACKFIRE_SERVER_TOKEN=${BLACKFIRE_SERVER_TOKEN} - depends_on: - - php-fpm - networks: - - backend +# blackfire: +# image: blackfire/blackfire +# environment: +# - BLACKFIRE_SERVER_ID=${BLACKFIRE_SERVER_ID} +# - BLACKFIRE_SERVER_TOKEN=${BLACKFIRE_SERVER_TOKEN} +# depends_on: +# - php-fpm +# networks: +# - backend ### Apache Server Container ################################# - apache2: - build: - context: ./apache2 - args: - - PHP_SOCKET=${PHP_SOCKET} - volumes_from: - - applications - volumes: - - ${APACHE_HOST_LOG_PATH}:/var/log/apache2 - - ${APACHE_SITES_PATH}:/etc/apache2/sites-available - ports: - - "${APACHE_HOST_HTTP_PORT}:80" - - "${APACHE_HOST_HTTPS_PORT}:443" - depends_on: - - php-fpm - networks: - - frontend - - backend +# apache2: +# build: +# context: ./apache2 +# args: +# - PHP_SOCKET=${PHP_SOCKET} +# volumes_from: +# - applications +# volumes: +# - ${APACHE_HOST_LOG_PATH}:/var/log/apache2 +# - ${APACHE_SITES_PATH}:/etc/apache2/sites-available +# ports: +# - "${APACHE_HOST_HTTP_PORT}:80" +# - "${APACHE_HOST_HTTPS_PORT}:443" +# depends_on: +# - php-fpm +# networks: +# - frontend +# - backend ### HHVM Container ########################################## - hhvm: - build: ./hhvm - volumes_from: - - applications - expose: - - "9000" - depends_on: - - workspace - networks: - - frontend - - backend +# hhvm: +# build: ./hhvm +# volumes_from: +# - applications +# expose: +# - "9000" +# depends_on: +# - workspace +# networks: +# - frontend +# - backend ### Minio Container ######################################### - minio: - build: ./minio - volumes: - - minio:/export - ports: - - "${MINIO_PORT}:9000" - environment: - - MINIO_ACCESS_KEY=access - - MINIO_SECRET_KEY=secretkey - networks: - - frontend +# minio: +# build: ./minio +# volumes: +# - minio:/export +# ports: +# - "${MINIO_PORT}:9000" +# environment: +# - MINIO_ACCESS_KEY=access +# - MINIO_SECRET_KEY=secretkey +# networks: +# - frontend ### MySQL Container ######################################### @@ -210,120 +210,120 @@ services: ### Percona Container ######################################### - percona: - build: - context: ./percona - environment: - - MYSQL_DATABASE=${PERCONA_DATABASE} - - MYSQL_USER=${PERCONA_USER} - - MYSQL_PASSWORD=${PERCONA_PASSWORD} - - MYSQL_ROOT_PASSWORD=${PERCONA_ROOT_PASSWORD} - volumes: - - ${DATA_SAVE_PATH}/percona:/var/lib/mysql - - ${PERCONA_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d - ports: - - "${PERCONA_PORT}:3306" - networks: - - backend +# percona: +# build: +# context: ./percona +# environment: +# - MYSQL_DATABASE=${PERCONA_DATABASE} +# - MYSQL_USER=${PERCONA_USER} +# - MYSQL_PASSWORD=${PERCONA_PASSWORD} +# - MYSQL_ROOT_PASSWORD=${PERCONA_ROOT_PASSWORD} +# volumes: +# - ${DATA_SAVE_PATH}/percona:/var/lib/mysql +# - ${PERCONA_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d +# ports: +# - "${PERCONA_PORT}:3306" +# networks: +# - backend ### MSSQL Container ######################################### - mssql: - build: - context: ./mssql - environment: - - MSSQL_DATABASE=${MSSQL_DATABASE} - - SA_PASSWORD=${MSSQL_PASSWORD} - - ACCEPT_EULA=Y - volumes: - - ${DATA_SAVE_PATH}/mssql:/var/opt/mssql - ports: - - "${MSSQL_PORT}:1433" - networks: - - backend +# mssql: +# build: +# context: ./mssql +# environment: +# - MSSQL_DATABASE=${MSSQL_DATABASE} +# - SA_PASSWORD=${MSSQL_PASSWORD} +# - ACCEPT_EULA=Y +# volumes: +# - ${DATA_SAVE_PATH}/mssql:/var/opt/mssql +# ports: +# - "${MSSQL_PORT}:1433" +# networks: +# - backend ### MariaDB Container ####################################### - mariadb: - build: ./mariadb - volumes: - - ${DATA_SAVE_PATH}/mariadb:/var/lib/mysql - - ${MARIADB_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d - ports: - - "${MARIADB_PORT}:3306" - environment: - - MYSQL_DATABASE=${MARIADB_DATABASE} - - MYSQL_USER=${MARIADB_USER} - - MYSQL_PASSWORD=${MARIADB_PASSWORD} - - MYSQL_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD} - networks: - - backend +# mariadb: +# build: ./mariadb +# volumes: +# - ${DATA_SAVE_PATH}/mariadb:/var/lib/mysql +# - ${MARIADB_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d +# ports: +# - "${MARIADB_PORT}:3306" +# environment: +# - MYSQL_DATABASE=${MARIADB_DATABASE} +# - MYSQL_USER=${MARIADB_USER} +# - MYSQL_PASSWORD=${MARIADB_PASSWORD} +# - MYSQL_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD} +# networks: +# - backend ### PostgreSQL Container #################################### - postgres: - build: ./postgres - volumes: - - ${DATA_SAVE_PATH}/postgres:/var/lib/postgresql/data - ports: - - "${POSTGRES_PORT}:5432" - environment: - - POSTGRES_DB=${POSTGRES_DB} - - POSTGRES_USER=${POSTGRES_USER} - - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - networks: - - backend +# postgres: +# build: ./postgres +# volumes: +# - ${DATA_SAVE_PATH}/postgres:/var/lib/postgresql/data +# ports: +# - "${POSTGRES_PORT}:5432" +# environment: +# - POSTGRES_DB=${POSTGRES_DB} +# - POSTGRES_USER=${POSTGRES_USER} +# - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} +# networks: +# - backend ### PostgreSQL PostGis Container ############################ - postgres-postgis: - build: ./postgres-postgis - volumes: - - ${DATA_SAVE_PATH}/postgres:/var/lib/postgresql/data - ports: - - "${POSTGRES_PORT}:5432" - environment: - - POSTGRES_DB=${POSTGRES_DB} - - POSTGRES_USER=${POSTGRES_USER} - - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - networks: - - backend +# postgres-postgis: +# build: ./postgres-postgis +# volumes: +# - ${DATA_SAVE_PATH}/postgres:/var/lib/postgresql/data +# ports: +# - "${POSTGRES_PORT}:5432" +# environment: +# - POSTGRES_DB=${POSTGRES_DB} +# - POSTGRES_USER=${POSTGRES_USER} +# - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} +# networks: +# - backend ### Neo4j Container ######################################### - neo4j: - build: ./neo4j - ports: - - "7474:7474" - - "1337:1337" - environment: - - NEO4J_AUTH=default:secret - volumes: - - ${DATA_SAVE_PATH}/neo4j:/var/lib/neo4j/data - networks: - - backend +# neo4j: +# build: ./neo4j +# ports: +# - "7474:7474" +# - "1337:1337" +# environment: +# - NEO4J_AUTH=default:secret +# volumes: +# - ${DATA_SAVE_PATH}/neo4j:/var/lib/neo4j/data +# networks: +# - backend ### MongoDB Container ####################################### - mongo: - build: ./mongo - ports: - - "${MONGODB_PORT}:27017" - volumes: - - ${DATA_SAVE_PATH}/mongo:/data/db - networks: - - backend +# mongo: +# build: ./mongo +# ports: +# - "${MONGODB_PORT}:27017" +# volumes: +# - ${DATA_SAVE_PATH}/mongo:/data/db +# networks: +# - backend ### RethinkDB Container ####################################### - rethinkdb: - build: ./rethinkdb - ports: - - "${RETHINKDB_PORT}:8080" - volumes: - - ${DATA_SAVE_PATH}/rethinkdb:/data/rethinkdb_data - networks: - - backend +# rethinkdb: +# build: ./rethinkdb +# ports: +# - "${RETHINKDB_PORT}:8080" +# volumes: +# - ${DATA_SAVE_PATH}/rethinkdb:/data/rethinkdb_data +# networks: +# - backend ### Redis Container ######################################### @@ -338,290 +338,291 @@ services: ### Aerospike c Container ################################### - aerospike: - build: ./aerospike - volumes_from: - - workspace - volumes: - - ${DATA_SAVE_PATH}/aerospike:/opt/aerospike/data - ports: - - "${AEROSPIKE_SERVICE_PORT}:3000" - - "${AEROSPIKE_FABRIC_PORT}:3001" - - "${AEROSPIKE_HEARTBEAT_PORT}:3002" - - "${AEROSPIKE_INFO_PORT}:3003" - networks: - - backend +# aerospike: +# build: ./aerospike +# volumes_from: +# - workspace +# volumes: +# - ${DATA_SAVE_PATH}/aerospike:/opt/aerospike/data +# ports: +# - "${AEROSPIKE_SERVICE_PORT}:3000" +# - "${AEROSPIKE_FABRIC_PORT}:3001" +# - "${AEROSPIKE_HEARTBEAT_PORT}:3002" +# - "${AEROSPIKE_INFO_PORT}:3003" +# networks: +# - backend ### Memcached Container ##################################### - memcached: - build: ./memcached - volumes: - - ${DATA_SAVE_PATH}/memcached:/var/lib/memcached - ports: - - "${MEMCACHED_HOST_PORT}:11211" - depends_on: - - php-fpm - networks: - - backend +# memcached: +# build: ./memcached +# volumes: +# - ${DATA_SAVE_PATH}/memcached:/var/lib/memcached +# ports: +# - "${MEMCACHED_HOST_PORT}:11211" +# depends_on: +# - php-fpm +# networks: +# - backend ### Beanstalkd Container #################################### - beanstalkd: - build: ./beanstalkd - ports: - - "${BEANSTALKD_HOST_PORT}:11300" - privileged: true - depends_on: - - php-fpm - networks: - - backend +# beanstalkd: +# build: ./beanstalkd +# ports: +# - "${BEANSTALKD_HOST_PORT}:11300" +# privileged: true +# depends_on: +# - php-fpm +# networks: +# - backend ### RabbitMQ Container ###################################### - rabbitmq: - build: ./rabbitmq - ports: - - "${RABBITMQ_NODE_HOST_PORT}:5672" - - "${RABBITMQ_MANAGEMENT_HTTP_HOST_PORT}:15672" - - "${RABBITMQ_MANAGEMENT_HTTPS_HOST_PORT}:15671" - privileged: true - environment: - - RABBITMQ_DEFAULT_USER=${RABBITMQ_DEFAULT_USER} - - RABBITMQ_DEFAULT_PASS=${RABBITMQ_DEFAULT_PASS} - depends_on: - - php-fpm - networks: - - backend +# rabbitmq: +# build: ./rabbitmq +# ports: +# - "${RABBITMQ_NODE_HOST_PORT}:5672" +# - "${RABBITMQ_MANAGEMENT_HTTP_HOST_PORT}:15672" +# - "${RABBITMQ_MANAGEMENT_HTTPS_HOST_PORT}:15671" +# privileged: true +# environment: +# - RABBITMQ_DEFAULT_USER=${RABBITMQ_DEFAULT_USER} +# - RABBITMQ_DEFAULT_PASS=${RABBITMQ_DEFAULT_PASS} +# depends_on: +# - php-fpm +# networks: +# - backend ### Beanstalkd Console Container ############################ - beanstalkd-console: - build: ./beanstalkd-console - ports: - - "2080:2080" - depends_on: - - beanstalkd - networks: - - backend +# beanstalkd-console: +# build: ./beanstalkd-console +# ports: +# - "2080:2080" +# depends_on: +# - beanstalkd +# networks: +# - backend ### Caddy Server Container ################################## - caddy: - build: ./caddy - volumes_from: - - applications - volumes: - - ${CADDY_CUSTOM_CADDYFILE}:/etc/Caddyfile - - ${CADDY_HOST_LOG_PATH}:/var/log/caddy - - ${DATA_SAVE_PATH}:/root/.caddy - ports: - - "${CADDY_HOST_HTTP_PORT}:80" - - "${CADDY_HOST_HTTPS_PORT}:443" - depends_on: - - php-fpm - networks: - - frontend - - backend +# caddy: +# build: ./caddy +# volumes_from: +# - applications +# volumes: +# - ${CADDY_CUSTOM_CADDYFILE}:/etc/Caddyfile +# - ${CADDY_HOST_LOG_PATH}:/var/log/caddy +# - ${DATA_SAVE_PATH}:/root/.caddy +# ports: +# - "${CADDY_HOST_HTTP_PORT}:80" +# - "${CADDY_HOST_HTTPS_PORT}:443" +# depends_on: +# - php-fpm +# networks: +# - frontend +# - backend ### phpMyAdmin Container #################################### - phpmyadmin: - build: ./phpmyadmin - environment: - - PMA_ARBITRARY=1 - - MYSQL_USER=${PMA_USER} - - MYSQL_PASSWORD=${PMA_PASSWORD} - - MYSQL_ROOT_PASSWORD=${PMA_ROOT_PASSWORD} - ports: - - "${PMA_PORT}:80" - depends_on: - - "${PMA_DB_ENGINE}" - networks: - - frontend - - backend +# phpmyadmin: +# build: ./phpmyadmin +# environment: +# - PMA_ARBITRARY=1 +# - MYSQL_USER=${PMA_USER} +# - MYSQL_PASSWORD=${PMA_PASSWORD} +# - MYSQL_ROOT_PASSWORD=${PMA_ROOT_PASSWORD} +# ports: +# - "${PMA_PORT}:80" +# depends_on: +# - "${PMA_DB_ENGINE}" +# networks: +# - frontend +# - backend ### Adminer Container #################################### - adminer: - build: - context: ./adminer - args: - - INSTALL_MSSQL=${ADM_INSTALL_MSSQL} - ports: - - "${ADM_PORT}:8080" - depends_on: - - php-fpm - networks: - - frontend - - backend +# adminer: +# build: +# context: ./adminer +# args: +# - INSTALL_MSSQL=${ADM_INSTALL_MSSQL} +# ports: +# - "${ADM_PORT}:8080" +# depends_on: +# - php-fpm +# networks: +# - frontend +# - backend ### pgAdmin Container ####################################### - pgadmin: - build: ./pgadmin - ports: - - "5050:5050" - depends_on: - - postgres - networks: - - frontend - - backend +# pgadmin: +# build: ./pgadmin +# ports: +# - "5050:5050" +# depends_on: +# - postgres +# networks: +# - frontend +# - backend ### ElasticSearch Container ################################# - elasticsearch: - build: ./elasticsearch - volumes: - - elasticsearch-data:/usr/share/elasticsearch/data - - elasticsearch-plugins:/usr/share/elasticsearch/plugins - environment: - - cluster.name=laradock-cluster - - bootstrap.memory_lock=true - - "ES_JAVA_OPTS=-Xms256m -Xmx256m" - ulimits: - memlock: - soft: -1 - hard: -1 - mem_limit: 512m - ports: - - "${ELASTICSEARCH_HOST_HTTP_PORT}:9200" - - "${ELASTICSEARCH_HOST_TRANSPORT_PORT}:9300" - depends_on: - - php-fpm - networks: - - frontend - - backend +# elasticsearch: +# build: ./elasticsearch +# volumes: +# - elasticsearch-data:/usr/share/elasticsearch/data +# - elasticsearch-plugins:/usr/share/elasticsearch/plugins +# environment: +# - cluster.name=laradock-cluster +# - bootstrap.memory_lock=true +# - "ES_JAVA_OPTS=-Xms256m -Xmx256m" +# ulimits: +# memlock: +# soft: -1 +# hard: -1 +# mem_limit: 512m +# ports: +# - "${ELASTICSEARCH_HOST_HTTP_PORT}:9200" +# - "${ELASTICSEARCH_HOST_TRANSPORT_PORT}:9300" +# depends_on: +# - php-fpm +# networks: +# - frontend +# - backend ### Kibana Container ####################################### - kibana: - build: ./kibana - ports: - - "${KIBANA_HTTP_PORT}:5601" - depends_on: - - elasticsearch - networks: - - frontend - - backend +# kibana: +# build: ./kibana +# ports: +# - "${KIBANA_HTTP_PORT}:5601" +# depends_on: +# - elasticsearch +# networks: +# - frontend +# - backend ### Certbot Container ################################## - certbot: - build: - context: ./certbot - volumes: - - ./data/certbot/certs/:/var/certs - - ./certbot/letsencrypt/:/var/www/letsencrypt - environment: - - CN="fake.domain.com" - - EMAIL="fake.email@gmail.com" - networks: - - frontend +# certbot: +# build: +# context: ./certbot +# volumes: +# - ./data/certbot/certs/:/var/certs +# - ./certbot/letsencrypt/:/var/www/letsencrypt +# environment: +# - CN="fake.domain.com" +# - EMAIL="fake.email@gmail.com" +# networks: +# - frontend ### Mailhog Container ######################################### - mailhog: - build: ./mailhog - ports: - - "1025:1025" - - "8025:8025" - networks: - - frontend - - backend +# mailhog: +# build: ./mailhog +# ports: +# - "1025:1025" +# - "8025:8025" +# networks: +# - frontend +# - backend ### Selenium Container ######################################## - selenium: - build: ./selenium - ports: - - "${SELENIUM_PORT}:4444" - volumes: - - /dev/shm:/dev/shm - networks: - - frontend +# selenium: +# build: ./selenium +# ports: +# - "${SELENIUM_PORT}:4444" +# volumes: +# - /dev/shm:/dev/shm +# networks: +# - frontend ### Varnish Proxy 1 ########################################## - proxy: - build: ./varnish - expose: - - ${VARNISH_PORT} - environment: - - VARNISH_CONFIG=${VARNISH_CONFIG} - - CACHE_SIZE=${VARNISH_PROXY1_CACHE_SIZE} - - VARNISHD_PARAMS=${VARNISHD_PARAMS} - - VARNISH_PORT=${VARNISH_PORT} - - BACKEND_HOST=${VARNISH_PROXY1_BACKEND_HOST} - - BACKEND_PORT=${VARNISH_BACKEND_PORT} - - VARNISH_SERVER=${VARNISH_PROXY1_SERVER} - links: - - workspace - networks: - - frontend +# proxy: +# build: ./varnish +# expose: +# - ${VARNISH_PORT} +# environment: +# - VARNISH_CONFIG=${VARNISH_CONFIG} +# - CACHE_SIZE=${VARNISH_PROXY1_CACHE_SIZE} +# - VARNISHD_PARAMS=${VARNISHD_PARAMS} +# - VARNISH_PORT=${VARNISH_PORT} +# - BACKEND_HOST=${VARNISH_PROXY1_BACKEND_HOST} +# - BACKEND_PORT=${VARNISH_BACKEND_PORT} +# - VARNISH_SERVER=${VARNISH_PROXY1_SERVER} +# links: +# - workspace +# networks: +# - frontend ### Varnish Proxy 2 ########################################## - proxy2: - build: ./varnish - expose: - - ${VARNISH_PORT} - environment: - - VARNISH_CONFIG=${VARNISH_CONFIG} - - CACHE_SIZE=${VARNISH_PROXY2_CACHE_SIZE} - - VARNISHD_PARAMS=${VARNISHD_PARAMS} - - VARNISH_PORT=${VARNISH_PORT} - - BACKEND_HOST=${VARNISH_PROXY2_BACKEND_HOST} - - BACKEND_PORT=${VARNISH_BACKEND_PORT} - - VARNISH_SERVER=${VARNISH_PROXY2_SERVER} - links: - - workspace - networks: - - frontend +# proxy2: +# build: ./varnish +# expose: +# - ${VARNISH_PORT} +# environment: +# - VARNISH_CONFIG=${VARNISH_CONFIG} +# - CACHE_SIZE=${VARNISH_PROXY2_CACHE_SIZE} +# - VARNISHD_PARAMS=${VARNISHD_PARAMS} +# - VARNISH_PORT=${VARNISH_PORT} +# - BACKEND_HOST=${VARNISH_PROXY2_BACKEND_HOST} +# - BACKEND_PORT=${VARNISH_BACKEND_PORT} +# - VARNISH_SERVER=${VARNISH_PROXY2_SERVER} +# links: +# - workspace +# networks: +# - frontend ### Balancer Haproxy ########################################## - balancer: - build: ./haproxy - ports: - - "${HAPROXY_HOST_HTTP_PORT}:8085" - volumes: - - /var/run/docker.sock:/var/run/docker.sock - links: - - proxy - - proxy2 +# balancer: +# build: ./haproxy +# ports: +# - "${HAPROXY_HOST_HTTP_PORT}:8085" +# volumes: +# - /var/run/docker.sock:/var/run/docker.sock +# links: +# - proxy +# - proxy2 ### Jenkins ################################################### - jenkins: - build: ./jenkins - environment: - JAVA_OPTS: "-Djava.awt.headless=true" - ports: - - "${JENKINS_HOST_SLAVE_AGENT_PORT}:50000" - - "${JENKINS_HOST_HTTP_PORT}:8080" - privileged: true - volumes: - - ${JENKINS_HOME}:/var/jenkins_home - - /var/run/docker.sock:/var/run/docker.sock - networks: - - frontend - - backend +# jenkins: +# build: ./jenkins +# environment: +# JAVA_OPTS: "-Djava.awt.headless=true" +# ports: +# - "${JENKINS_HOST_SLAVE_AGENT_PORT}:50000" +# - "${JENKINS_HOST_HTTP_PORT}:8080" +# privileged: true +# volumes: +# - ${JENKINS_HOME}:/var/jenkins_home +# - /var/run/docker.sock:/var/run/docker.sock +# networks: +# - frontend +# - backend ### Laravel Echo Server ####################################### - laravel-echo-server: - build: - context: ./laravel-echo-server - volumes: - - ./laravel-echo-server/laravel-echo-server.json:/app/laravel-echo-server.json:ro - ports: - - "${LARAVEL_ECHO_SERVER_PORT}:6001" - links: - - redis - networks: - - frontend - - backend + +# laravel-echo-server: +# build: +# context: ./laravel-echo-server +# volumes: +# - ./laravel-echo-server/laravel-echo-server.json:/app/laravel-echo-server.json:ro +# ports: +# - "${LARAVEL_ECHO_SERVER_PORT}:6001" +# links: +# - redis +# networks: +# - frontend +# - backend ### Networks Setup ############################################ From 5eae7f30062c3d02398e313ec3321346274a2954 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 09:23:32 -0400 Subject: [PATCH 115/313] organizing sync file --- docker-compose-dev.yml => docker-compose.sync.yml | 0 docker-sync.yml | 3 +++ 2 files changed, 3 insertions(+) rename docker-compose-dev.yml => docker-compose.sync.yml (100%) diff --git a/docker-compose-dev.yml b/docker-compose.sync.yml similarity index 100% rename from docker-compose-dev.yml rename to docker-compose.sync.yml diff --git a/docker-sync.yml b/docker-sync.yml index d497a56d..77a2f624 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -4,7 +4,10 @@ options: verbose: true syncs: applications-host-sync: # name of the sync volume + compose-dev-file-path: 'docker-compose.sync.yml' # compose override file for sync + src: '${APPLICATION}' # host source directory sync_userid: 1000 # giving permissions to www-data user (as defined in nginx and php-fpm Dockerfiles) sync_strategy: 'native_osx' # for windows use 'unison' for linux docker-sync is not necessary + sync_excludes: ['laradock', '.ignored_dot_folder'] # ignored directories From 5ea7b98db86b865a5d0d7ddc1417b78b82a99e33 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 09:40:05 -0400 Subject: [PATCH 116/313] added bash script --- laradock.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 laradock.sh diff --git a/laradock.sh b/laradock.sh new file mode 100644 index 00000000..e69de29b From e9a01c017414cf2737d44a731d0cacb46a3ff040 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 09:40:25 -0400 Subject: [PATCH 117/313] modified bash script --- laradock.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) mode change 100644 => 100755 laradock.sh diff --git a/laradock.sh b/laradock.sh old mode 100644 new mode 100755 index e69de29b..a14d030c --- a/laradock.sh +++ b/laradock.sh @@ -0,0 +1,17 @@ +#!/bin/bash +if [[ $# -eq 0 ]] ; then + echo "Missing arguments. Please specify 'up' or 'down'."; + exit 1 +fi + +if [[ $1 -eq "up" ]] ; then + echo "Initializing Docker Sync"; + docker-sync start; + echo "Initializing Docker Compose"; + docker-compose -f docker-compose.yml -f docker-compose.sync.yml -d nginx mysql; +else + echo "Stopping Docker Compose"; + docker-compose down; + echo "Stopping Docker Sync"; + docker-sync start; +fi From 0d5080d6bbe419e739ff73b751fb7fadcd6e3cf9 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 09:41:57 -0400 Subject: [PATCH 118/313] fixed typo --- laradock.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laradock.sh b/laradock.sh index a14d030c..39eab138 100755 --- a/laradock.sh +++ b/laradock.sh @@ -8,7 +8,7 @@ if [[ $1 -eq "up" ]] ; then echo "Initializing Docker Sync"; docker-sync start; echo "Initializing Docker Compose"; - docker-compose -f docker-compose.yml -f docker-compose.sync.yml -d nginx mysql; + docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d nginx mysql; else echo "Stopping Docker Compose"; docker-compose down; From c17abbea6e74d01f180910abbda55aa490dac542 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 09:44:09 -0400 Subject: [PATCH 119/313] stopping docker sync --- laradock.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laradock.sh b/laradock.sh index 39eab138..2f03b620 100755 --- a/laradock.sh +++ b/laradock.sh @@ -13,5 +13,5 @@ else echo "Stopping Docker Compose"; docker-compose down; echo "Stopping Docker Sync"; - docker-sync start; + docker-sync stop; fi From 56ca814ebb507d79a7f74e50681149bcb82fd9ad Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 09:46:52 -0400 Subject: [PATCH 120/313] comparing bash strings correctly --- laradock.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/laradock.sh b/laradock.sh index 2f03b620..64f2f3a7 100755 --- a/laradock.sh +++ b/laradock.sh @@ -4,14 +4,16 @@ if [[ $# -eq 0 ]] ; then exit 1 fi -if [[ $1 -eq "up" ]] ; then +if [ "$1" == "up" ] ; then echo "Initializing Docker Sync"; docker-sync start; echo "Initializing Docker Compose"; docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d nginx mysql; -else +elif [ "$1" == "down" ]; then echo "Stopping Docker Compose"; docker-compose down; echo "Stopping Docker Sync"; docker-sync stop; +else + echo "Invalid arguments. Use 'up' or 'down'"; fi From a38794ebccf23ed6c7fdabfc4465761ab278f93c Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 09:53:56 -0400 Subject: [PATCH 121/313] passing parameters --- laradock.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laradock.sh b/laradock.sh index 64f2f3a7..78d141f5 100755 --- a/laradock.sh +++ b/laradock.sh @@ -8,7 +8,7 @@ if [ "$1" == "up" ] ; then echo "Initializing Docker Sync"; docker-sync start; echo "Initializing Docker Compose"; - docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d nginx mysql; + docker-compose -f docker-compose.yml -f docker-compose.sync.yml $@; elif [ "$1" == "down" ]; then echo "Stopping Docker Compose"; docker-compose down; From 3e5d1d919a5345ea2c8fe8bfa16533ac1933becb Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 09:56:03 -0400 Subject: [PATCH 122/313] running in daemon mode --- laradock.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laradock.sh b/laradock.sh index 78d141f5..4517d5bf 100755 --- a/laradock.sh +++ b/laradock.sh @@ -8,7 +8,7 @@ if [ "$1" == "up" ] ; then echo "Initializing Docker Sync"; docker-sync start; echo "Initializing Docker Compose"; - docker-compose -f docker-compose.yml -f docker-compose.sync.yml $@; + docker-compose -f docker-compose.yml -f docker-compose.sync.yml $@ -d; elif [ "$1" == "down" ]; then echo "Stopping Docker Compose"; docker-compose down; From 3d29c62bfbbac1e143ad6ef4276ecabf0650a75f Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 11:01:52 -0400 Subject: [PATCH 123/313] adding more commands --- laradock.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/laradock.sh b/laradock.sh index 4517d5bf..126eab1e 100755 --- a/laradock.sh +++ b/laradock.sh @@ -4,6 +4,8 @@ if [[ $# -eq 0 ]] ; then exit 1 fi +echo -e "Default \e[44mBlue"; + if [ "$1" == "up" ] ; then echo "Initializing Docker Sync"; docker-sync start; @@ -14,6 +16,13 @@ elif [ "$1" == "down" ]; then docker-compose down; echo "Stopping Docker Sync"; docker-sync stop; +elif [ "$1" == "install" ]; then + echo "Installing docker-sync"; + gem install docker-sync; +elif [ "$1" == "sync" ]; then + docker-sync sync; +elif [ "$1" == "clean" ]; then + docker-sync clean; else echo "Invalid arguments. Use 'up' or 'down'"; fi From ef7f2516540a5a84c25fc973ab8ae9603e1c88ca Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 11:04:45 -0400 Subject: [PATCH 124/313] fixed command --- laradock.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/laradock.sh b/laradock.sh index 126eab1e..6b2627b6 100755 --- a/laradock.sh +++ b/laradock.sh @@ -4,13 +4,14 @@ if [[ $# -eq 0 ]] ; then exit 1 fi -echo -e "Default \e[44mBlue"; +echo -e '\E[37;44m'"\033[1mContact List\033[0m"; + if [ "$1" == "up" ] ; then echo "Initializing Docker Sync"; docker-sync start; echo "Initializing Docker Compose"; - docker-compose -f docker-compose.yml -f docker-compose.sync.yml $@ -d; + docker-compose -f docker-compose.yml -f docker-compose.sync.yml -d $@; elif [ "$1" == "down" ]; then echo "Stopping Docker Compose"; docker-compose down; From 988bbf7bdef88cc5f701c753a32da9c1ff99a1cd Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 11:05:16 -0400 Subject: [PATCH 125/313] putting up arg --- laradock.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laradock.sh b/laradock.sh index 6b2627b6..14f7bdc4 100755 --- a/laradock.sh +++ b/laradock.sh @@ -11,7 +11,7 @@ if [ "$1" == "up" ] ; then echo "Initializing Docker Sync"; docker-sync start; echo "Initializing Docker Compose"; - docker-compose -f docker-compose.yml -f docker-compose.sync.yml -d $@; + docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d $@; elif [ "$1" == "down" ]; then echo "Stopping Docker Compose"; docker-compose down; From 855e2a47b53c5bdebf8c187cf72a0c4c5861b9ec Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 11:08:01 -0400 Subject: [PATCH 126/313] passing only the second argument and onward --- laradock.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laradock.sh b/laradock.sh index 14f7bdc4..da267a55 100755 --- a/laradock.sh +++ b/laradock.sh @@ -11,7 +11,7 @@ if [ "$1" == "up" ] ; then echo "Initializing Docker Sync"; docker-sync start; echo "Initializing Docker Compose"; - docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d $@; + docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@:2}; elif [ "$1" == "down" ]; then echo "Stopping Docker Compose"; docker-compose down; From 0c1b6ba9bfe6a8a2a2a3bac82f07c63b6a4a56fc Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 11:13:50 -0400 Subject: [PATCH 127/313] improving script --- laradock.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/laradock.sh b/laradock.sh index da267a55..9c9ea93f 100755 --- a/laradock.sh +++ b/laradock.sh @@ -4,14 +4,12 @@ if [[ $# -eq 0 ]] ; then exit 1 fi -echo -e '\E[37;44m'"\033[1mContact List\033[0m"; - - if [ "$1" == "up" ] ; then echo "Initializing Docker Sync"; docker-sync start; echo "Initializing Docker Compose"; - docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@:2}; + shift; # removing first argument + docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; elif [ "$1" == "down" ]; then echo "Stopping Docker Compose"; docker-compose down; @@ -25,5 +23,5 @@ elif [ "$1" == "sync" ]; then elif [ "$1" == "clean" ]; then docker-sync clean; else - echo "Invalid arguments. Use 'up' or 'down'"; + echo "Invalid argument. Use 'up','down','install','sync' or 'clean' "; fi From 407fb7a395228b78ed51ab7893728cdda20ce83a Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 12:00:35 -0400 Subject: [PATCH 128/313] updaeted commmand --- laradock.sh => sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename laradock.sh => sync.sh (90%) diff --git a/laradock.sh b/sync.sh similarity index 90% rename from laradock.sh rename to sync.sh index 9c9ea93f..c88a600b 100755 --- a/laradock.sh +++ b/sync.sh @@ -5,7 +5,7 @@ if [[ $# -eq 0 ]] ; then fi if [ "$1" == "up" ] ; then - echo "Initializing Docker Sync"; + echo "Initializing Docker Sync (may take several minutes the first time)"; docker-sync start; echo "Initializing Docker Compose"; shift; # removing first argument From abae2dc09ecfa191a8b13330d3138f95996b6d82 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 12:00:44 -0400 Subject: [PATCH 129/313] updated command --- sync.sh | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/sync.sh b/sync.sh index c88a600b..c452eb1e 100755 --- a/sync.sh +++ b/sync.sh @@ -1,27 +1,39 @@ #!/bin/bash if [[ $# -eq 0 ]] ; then - echo "Missing arguments. Please specify 'up' or 'down'."; + printf "Available commands:\n"; + printf " install\t\t Installs docker-sync gem on the host machine.\n"; + printf " up \t Starts docker-sync and runs docker compose.\n"; + printf " down \t\t Stops containers and docker-sync.\n"; + printf " trigger \t\t Manually triggers the synchronization of files.\n"; + printf " clean \t\t Removes all synched files from docker-sync container.\n"; exit 1 fi if [ "$1" == "up" ] ; then - echo "Initializing Docker Sync (may take several minutes the first time)"; + printf "Initializing Docker Sync (may take several minutes the first time)"; docker-sync start; - echo "Initializing Docker Compose"; + printf "Initializing Docker Compose"; shift; # removing first argument docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; + elif [ "$1" == "down" ]; then - echo "Stopping Docker Compose"; + printf "Stopping Docker Compose"; docker-compose down; - echo "Stopping Docker Sync"; + printf "Stopping Docker Sync"; docker-sync stop; + elif [ "$1" == "install" ]; then - echo "Installing docker-sync"; + printf "Installing docker-sync"; gem install docker-sync; -elif [ "$1" == "sync" ]; then + +elif [ "$1" == "trigger" ]; then + printf "Manually triggering sync between host and docker-sync container."; docker-sync sync; + elif [ "$1" == "clean" ]; then + printf "Removing and cleaning up files from the docker-sync container."; docker-sync clean; + else - echo "Invalid argument. Use 'up','down','install','sync' or 'clean' "; + printf "Invalid argument. Use 'up','down','install','trigger' or 'clean' "; fi From 2acc9f5d6fe3d4d80d2a3f614df93c13e2028e72 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 12:36:02 -0400 Subject: [PATCH 130/313] cleaning up files --- docker-compose.yml | 744 ++++++++++++++++++++++----------------------- docker-sync.yml | 6 +- 2 files changed, 375 insertions(+), 375 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 94926ddc..4dcc1080 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -130,64 +130,64 @@ services: ### Blackfire Container ################################# -# blackfire: -# image: blackfire/blackfire -# environment: -# - BLACKFIRE_SERVER_ID=${BLACKFIRE_SERVER_ID} -# - BLACKFIRE_SERVER_TOKEN=${BLACKFIRE_SERVER_TOKEN} -# depends_on: -# - php-fpm -# networks: -# - backend + blackfire: + image: blackfire/blackfire + environment: + - BLACKFIRE_SERVER_ID=${BLACKFIRE_SERVER_ID} + - BLACKFIRE_SERVER_TOKEN=${BLACKFIRE_SERVER_TOKEN} + depends_on: + - php-fpm + networks: + - backend ### Apache Server Container ################################# -# apache2: -# build: -# context: ./apache2 -# args: -# - PHP_SOCKET=${PHP_SOCKET} -# volumes_from: -# - applications -# volumes: -# - ${APACHE_HOST_LOG_PATH}:/var/log/apache2 -# - ${APACHE_SITES_PATH}:/etc/apache2/sites-available -# ports: -# - "${APACHE_HOST_HTTP_PORT}:80" -# - "${APACHE_HOST_HTTPS_PORT}:443" -# depends_on: -# - php-fpm -# networks: -# - frontend -# - backend + apache2: + build: + context: ./apache2 + args: + - PHP_SOCKET=${PHP_SOCKET} + volumes_from: + - applications + volumes: + - ${APACHE_HOST_LOG_PATH}:/var/log/apache2 + - ${APACHE_SITES_PATH}:/etc/apache2/sites-available + ports: + - "${APACHE_HOST_HTTP_PORT}:80" + - "${APACHE_HOST_HTTPS_PORT}:443" + depends_on: + - php-fpm + networks: + - frontend + - backend ### HHVM Container ########################################## -# hhvm: -# build: ./hhvm -# volumes_from: -# - applications -# expose: -# - "9000" -# depends_on: -# - workspace -# networks: -# - frontend -# - backend + hhvm: + build: ./hhvm + volumes_from: + - applications + expose: + - "9000" + depends_on: + - workspace + networks: + - frontend + - backend ### Minio Container ######################################### -# minio: -# build: ./minio -# volumes: -# - minio:/export -# ports: -# - "${MINIO_PORT}:9000" -# environment: -# - MINIO_ACCESS_KEY=access -# - MINIO_SECRET_KEY=secretkey -# networks: -# - frontend + minio: + build: ./minio + volumes: + - minio:/export + ports: + - "${MINIO_PORT}:9000" + environment: + - MINIO_ACCESS_KEY=access + - MINIO_SECRET_KEY=secretkey + networks: + - frontend ### MySQL Container ######################################### @@ -210,120 +210,120 @@ services: ### Percona Container ######################################### -# percona: -# build: -# context: ./percona -# environment: -# - MYSQL_DATABASE=${PERCONA_DATABASE} -# - MYSQL_USER=${PERCONA_USER} -# - MYSQL_PASSWORD=${PERCONA_PASSWORD} -# - MYSQL_ROOT_PASSWORD=${PERCONA_ROOT_PASSWORD} -# volumes: -# - ${DATA_SAVE_PATH}/percona:/var/lib/mysql -# - ${PERCONA_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d -# ports: -# - "${PERCONA_PORT}:3306" -# networks: -# - backend + percona: + build: + context: ./percona + environment: + - MYSQL_DATABASE=${PERCONA_DATABASE} + - MYSQL_USER=${PERCONA_USER} + - MYSQL_PASSWORD=${PERCONA_PASSWORD} + - MYSQL_ROOT_PASSWORD=${PERCONA_ROOT_PASSWORD} + volumes: + - ${DATA_SAVE_PATH}/percona:/var/lib/mysql + - ${PERCONA_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d + ports: + - "${PERCONA_PORT}:3306" + networks: + - backend ### MSSQL Container ######################################### -# mssql: -# build: -# context: ./mssql -# environment: -# - MSSQL_DATABASE=${MSSQL_DATABASE} -# - SA_PASSWORD=${MSSQL_PASSWORD} -# - ACCEPT_EULA=Y -# volumes: -# - ${DATA_SAVE_PATH}/mssql:/var/opt/mssql -# ports: -# - "${MSSQL_PORT}:1433" -# networks: -# - backend + mssql: + build: + context: ./mssql + environment: + - MSSQL_DATABASE=${MSSQL_DATABASE} + - SA_PASSWORD=${MSSQL_PASSWORD} + - ACCEPT_EULA=Y + volumes: + - ${DATA_SAVE_PATH}/mssql:/var/opt/mssql + ports: + - "${MSSQL_PORT}:1433" + networks: + - backend ### MariaDB Container ####################################### -# mariadb: -# build: ./mariadb -# volumes: -# - ${DATA_SAVE_PATH}/mariadb:/var/lib/mysql -# - ${MARIADB_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d -# ports: -# - "${MARIADB_PORT}:3306" -# environment: -# - MYSQL_DATABASE=${MARIADB_DATABASE} -# - MYSQL_USER=${MARIADB_USER} -# - MYSQL_PASSWORD=${MARIADB_PASSWORD} -# - MYSQL_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD} -# networks: -# - backend + mariadb: + build: ./mariadb + volumes: + - ${DATA_SAVE_PATH}/mariadb:/var/lib/mysql + - ${MARIADB_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d + ports: + - "${MARIADB_PORT}:3306" + environment: + - MYSQL_DATABASE=${MARIADB_DATABASE} + - MYSQL_USER=${MARIADB_USER} + - MYSQL_PASSWORD=${MARIADB_PASSWORD} + - MYSQL_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD} + networks: + - backend ### PostgreSQL Container #################################### -# postgres: -# build: ./postgres -# volumes: -# - ${DATA_SAVE_PATH}/postgres:/var/lib/postgresql/data -# ports: -# - "${POSTGRES_PORT}:5432" -# environment: -# - POSTGRES_DB=${POSTGRES_DB} -# - POSTGRES_USER=${POSTGRES_USER} -# - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} -# networks: -# - backend + postgres: + build: ./postgres + volumes: + - ${DATA_SAVE_PATH}/postgres:/var/lib/postgresql/data + ports: + - "${POSTGRES_PORT}:5432" + environment: + - POSTGRES_DB=${POSTGRES_DB} + - POSTGRES_USER=${POSTGRES_USER} + - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} + networks: + - backend ### PostgreSQL PostGis Container ############################ -# postgres-postgis: -# build: ./postgres-postgis -# volumes: -# - ${DATA_SAVE_PATH}/postgres:/var/lib/postgresql/data -# ports: -# - "${POSTGRES_PORT}:5432" -# environment: -# - POSTGRES_DB=${POSTGRES_DB} -# - POSTGRES_USER=${POSTGRES_USER} -# - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} -# networks: -# - backend + postgres-postgis: + build: ./postgres-postgis + volumes: + - ${DATA_SAVE_PATH}/postgres:/var/lib/postgresql/data + ports: + - "${POSTGRES_PORT}:5432" + environment: + - POSTGRES_DB=${POSTGRES_DB} + - POSTGRES_USER=${POSTGRES_USER} + - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} + networks: + - backend ### Neo4j Container ######################################### -# neo4j: -# build: ./neo4j -# ports: -# - "7474:7474" -# - "1337:1337" -# environment: -# - NEO4J_AUTH=default:secret -# volumes: -# - ${DATA_SAVE_PATH}/neo4j:/var/lib/neo4j/data -# networks: -# - backend + neo4j: + build: ./neo4j + ports: + - "7474:7474" + - "1337:1337" + environment: + - NEO4J_AUTH=default:secret + volumes: + - ${DATA_SAVE_PATH}/neo4j:/var/lib/neo4j/data + networks: + - backend ### MongoDB Container ####################################### -# mongo: -# build: ./mongo -# ports: -# - "${MONGODB_PORT}:27017" -# volumes: -# - ${DATA_SAVE_PATH}/mongo:/data/db -# networks: -# - backend + mongo: + build: ./mongo + ports: + - "${MONGODB_PORT}:27017" + volumes: + - ${DATA_SAVE_PATH}/mongo:/data/db + networks: + - backend ### RethinkDB Container ####################################### -# rethinkdb: -# build: ./rethinkdb -# ports: -# - "${RETHINKDB_PORT}:8080" -# volumes: -# - ${DATA_SAVE_PATH}/rethinkdb:/data/rethinkdb_data -# networks: -# - backend + rethinkdb: + build: ./rethinkdb + ports: + - "${RETHINKDB_PORT}:8080" + volumes: + - ${DATA_SAVE_PATH}/rethinkdb:/data/rethinkdb_data + networks: + - backend ### Redis Container ######################################### @@ -338,291 +338,291 @@ services: ### Aerospike c Container ################################### -# aerospike: -# build: ./aerospike -# volumes_from: -# - workspace -# volumes: -# - ${DATA_SAVE_PATH}/aerospike:/opt/aerospike/data -# ports: -# - "${AEROSPIKE_SERVICE_PORT}:3000" -# - "${AEROSPIKE_FABRIC_PORT}:3001" -# - "${AEROSPIKE_HEARTBEAT_PORT}:3002" -# - "${AEROSPIKE_INFO_PORT}:3003" -# networks: -# - backend + aerospike: + build: ./aerospike + volumes_from: + - workspace + volumes: + - ${DATA_SAVE_PATH}/aerospike:/opt/aerospike/data + ports: + - "${AEROSPIKE_SERVICE_PORT}:3000" + - "${AEROSPIKE_FABRIC_PORT}:3001" + - "${AEROSPIKE_HEARTBEAT_PORT}:3002" + - "${AEROSPIKE_INFO_PORT}:3003" + networks: + - backend ### Memcached Container ##################################### -# memcached: -# build: ./memcached -# volumes: -# - ${DATA_SAVE_PATH}/memcached:/var/lib/memcached -# ports: -# - "${MEMCACHED_HOST_PORT}:11211" -# depends_on: -# - php-fpm -# networks: -# - backend + memcached: + build: ./memcached + volumes: + - ${DATA_SAVE_PATH}/memcached:/var/lib/memcached + ports: + - "${MEMCACHED_HOST_PORT}:11211" + depends_on: + - php-fpm + networks: + - backend ### Beanstalkd Container #################################### -# beanstalkd: -# build: ./beanstalkd -# ports: -# - "${BEANSTALKD_HOST_PORT}:11300" -# privileged: true -# depends_on: -# - php-fpm -# networks: -# - backend + beanstalkd: + build: ./beanstalkd + ports: + - "${BEANSTALKD_HOST_PORT}:11300" + privileged: true + depends_on: + - php-fpm + networks: + - backend ### RabbitMQ Container ###################################### -# rabbitmq: -# build: ./rabbitmq -# ports: -# - "${RABBITMQ_NODE_HOST_PORT}:5672" -# - "${RABBITMQ_MANAGEMENT_HTTP_HOST_PORT}:15672" -# - "${RABBITMQ_MANAGEMENT_HTTPS_HOST_PORT}:15671" -# privileged: true -# environment: -# - RABBITMQ_DEFAULT_USER=${RABBITMQ_DEFAULT_USER} -# - RABBITMQ_DEFAULT_PASS=${RABBITMQ_DEFAULT_PASS} -# depends_on: -# - php-fpm -# networks: -# - backend + rabbitmq: + build: ./rabbitmq + ports: + - "${RABBITMQ_NODE_HOST_PORT}:5672" + - "${RABBITMQ_MANAGEMENT_HTTP_HOST_PORT}:15672" + - "${RABBITMQ_MANAGEMENT_HTTPS_HOST_PORT}:15671" + privileged: true + environment: + - RABBITMQ_DEFAULT_USER=${RABBITMQ_DEFAULT_USER} + - RABBITMQ_DEFAULT_PASS=${RABBITMQ_DEFAULT_PASS} + depends_on: + - php-fpm + networks: + - backend ### Beanstalkd Console Container ############################ -# beanstalkd-console: -# build: ./beanstalkd-console -# ports: -# - "2080:2080" -# depends_on: -# - beanstalkd -# networks: -# - backend + beanstalkd-console: + build: ./beanstalkd-console + ports: + - "2080:2080" + depends_on: + - beanstalkd + networks: + - backend ### Caddy Server Container ################################## -# caddy: -# build: ./caddy -# volumes_from: -# - applications -# volumes: -# - ${CADDY_CUSTOM_CADDYFILE}:/etc/Caddyfile -# - ${CADDY_HOST_LOG_PATH}:/var/log/caddy -# - ${DATA_SAVE_PATH}:/root/.caddy -# ports: -# - "${CADDY_HOST_HTTP_PORT}:80" -# - "${CADDY_HOST_HTTPS_PORT}:443" -# depends_on: -# - php-fpm -# networks: -# - frontend -# - backend + caddy: + build: ./caddy + volumes_from: + - applications + volumes: + - ${CADDY_CUSTOM_CADDYFILE}:/etc/Caddyfile + - ${CADDY_HOST_LOG_PATH}:/var/log/caddy + - ${DATA_SAVE_PATH}:/root/.caddy + ports: + - "${CADDY_HOST_HTTP_PORT}:80" + - "${CADDY_HOST_HTTPS_PORT}:443" + depends_on: + - php-fpm + networks: + - frontend + - backend ### phpMyAdmin Container #################################### -# phpmyadmin: -# build: ./phpmyadmin -# environment: -# - PMA_ARBITRARY=1 -# - MYSQL_USER=${PMA_USER} -# - MYSQL_PASSWORD=${PMA_PASSWORD} -# - MYSQL_ROOT_PASSWORD=${PMA_ROOT_PASSWORD} -# ports: -# - "${PMA_PORT}:80" -# depends_on: -# - "${PMA_DB_ENGINE}" -# networks: -# - frontend -# - backend + phpmyadmin: + build: ./phpmyadmin + environment: + - PMA_ARBITRARY=1 + - MYSQL_USER=${PMA_USER} + - MYSQL_PASSWORD=${PMA_PASSWORD} + - MYSQL_ROOT_PASSWORD=${PMA_ROOT_PASSWORD} + ports: + - "${PMA_PORT}:80" + depends_on: + - "${PMA_DB_ENGINE}" + networks: + - frontend + - backend ### Adminer Container #################################### -# adminer: -# build: -# context: ./adminer -# args: -# - INSTALL_MSSQL=${ADM_INSTALL_MSSQL} -# ports: -# - "${ADM_PORT}:8080" -# depends_on: -# - php-fpm -# networks: -# - frontend -# - backend + adminer: + build: + context: ./adminer + args: + - INSTALL_MSSQL=${ADM_INSTALL_MSSQL} + ports: + - "${ADM_PORT}:8080" + depends_on: + - php-fpm + networks: + - frontend + - backend ### pgAdmin Container ####################################### -# pgadmin: -# build: ./pgadmin -# ports: -# - "5050:5050" -# depends_on: -# - postgres -# networks: -# - frontend -# - backend + pgadmin: + build: ./pgadmin + ports: + - "5050:5050" + depends_on: + - postgres + networks: + - frontend + - backend ### ElasticSearch Container ################################# -# elasticsearch: -# build: ./elasticsearch -# volumes: -# - elasticsearch-data:/usr/share/elasticsearch/data -# - elasticsearch-plugins:/usr/share/elasticsearch/plugins -# environment: -# - cluster.name=laradock-cluster -# - bootstrap.memory_lock=true -# - "ES_JAVA_OPTS=-Xms256m -Xmx256m" -# ulimits: -# memlock: -# soft: -1 -# hard: -1 -# mem_limit: 512m -# ports: -# - "${ELASTICSEARCH_HOST_HTTP_PORT}:9200" -# - "${ELASTICSEARCH_HOST_TRANSPORT_PORT}:9300" -# depends_on: -# - php-fpm -# networks: -# - frontend -# - backend + elasticsearch: + build: ./elasticsearch + volumes: + - elasticsearch-data:/usr/share/elasticsearch/data + - elasticsearch-plugins:/usr/share/elasticsearch/plugins + environment: + - cluster.name=laradock-cluster + - bootstrap.memory_lock=true + - "ES_JAVA_OPTS=-Xms256m -Xmx256m" + ulimits: + memlock: + soft: -1 + hard: -1 + mem_limit: 512m + ports: + - "${ELASTICSEARCH_HOST_HTTP_PORT}:9200" + - "${ELASTICSEARCH_HOST_TRANSPORT_PORT}:9300" + depends_on: + - php-fpm + networks: + - frontend + - backend ### Kibana Container ####################################### -# kibana: -# build: ./kibana -# ports: -# - "${KIBANA_HTTP_PORT}:5601" -# depends_on: -# - elasticsearch -# networks: -# - frontend -# - backend + kibana: + build: ./kibana + ports: + - "${KIBANA_HTTP_PORT}:5601" + depends_on: + - elasticsearch + networks: + - frontend + - backend ### Certbot Container ################################## -# certbot: -# build: -# context: ./certbot -# volumes: -# - ./data/certbot/certs/:/var/certs -# - ./certbot/letsencrypt/:/var/www/letsencrypt -# environment: -# - CN="fake.domain.com" -# - EMAIL="fake.email@gmail.com" -# networks: -# - frontend + certbot: + build: + context: ./certbot + volumes: + - ./data/certbot/certs/:/var/certs + - ./certbot/letsencrypt/:/var/www/letsencrypt + environment: + - CN="fake.domain.com" + - EMAIL="fake.email@gmail.com" + networks: + - frontend ### Mailhog Container ######################################### -# mailhog: -# build: ./mailhog -# ports: -# - "1025:1025" -# - "8025:8025" -# networks: -# - frontend -# - backend + mailhog: + build: ./mailhog + ports: + - "1025:1025" + - "8025:8025" + networks: + - frontend + - backend ### Selenium Container ######################################## -# selenium: -# build: ./selenium -# ports: -# - "${SELENIUM_PORT}:4444" -# volumes: -# - /dev/shm:/dev/shm -# networks: -# - frontend + selenium: + build: ./selenium + ports: + - "${SELENIUM_PORT}:4444" + volumes: + - /dev/shm:/dev/shm + networks: + - frontend ### Varnish Proxy 1 ########################################## -# proxy: -# build: ./varnish -# expose: -# - ${VARNISH_PORT} -# environment: -# - VARNISH_CONFIG=${VARNISH_CONFIG} -# - CACHE_SIZE=${VARNISH_PROXY1_CACHE_SIZE} -# - VARNISHD_PARAMS=${VARNISHD_PARAMS} -# - VARNISH_PORT=${VARNISH_PORT} -# - BACKEND_HOST=${VARNISH_PROXY1_BACKEND_HOST} -# - BACKEND_PORT=${VARNISH_BACKEND_PORT} -# - VARNISH_SERVER=${VARNISH_PROXY1_SERVER} -# links: -# - workspace -# networks: -# - frontend + proxy: + build: ./varnish + expose: + - ${VARNISH_PORT} + environment: + - VARNISH_CONFIG=${VARNISH_CONFIG} + - CACHE_SIZE=${VARNISH_PROXY1_CACHE_SIZE} + - VARNISHD_PARAMS=${VARNISHD_PARAMS} + - VARNISH_PORT=${VARNISH_PORT} + - BACKEND_HOST=${VARNISH_PROXY1_BACKEND_HOST} + - BACKEND_PORT=${VARNISH_BACKEND_PORT} + - VARNISH_SERVER=${VARNISH_PROXY1_SERVER} + links: + - workspace + networks: + - frontend ### Varnish Proxy 2 ########################################## -# proxy2: -# build: ./varnish -# expose: -# - ${VARNISH_PORT} -# environment: -# - VARNISH_CONFIG=${VARNISH_CONFIG} -# - CACHE_SIZE=${VARNISH_PROXY2_CACHE_SIZE} -# - VARNISHD_PARAMS=${VARNISHD_PARAMS} -# - VARNISH_PORT=${VARNISH_PORT} -# - BACKEND_HOST=${VARNISH_PROXY2_BACKEND_HOST} -# - BACKEND_PORT=${VARNISH_BACKEND_PORT} -# - VARNISH_SERVER=${VARNISH_PROXY2_SERVER} -# links: -# - workspace -# networks: -# - frontend + proxy2: + build: ./varnish + expose: + - ${VARNISH_PORT} + environment: + - VARNISH_CONFIG=${VARNISH_CONFIG} + - CACHE_SIZE=${VARNISH_PROXY2_CACHE_SIZE} + - VARNISHD_PARAMS=${VARNISHD_PARAMS} + - VARNISH_PORT=${VARNISH_PORT} + - BACKEND_HOST=${VARNISH_PROXY2_BACKEND_HOST} + - BACKEND_PORT=${VARNISH_BACKEND_PORT} + - VARNISH_SERVER=${VARNISH_PROXY2_SERVER} + links: + - workspace + networks: + - frontend ### Balancer Haproxy ########################################## -# balancer: -# build: ./haproxy -# ports: -# - "${HAPROXY_HOST_HTTP_PORT}:8085" -# volumes: -# - /var/run/docker.sock:/var/run/docker.sock -# links: -# - proxy -# - proxy2 + balancer: + build: ./haproxy + ports: + - "${HAPROXY_HOST_HTTP_PORT}:8085" + volumes: + - /var/run/docker.sock:/var/run/docker.sock + links: + - proxy + - proxy2 ### Jenkins ################################################### -# jenkins: -# build: ./jenkins -# environment: -# JAVA_OPTS: "-Djava.awt.headless=true" -# ports: -# - "${JENKINS_HOST_SLAVE_AGENT_PORT}:50000" -# - "${JENKINS_HOST_HTTP_PORT}:8080" -# privileged: true -# volumes: -# - ${JENKINS_HOME}:/var/jenkins_home -# - /var/run/docker.sock:/var/run/docker.sock -# networks: -# - frontend -# - backend + jenkins: + build: ./jenkins + environment: + JAVA_OPTS: "-Djava.awt.headless=true" + ports: + - "${JENKINS_HOST_SLAVE_AGENT_PORT}:50000" + - "${JENKINS_HOST_HTTP_PORT}:8080" + privileged: true + volumes: + - ${JENKINS_HOME}:/var/jenkins_home + - /var/run/docker.sock:/var/run/docker.sock + networks: + - frontend + - backend ### Laravel Echo Server ####################################### -# laravel-echo-server: -# build: -# context: ./laravel-echo-server -# volumes: -# - ./laravel-echo-server/laravel-echo-server.json:/app/laravel-echo-server.json:ro -# ports: -# - "${LARAVEL_ECHO_SERVER_PORT}:6001" -# links: -# - redis -# networks: -# - frontend -# - backend + laravel-echo-server: + build: + context: ./laravel-echo-server + volumes: + - ./laravel-echo-server/laravel-echo-server.json:/app/laravel-echo-server.json:ro + ports: + - "${LARAVEL_ECHO_SERVER_PORT}:6001" + links: + - redis + networks: + - frontend + - backend ### Networks Setup ############################################ diff --git a/docker-sync.yml b/docker-sync.yml index 77a2f624..1da12b77 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -4,10 +4,10 @@ options: verbose: true syncs: applications-host-sync: # name of the sync volume - compose-dev-file-path: 'docker-compose.sync.yml' # compose override file for sync + compose-dev-file-path: 'docker-compose.sync.yml' # docker-compose override file src: '${APPLICATION}' # host source directory sync_userid: 1000 # giving permissions to www-data user (as defined in nginx and php-fpm Dockerfiles) - sync_strategy: 'native_osx' # for windows use 'unison' for linux docker-sync is not necessary + sync_strategy: 'native_osx' # for windows use 'unison', for linux docker-sync is not necessary - sync_excludes: ['laradock', '.ignored_dot_folder'] # ignored directories + sync_excludes: ['laradock', 'ignored_folder_example'] # ignored directories From 3bf572b7a4b11b095406befcdf0282427f5e572c Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 13:52:23 -0400 Subject: [PATCH 131/313] added colors --- docker-sync.yml | 2 +- env-example | 10 ++++++++-- sync.sh | 49 +++++++++++++++++++++++++++++++++++-------------- 3 files changed, 44 insertions(+), 17 deletions(-) diff --git a/docker-sync.yml b/docker-sync.yml index 1da12b77..0a3b4394 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -8,6 +8,6 @@ syncs: src: '${APPLICATION}' # host source directory sync_userid: 1000 # giving permissions to www-data user (as defined in nginx and php-fpm Dockerfiles) - sync_strategy: 'native_osx' # for windows use 'unison', for linux docker-sync is not necessary + sync_strategy: '${DOCKER_SYNC_STRATEGY}' # for osx use 'native_osx', for windows use 'unison' sync_excludes: ['laradock', 'ignored_folder_example'] # ignored directories diff --git a/env-example b/env-example index 23eba15a..91d295cc 100644 --- a/env-example +++ b/env-example @@ -255,6 +255,13 @@ CADDY_CUSTOM_CADDYFILE=./caddy/Caddyfile LARAVEL_ECHO_SERVER_PORT=6001 +### DOCKER-SYNC ################################################################################################ + +# osx: 'native_osx' (default) +# windows: 'unison' +# linux: docker-sync not required + +DOCKER_SYNC_STRATEGY=native_osx ##### TO BE CONTINUE ................................. @@ -262,8 +269,6 @@ LARAVEL_ECHO_SERVER_PORT=6001 # ......... # ......... - - ############################ # Miscellaneous ############################ @@ -281,3 +286,4 @@ PHP_IDE_CONFIG=serverName=laradock # Fix for windows users to make sure the application path works. COMPOSE_CONVERT_WINDOWS_PATHS=1 + diff --git a/sync.sh b/sync.sh index c452eb1e..3cf8bf0a 100755 --- a/sync.sh +++ b/sync.sh @@ -1,39 +1,60 @@ #!/bin/bash + +# prints colored text +print_style () { + + if [ "$2" == "info" ] ; then + COLOR="1;96m"; + elif [ "$2" == "success" ] ; then + COLOR="1;92m"; + elif [ "$2" == "warning" ] ; then + COLOR="1;93m"; + elif [ "$2" == "danger" ] ; then + COLOR="1;31m"; + else #white + COLOR="1;97m"; + fi + + printf "\e[$COLOR%-6s\e[m" "$1"; +} + if [[ $# -eq 0 ]] ; then - printf "Available commands:\n"; - printf " install\t\t Installs docker-sync gem on the host machine.\n"; - printf " up \t Starts docker-sync and runs docker compose.\n"; - printf " down \t\t Stops containers and docker-sync.\n"; - printf " trigger \t\t Manually triggers the synchronization of files.\n"; - printf " clean \t\t Removes all synched files from docker-sync container.\n"; + print_style "Invalid argument." 'danger'; printf " Available commands:\n"; + print_style " install" "success"; printf "\t\t Installs docker-sync gem on the host machine.\n"; + print_style " up " "success"; printf "\t Starts docker-sync and runs docker compose.\n"; + print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; + print_style " trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n"; + print_style " clean" "warning"; printf "\t\t Removes all synched files from docker-sync container.\n"; + exit 1 fi if [ "$1" == "up" ] ; then - printf "Initializing Docker Sync (may take several minutes the first time)"; + print_style "Initializing Docker Sync\n" 'info'; + print_style "(May take a long time (15min+) on the 'Looking for changes' step the first time)\n" 'warning'; docker-sync start; - printf "Initializing Docker Compose"; + print_style "Initializing Docker Compose\n" 'info'; shift; # removing first argument docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; elif [ "$1" == "down" ]; then - printf "Stopping Docker Compose"; + print_style "Stopping Docker Compose\n" 'info'; docker-compose down; - printf "Stopping Docker Sync"; + print_style "Stopping Docker Sync\n" 'info'; docker-sync stop; elif [ "$1" == "install" ]; then - printf "Installing docker-sync"; + print_style "Installing docker-sync" 'info'; gem install docker-sync; elif [ "$1" == "trigger" ]; then - printf "Manually triggering sync between host and docker-sync container."; + print_style "Manually triggering sync between host and docker-sync container.\n" 'info'; docker-sync sync; elif [ "$1" == "clean" ]; then - printf "Removing and cleaning up files from the docker-sync container."; + print_style "Removing and cleaning up files from the docker-sync container.\n" 'warning'; docker-sync clean; else - printf "Invalid argument. Use 'up','down','install','trigger' or 'clean' "; + print_style "Invalid argument. Use 'up','down','install','trigger' or 'clean'\n" 'danger'; fi From a38cecef923c453416b2ed351ea9ed957f15ac44 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 14:24:01 -0400 Subject: [PATCH 132/313] improving colors --- sync.sh | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/sync.sh b/sync.sh index 3cf8bf0a..8e8aa691 100755 --- a/sync.sh +++ b/sync.sh @@ -2,20 +2,22 @@ # prints colored text print_style () { - if [ "$2" == "info" ] ; then - COLOR="1;96m"; + COLOR="96m"; elif [ "$2" == "success" ] ; then - COLOR="1;92m"; + COLOR="92m"; elif [ "$2" == "warning" ] ; then - COLOR="1;93m"; + COLOR="93m"; elif [ "$2" == "danger" ] ; then - COLOR="1;31m"; + COLOR="41m"; else #white - COLOR="1;97m"; + COLOR="97m"; fi - printf "\e[$COLOR%-6s\e[m" "$1"; + STARTCOLOR="\e[1;$COLOR"; + ENDCOLOR="\e[m"; + + printf "$STARTCOLOR%b$ENDCOLOR" "$1"; } if [[ $# -eq 0 ]] ; then @@ -30,7 +32,7 @@ if [[ $# -eq 0 ]] ; then fi if [ "$1" == "up" ] ; then - print_style "Initializing Docker Sync\n" 'info'; + print_style "Initializing Docker Sync\n" "info"; print_style "(May take a long time (15min+) on the 'Looking for changes' step the first time)\n" 'warning'; docker-sync start; print_style "Initializing Docker Compose\n" 'info'; @@ -44,7 +46,7 @@ elif [ "$1" == "down" ]; then docker-sync stop; elif [ "$1" == "install" ]; then - print_style "Installing docker-sync" 'info'; + print_style "Installing docker-sync\n" 'info'; gem install docker-sync; elif [ "$1" == "trigger" ]; then @@ -56,5 +58,5 @@ elif [ "$1" == "clean" ]; then docker-sync clean; else - print_style "Invalid argument. Use 'up','down','install','trigger' or 'clean'\n" 'danger'; + print_style "Invalid argument. Use 'up','down','install','trigger' or 'clean'" 'danger'; fi From 8e20ec7617cd381cf762ee4e8938742b5816a768 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 14:36:15 -0400 Subject: [PATCH 133/313] improved colors --- sync.sh | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/sync.sh b/sync.sh index 8e8aa691..46b15864 100755 --- a/sync.sh +++ b/sync.sh @@ -2,6 +2,7 @@ # prints colored text print_style () { + if [ "$2" == "info" ] ; then COLOR="96m"; elif [ "$2" == "success" ] ; then @@ -21,7 +22,7 @@ print_style () { } if [[ $# -eq 0 ]] ; then - print_style "Invalid argument." 'danger'; printf " Available commands:\n"; + print_style "Invalid argument." "danger"; printf " Available commands:\n"; print_style " install" "success"; printf "\t\t Installs docker-sync gem on the host machine.\n"; print_style " up " "success"; printf "\t Starts docker-sync and runs docker compose.\n"; print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; @@ -33,30 +34,30 @@ fi if [ "$1" == "up" ] ; then print_style "Initializing Docker Sync\n" "info"; - print_style "(May take a long time (15min+) on the 'Looking for changes' step the first time)\n" 'warning'; + print_style "(May take a long time (15min+) on the 'Looking for changes' step the first time)\n" "warning"; docker-sync start; - print_style "Initializing Docker Compose\n" 'info'; + print_style "Initializing Docker Compose\n" "info"; shift; # removing first argument docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; elif [ "$1" == "down" ]; then - print_style "Stopping Docker Compose\n" 'info'; + print_style "Stopping Docker Compose\n" "info"; docker-compose down; - print_style "Stopping Docker Sync\n" 'info'; + print_style "Stopping Docker Sync\n" "info"; docker-sync stop; elif [ "$1" == "install" ]; then - print_style "Installing docker-sync\n" 'info'; + print_style "Installing docker-sync\n" "info"; gem install docker-sync; elif [ "$1" == "trigger" ]; then - print_style "Manually triggering sync between host and docker-sync container.\n" 'info'; + print_style "Manually triggering sync between host and docker-sync container.\n" "info"; docker-sync sync; elif [ "$1" == "clean" ]; then - print_style "Removing and cleaning up files from the docker-sync container.\n" 'warning'; + print_style "Removing and cleaning up files from the docker-sync container.\n" "warning"; docker-sync clean; else - print_style "Invalid argument. Use 'up','down','install','trigger' or 'clean'" 'danger'; + print_style "Invalid argument. Use 'up','down','install','trigger' or 'clean'" "danger"; fi From b0a6f2d68917f1b55467f3da94d57c75bef7140f Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 14:39:49 -0400 Subject: [PATCH 134/313] stopping if errors happen --- sync.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sync.sh b/sync.sh index 46b15864..bd320a76 100755 --- a/sync.sh +++ b/sync.sh @@ -35,15 +35,15 @@ fi if [ "$1" == "up" ] ; then print_style "Initializing Docker Sync\n" "info"; print_style "(May take a long time (15min+) on the 'Looking for changes' step the first time)\n" "warning"; - docker-sync start; - print_style "Initializing Docker Compose\n" "info"; - shift; # removing first argument + docker-sync start && + print_style "Initializing Docker Compose\n" "info" && + shift && # removing first argument docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; elif [ "$1" == "down" ]; then print_style "Stopping Docker Compose\n" "info"; - docker-compose down; - print_style "Stopping Docker Sync\n" "info"; + docker-compose down && + print_style "Stopping Docker Sync\n" "info" && docker-sync stop; elif [ "$1" == "install" ]; then From b7d3691c8d8eddaa5fef611ac577cef16f5249b9 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 14:41:35 -0400 Subject: [PATCH 135/313] resetting last change --- sync.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sync.sh b/sync.sh index bd320a76..46b15864 100755 --- a/sync.sh +++ b/sync.sh @@ -35,15 +35,15 @@ fi if [ "$1" == "up" ] ; then print_style "Initializing Docker Sync\n" "info"; print_style "(May take a long time (15min+) on the 'Looking for changes' step the first time)\n" "warning"; - docker-sync start && - print_style "Initializing Docker Compose\n" "info" && - shift && # removing first argument + docker-sync start; + print_style "Initializing Docker Compose\n" "info"; + shift; # removing first argument docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; elif [ "$1" == "down" ]; then print_style "Stopping Docker Compose\n" "info"; - docker-compose down && - print_style "Stopping Docker Sync\n" "info" && + docker-compose down; + print_style "Stopping Docker Sync\n" "info"; docker-sync stop; elif [ "$1" == "install" ]; then From 7fdda613a524d1b36f478d11036883bf5c849f3b Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 14:43:22 -0400 Subject: [PATCH 136/313] improving messages --- sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync.sh b/sync.sh index 46b15864..93010414 100755 --- a/sync.sh +++ b/sync.sh @@ -34,7 +34,7 @@ fi if [ "$1" == "up" ] ; then print_style "Initializing Docker Sync\n" "info"; - print_style "(May take a long time (15min+) on the 'Looking for changes' step the first time)\n" "warning"; + print_style "May take a long time (15 min+) the first time\n" "info"; docker-sync start; print_style "Initializing Docker Compose\n" "info"; shift; # removing first argument From e26ff8bb1e040d84eeb15b40c2d0aef4342b58ea Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 14:46:00 -0400 Subject: [PATCH 137/313] improving comments --- sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync.sh b/sync.sh index 93010414..d014e24f 100755 --- a/sync.sh +++ b/sync.sh @@ -34,7 +34,7 @@ fi if [ "$1" == "up" ] ; then print_style "Initializing Docker Sync\n" "info"; - print_style "May take a long time (15 min+) the first time\n" "info"; + print_style "May take a long time (15min+) the first time\n" "info"; docker-sync start; print_style "Initializing Docker Compose\n" "info"; shift; # removing first argument From 6bed8d14f159f7b11eb084a27c1eadd67e98d8a6 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 15:46:00 -0400 Subject: [PATCH 138/313] improved messages --- sync.sh | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/sync.sh b/sync.sh index d014e24f..d48eb18c 100755 --- a/sync.sh +++ b/sync.sh @@ -10,32 +10,37 @@ print_style () { elif [ "$2" == "warning" ] ; then COLOR="93m"; elif [ "$2" == "danger" ] ; then - COLOR="41m"; - else #white - COLOR="97m"; + COLOR="91m"; + else #default color + COLOR="0m"; fi - STARTCOLOR="\e[1;$COLOR"; - ENDCOLOR="\e[m"; + STARTCOLOR="\e[$COLOR"; + ENDCOLOR="\e[0m"; printf "$STARTCOLOR%b$ENDCOLOR" "$1"; } -if [[ $# -eq 0 ]] ; then - print_style "Invalid argument." "danger"; printf " Available commands:\n"; +display_options () { + printf "Available options:\n"; print_style " install" "success"; printf "\t\t Installs docker-sync gem on the host machine.\n"; - print_style " up " "success"; printf "\t Starts docker-sync and runs docker compose.\n"; + print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n"; print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; print_style " trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n"; - print_style " clean" "warning"; printf "\t\t Removes all synched files from docker-sync container.\n"; + print_style " clean" "warning"; printf "\t\t Removes all files from the docker-sync container.\n"; +} +if [[ $# -eq 0 ]] ; then + print_style "Missing arguments.\n" "danger"; + display_options; exit 1 fi if [ "$1" == "up" ] ; then print_style "Initializing Docker Sync\n" "info"; - print_style "May take a long time (15min+) the first time\n" "info"; + print_style "May take a long time (15min+) the first run\n" "info"; docker-sync start; + print_style "Initializing Docker Compose\n" "info"; shift; # removing first argument docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; @@ -43,6 +48,7 @@ if [ "$1" == "up" ] ; then elif [ "$1" == "down" ]; then print_style "Stopping Docker Compose\n" "info"; docker-compose down; + print_style "Stopping Docker Sync\n" "info"; docker-sync stop; @@ -59,5 +65,7 @@ elif [ "$1" == "clean" ]; then docker-sync clean; else - print_style "Invalid argument. Use 'up','down','install','trigger' or 'clean'" "danger"; + print_style "Invalid arguments.\n" "danger"; + display_options; + exit 1 fi From a0f1d39ce42e6cb3f1fff618cf1c4552ffdaf3b9 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 16:03:33 -0400 Subject: [PATCH 139/313] added bash option --- sync.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/sync.sh b/sync.sh index d48eb18c..4dec67a7 100755 --- a/sync.sh +++ b/sync.sh @@ -1,5 +1,19 @@ #!/bin/bash +# This shell script is an optional tool to simplify +# the installation and usage of laradock with docker-sync. + +# To run, make sure to add permissions to this file: +# chmod 755 sync.sh + +# Usage: +# Install docker-sync: ./sync.sh install +# Start workspace with nginx and mysql: ./sync.sh up nginx mysql +# Open bash inside the workspace: ./sync.sh bash +# Stop workspace: ./sync.sh down +# Force sync: ./sync.sh trigger +# Clean synced files: ./sync.sh clean + # prints colored text print_style () { @@ -26,6 +40,7 @@ display_options () { print_style " install" "success"; printf "\t\t Installs docker-sync gem on the host machine.\n"; print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n"; print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; + print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace\n"; print_style " trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n"; print_style " clean" "warning"; printf "\t\t Removes all files from the docker-sync container.\n"; } @@ -56,6 +71,9 @@ elif [ "$1" == "install" ]; then print_style "Installing docker-sync\n" "info"; gem install docker-sync; +elif [ "$1" == "bash" ]; then + docker-compose exec workspace bash; + elif [ "$1" == "trigger" ]; then print_style "Manually triggering sync between host and docker-sync container.\n" "info"; docker-sync sync; @@ -64,6 +82,7 @@ elif [ "$1" == "clean" ]; then print_style "Removing and cleaning up files from the docker-sync container.\n" "warning"; docker-sync clean; + else print_style "Invalid arguments.\n" "danger"; display_options; From a670dd91cd58a23bc20f46f24543104c83c9c3d7 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 16:24:49 -0400 Subject: [PATCH 140/313] adding base functions --- sync.sh => laradock.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename sync.sh => laradock.sh (94%) diff --git a/sync.sh b/laradock.sh similarity index 94% rename from sync.sh rename to laradock.sh index 4dec67a7..cd57a300 100755 --- a/sync.sh +++ b/laradock.sh @@ -37,12 +37,12 @@ print_style () { display_options () { printf "Available options:\n"; - print_style " install" "success"; printf "\t\t Installs docker-sync gem on the host machine.\n"; + print_style " install" "info"; printf "\t\t Installs docker-sync gem on the host machine.\n"; print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n"; print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; - print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace\n"; + print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace.\n"; print_style " trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n"; - print_style " clean" "warning"; printf "\t\t Removes all files from the docker-sync container.\n"; + print_style " clean" "warning"; printf "\t\t Removes all files from docker-sync.\n"; } if [[ $# -eq 0 ]] ; then From 7b180524e3d07ea2580082e41df12df4c888a912 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 16:24:59 -0400 Subject: [PATCH 141/313] adding base functions --- laradock.sh | 79 +++++++++++++++++++++++++++++++++-------------------- 1 file changed, 50 insertions(+), 29 deletions(-) diff --git a/laradock.sh b/laradock.sh index cd57a300..a682e5af 100755 --- a/laradock.sh +++ b/laradock.sh @@ -8,9 +8,9 @@ # Usage: # Install docker-sync: ./sync.sh install -# Start workspace with nginx and mysql: ./sync.sh up nginx mysql +# Start sync and services with nginx and mysql: ./sync.sh up nginx mysql # Open bash inside the workspace: ./sync.sh bash -# Stop workspace: ./sync.sh down +# Stop containers and sync: ./sync.sh down # Force sync: ./sync.sh trigger # Clean synced files: ./sync.sh clean @@ -51,40 +51,61 @@ if [[ $# -eq 0 ]] ; then exit 1 fi -if [ "$1" == "up" ] ; then - print_style "Initializing Docker Sync\n" "info"; - print_style "May take a long time (15min+) the first run\n" "info"; - docker-sync start; - - print_style "Initializing Docker Compose\n" "info"; +if [ "$1" == "sync" ] ; then shift; # removing first argument - docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; + print_style "Using Docker Sync\n" "info"; -elif [ "$1" == "down" ]; then - print_style "Stopping Docker Compose\n" "info"; - docker-compose down; + if [ "$1" == "up" ] ; then + print_style "Initializing Docker Sync\n" "info"; + print_style "May take a long time (15min+) the first run\n" "info"; + docker-sync start; - print_style "Stopping Docker Sync\n" "info"; - docker-sync stop; + print_style "Initializing Docker Compose\n" "info"; + shift; # removing first argument + docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; -elif [ "$1" == "install" ]; then - print_style "Installing docker-sync\n" "info"; - gem install docker-sync; + elif [ "$1" == "down" ]; then + print_style "Stopping Docker Compose\n" "info"; + docker-compose down; -elif [ "$1" == "bash" ]; then - docker-compose exec workspace bash; + print_style "Stopping Docker Sync\n" "info"; + docker-sync stop; -elif [ "$1" == "trigger" ]; then - print_style "Manually triggering sync between host and docker-sync container.\n" "info"; - docker-sync sync; - -elif [ "$1" == "clean" ]; then - print_style "Removing and cleaning up files from the docker-sync container.\n" "warning"; - docker-sync clean; + elif [ "$1" == "install" ]; then + print_style "Installing docker-sync\n" "info"; + gem install docker-sync; + elif [ "$1" == "trigger" ]; then + print_style "Manually triggering sync between host and docker-sync container.\n" "info"; + docker-sync sync; + elif [ "$1" == "clean" ]; then + print_style "Removing and cleaning up files from the docker-sync container.\n" "warning"; + docker-sync clean; + else + print_style "Invalid arguments.\n" "danger"; + display_options; + exit 1 + fi else - print_style "Invalid arguments.\n" "danger"; - display_options; - exit 1 + print_style "Not using synced files might be slow on OSX and Windows. Use 'sync' option to speed up.\n"; + + if [ "$1" == "up" ] ; then + print_style "Initializing Docker Compose\n" "info"; + shift; # removing first argument + docker-compose up -d ${@}; + + elif [ "$1" == "down" ]; then + print_style "Stopping Docker Compose\n" "info"; + docker-compose down; + + elif [ "$1" == "bash" ]; then + docker-compose exec workspace bash; + + else + print_style "Invalid arguments.\n" "danger"; + display_options; + exit 1 + fi + fi From 1d2f385586e39a2513b60bf83d7e2245c578bb6d Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 16:36:25 -0400 Subject: [PATCH 142/313] adding options --- laradock.sh | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/laradock.sh b/laradock.sh index a682e5af..e0a00242 100755 --- a/laradock.sh +++ b/laradock.sh @@ -7,12 +7,12 @@ # chmod 755 sync.sh # Usage: -# Install docker-sync: ./sync.sh install -# Start sync and services with nginx and mysql: ./sync.sh up nginx mysql -# Open bash inside the workspace: ./sync.sh bash -# Stop containers and sync: ./sync.sh down -# Force sync: ./sync.sh trigger -# Clean synced files: ./sync.sh clean +# Install docker-sync: ./laradock.sh sync install +# Start sync and services with nginx and mysql: ./laradock.sh sync up nginx mysql +# Stop containers and sync: ./laradock.sh sync down +# Open bash inside the workspace: ./laradock.sh bash +# Force sync: ./laradock.sh sync trigger +# Clean synced files: ./laradock.sh sync clean # prints colored text print_style () { @@ -53,7 +53,7 @@ fi if [ "$1" == "sync" ] ; then shift; # removing first argument - print_style "Using Docker Sync\n" "info"; + print_style "Using docker-sync to speed up Docker on OSX and Windows.\n" "success"; if [ "$1" == "up" ] ; then print_style "Initializing Docker Sync\n" "info"; @@ -88,7 +88,7 @@ if [ "$1" == "sync" ] ; then exit 1 fi else - print_style "Not using synced files might be slow on OSX and Windows. Use 'sync' option to speed up.\n"; + print_style "Not using docker-sync might might be slow on OSX and Windows. Use 'sync' option to speed up.\n"; if [ "$1" == "up" ] ; then print_style "Initializing Docker Compose\n" "info"; @@ -99,6 +99,10 @@ else print_style "Stopping Docker Compose\n" "info"; docker-compose down; + elif [ "$1" == "build" ]; then + print_style "Building workspace\n" "info"; + docker-compose build workspace; + elif [ "$1" == "bash" ]; then docker-compose exec workspace bash; From 722e73a3e62bda047a1605fbf8c632f6de303dd8 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 16:58:07 -0400 Subject: [PATCH 143/313] kept only sync specific functions --- laradock.sh => sync.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) rename laradock.sh => sync.sh (82%) diff --git a/laradock.sh b/sync.sh similarity index 82% rename from laradock.sh rename to sync.sh index e0a00242..871a9607 100755 --- a/laradock.sh +++ b/sync.sh @@ -37,12 +37,16 @@ print_style () { display_options () { printf "Available options:\n"; - print_style " install" "info"; printf "\t\t Installs docker-sync gem on the host machine.\n"; - print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n"; - print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; + print_style " up [services]" "success"; printf "\t Starts workspace and services.\n"; + print_style " down" "success"; printf "\t\t\t Stops services.\n"; print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace.\n"; - print_style " trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n"; - print_style " clean" "warning"; printf "\t\t Removes all files from docker-sync.\n"; + print_style " build" "success"; printf "\t\t\t Builds images.\n"; + + print_style " sync install" "info"; printf "\t\t Installs docker-sync gem on the host machine.\n"; + print_style " sync up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n"; + print_style " sync down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; + print_style " sync trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n"; + print_style " sync clean" "warning"; printf "\t\t Removes all files from docker-sync.\n"; } if [[ $# -eq 0 ]] ; then From 97d198e96777dcd8e3c9ae3b2a17f22fa6f08a13 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 16:58:17 -0400 Subject: [PATCH 144/313] sync functions only --- sync.sh | 105 ++++++++++++++++++++------------------------------------ 1 file changed, 37 insertions(+), 68 deletions(-) diff --git a/sync.sh b/sync.sh index 871a9607..a1f8bbbf 100755 --- a/sync.sh +++ b/sync.sh @@ -7,12 +7,12 @@ # chmod 755 sync.sh # Usage: -# Install docker-sync: ./laradock.sh sync install -# Start sync and services with nginx and mysql: ./laradock.sh sync up nginx mysql -# Stop containers and sync: ./laradock.sh sync down -# Open bash inside the workspace: ./laradock.sh bash -# Force sync: ./laradock.sh sync trigger -# Clean synced files: ./laradock.sh sync clean +# Install docker-sync: ./sync.sh install +# Start sync and services with nginx and mysql: ./sync.sh up nginx mysql +# Stop containers and sync: ./sync.sh down +# Open bash inside the workspace: ./sync.sh bash +# Force sync: ./sync.sh sync trigger +# Clean synced files: ./sync.sh clean # prints colored text print_style () { @@ -37,16 +37,12 @@ print_style () { display_options () { printf "Available options:\n"; - print_style " up [services]" "success"; printf "\t Starts workspace and services.\n"; - print_style " down" "success"; printf "\t\t\t Stops services.\n"; + print_style " install" "info"; printf "\t\t Installs docker-sync gem on the host machine.\n"; + print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n"; + print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace.\n"; - print_style " build" "success"; printf "\t\t\t Builds images.\n"; - - print_style " sync install" "info"; printf "\t\t Installs docker-sync gem on the host machine.\n"; - print_style " sync up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n"; - print_style " sync down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; - print_style " sync trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n"; - print_style " sync clean" "warning"; printf "\t\t Removes all files from docker-sync.\n"; + print_style " trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n"; + print_style " clean" "warning"; printf "\t\t Removes all files from docker-sync.\n"; } if [[ $# -eq 0 ]] ; then @@ -55,65 +51,38 @@ if [[ $# -eq 0 ]] ; then exit 1 fi -if [ "$1" == "sync" ] ; then +if [ "$1" == "up" ] ; then + print_style "Initializing Docker Sync\n" "info"; + print_style "May take a long time (15min+) the first run\n" "info"; + docker-sync start; + + print_style "Initializing Docker Compose\n" "info"; shift; # removing first argument - print_style "Using docker-sync to speed up Docker on OSX and Windows.\n" "success"; + docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; - if [ "$1" == "up" ] ; then - print_style "Initializing Docker Sync\n" "info"; - print_style "May take a long time (15min+) the first run\n" "info"; - docker-sync start; +elif [ "$1" == "down" ]; then + print_style "Stopping Docker Compose\n" "info"; + docker-compose down; - print_style "Initializing Docker Compose\n" "info"; - shift; # removing first argument - docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@}; + print_style "Stopping Docker Sync\n" "info"; + docker-sync stop; - elif [ "$1" == "down" ]; then - print_style "Stopping Docker Compose\n" "info"; - docker-compose down; +elif [ "$1" == "bash" ]; then + docker-compose exec workspace bash; - print_style "Stopping Docker Sync\n" "info"; - docker-sync stop; +elif [ "$1" == "install" ]; then + print_style "Installing docker-sync\n" "info"; + gem install docker-sync; - elif [ "$1" == "install" ]; then - print_style "Installing docker-sync\n" "info"; - gem install docker-sync; +elif [ "$1" == "trigger" ]; then + print_style "Manually triggering sync between host and docker-sync container.\n" "info"; + docker-sync sync; - elif [ "$1" == "trigger" ]; then - print_style "Manually triggering sync between host and docker-sync container.\n" "info"; - docker-sync sync; - - elif [ "$1" == "clean" ]; then - print_style "Removing and cleaning up files from the docker-sync container.\n" "warning"; - docker-sync clean; - else - print_style "Invalid arguments.\n" "danger"; - display_options; - exit 1 - fi +elif [ "$1" == "clean" ]; then + print_style "Removing and cleaning up files from the docker-sync container.\n" "warning"; + docker-sync clean; else - print_style "Not using docker-sync might might be slow on OSX and Windows. Use 'sync' option to speed up.\n"; - - if [ "$1" == "up" ] ; then - print_style "Initializing Docker Compose\n" "info"; - shift; # removing first argument - docker-compose up -d ${@}; - - elif [ "$1" == "down" ]; then - print_style "Stopping Docker Compose\n" "info"; - docker-compose down; - - elif [ "$1" == "build" ]; then - print_style "Building workspace\n" "info"; - docker-compose build workspace; - - elif [ "$1" == "bash" ]; then - docker-compose exec workspace bash; - - else - print_style "Invalid arguments.\n" "danger"; - display_options; - exit 1 - fi - + print_style "Invalid arguments.\n" "danger"; + display_options; + exit 1 fi From a1f8ef9614e4ff6ec737264a3c82d69fca315558 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 17:15:07 -0400 Subject: [PATCH 145/313] adding default services --- config.txt | 1 + sync-services.txt | 1 + sync.sh | 69 ++++++++++++++++++++++++----------------------- 3 files changed, 38 insertions(+), 33 deletions(-) create mode 100644 config.txt create mode 100644 sync-services.txt diff --git a/config.txt b/config.txt new file mode 100644 index 00000000..072cf128 --- /dev/null +++ b/config.txt @@ -0,0 +1 @@ +THIS ARE THE DEFAILTS diff --git a/sync-services.txt b/sync-services.txt new file mode 100644 index 00000000..dbe16ddf --- /dev/null +++ b/sync-services.txt @@ -0,0 +1 @@ +nginx mysql \ No newline at end of file diff --git a/sync.sh b/sync.sh index a1f8bbbf..9ce4a600 100755 --- a/sync.sh +++ b/sync.sh @@ -18,71 +18,74 @@ print_style () { if [ "$2" == "info" ] ; then - COLOR="96m"; + COLOR="96m" elif [ "$2" == "success" ] ; then - COLOR="92m"; + COLOR="92m" elif [ "$2" == "warning" ] ; then - COLOR="93m"; + COLOR="93m" elif [ "$2" == "danger" ] ; then - COLOR="91m"; + COLOR="91m" else #default color - COLOR="0m"; + COLOR="0m" fi - STARTCOLOR="\e[$COLOR"; - ENDCOLOR="\e[0m"; + STARTCOLOR="\e[$COLOR" + ENDCOLOR="\e[0m" - printf "$STARTCOLOR%b$ENDCOLOR" "$1"; + printf "$STARTCOLOR%b$ENDCOLOR" "$1" } display_options () { printf "Available options:\n"; - print_style " install" "info"; printf "\t\t Installs docker-sync gem on the host machine.\n"; - print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n"; - print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n"; - print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace.\n"; - print_style " trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n"; - print_style " clean" "warning"; printf "\t\t Removes all files from docker-sync.\n"; + print_style " install" "info"; printf "\t\t Installs docker-sync gem on the host machine.\n" + print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n" + print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n" + print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace.\n" + print_style " trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n" + print_style " clean" "warning"; printf "\t\t Removes all files from docker-sync.\n" } if [[ $# -eq 0 ]] ; then - print_style "Missing arguments.\n" "danger"; - display_options; + print_style "Missing arguments.\n" "danger" + display_options exit 1 fi if [ "$1" == "up" ] ; then - print_style "Initializing Docker Sync\n" "info"; - print_style "May take a long time (15min+) the first run\n" "info"; + value=$( Date: Sat, 15 Jul 2017 17:16:30 -0400 Subject: [PATCH 146/313] sdfasdf --- sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync.sh b/sync.sh index 9ce4a600..f5144a0a 100755 --- a/sync.sh +++ b/sync.sh @@ -61,7 +61,7 @@ if [ "$1" == "up" ] ; then print_style "Initializing Docker Compose\n" "info" shift # removing first argument - docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d "$value" + docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d $value elif [ "$1" == "down" ]; then print_style "Stopping Docker Compose\n" "info" From 8af22b5b376a3a9d8655aa56ad45292c2f4e2314 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 18:32:05 -0400 Subject: [PATCH 147/313] finalizing changes --- sync-services.txt | 1 - sync.sh | 21 +++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) delete mode 100644 sync-services.txt diff --git a/sync-services.txt b/sync-services.txt deleted file mode 100644 index dbe16ddf..00000000 --- a/sync-services.txt +++ /dev/null @@ -1 +0,0 @@ -nginx mysql \ No newline at end of file diff --git a/sync.sh b/sync.sh index f5144a0a..9a7df180 100755 --- a/sync.sh +++ b/sync.sh @@ -3,15 +3,19 @@ # This shell script is an optional tool to simplify # the installation and usage of laradock with docker-sync. +# Make sure that the DOCKER_SYNC_STRATEGY is set in the .env +# DOCKER_SYNC_STRATEGY=native_osx # osx +# DOCKER_SYNC_STRATEGY=unison # windows + # To run, make sure to add permissions to this file: # chmod 755 sync.sh -# Usage: +# USAGE EXAMPLE: # Install docker-sync: ./sync.sh install # Start sync and services with nginx and mysql: ./sync.sh up nginx mysql # Stop containers and sync: ./sync.sh down # Open bash inside the workspace: ./sync.sh bash -# Force sync: ./sync.sh sync trigger +# Force sync: ./sync.sh sync # Clean synced files: ./sync.sh clean # prints colored text @@ -41,8 +45,8 @@ display_options () { print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n" print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n" print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace.\n" - print_style " trigger" "success"; printf "\t\t Manually triggers the synchronization of files.\n" - print_style " clean" "warning"; printf "\t\t Removes all files from docker-sync.\n" + print_style " sync" "success"; printf "\t\t Manually triggers the synchronization of files.\n" + print_style " clean" "danger"; printf "\t\t Removes all files from docker-sync.\n" } if [[ $# -eq 0 ]] ; then @@ -52,16 +56,13 @@ if [[ $# -eq 0 ]] ; then fi if [ "$1" == "up" ] ; then - value=$( Date: Sat, 15 Jul 2017 18:47:02 -0400 Subject: [PATCH 148/313] polishing last details --- docker-compose.sync.yml | 2 +- docker-sync.yml | 2 +- sync.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.sync.yml b/docker-compose.sync.yml index b4b383a7..20bb016a 100644 --- a/docker-compose.sync.yml +++ b/docker-compose.sync.yml @@ -14,4 +14,4 @@ services: volumes: applications-sync: external: - name: "applications-host-sync" + name: "applications-docker-sync" diff --git a/docker-sync.yml b/docker-sync.yml index 0a3b4394..bb70a26e 100644 --- a/docker-sync.yml +++ b/docker-sync.yml @@ -3,7 +3,7 @@ version: "2" options: verbose: true syncs: - applications-host-sync: # name of the sync volume + applications-docker-sync: # name of the intermediary sync volume compose-dev-file-path: 'docker-compose.sync.yml' # docker-compose override file src: '${APPLICATION}' # host source directory diff --git a/sync.sh b/sync.sh index 9a7df180..1a70283b 100755 --- a/sync.sh +++ b/sync.sh @@ -57,7 +57,7 @@ fi if [ "$1" == "up" ] ; then print_style "Initializing Docker Sync\n" "info" - print_style "May take a long time (15min+) the first run\n" "info" + print_style "May take a long time (15min+) on the first run\n" "info" docker-sync start; print_style "Initializing Docker Compose\n" "info" From 829a5b5acff3734753d01cd61ea452001a637ed1 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 18:53:01 -0400 Subject: [PATCH 149/313] cleaning up --- config.txt | 1 - php-fpm/php71.ini | 4 ++-- sync.sh | 3 --- 3 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 config.txt diff --git a/config.txt b/config.txt deleted file mode 100644 index 072cf128..00000000 --- a/config.txt +++ /dev/null @@ -1 +0,0 @@ -THIS ARE THE DEFAILTS diff --git a/php-fpm/php71.ini b/php-fpm/php71.ini index 2c39db84..c8242dc0 100644 --- a/php-fpm/php71.ini +++ b/php-fpm/php71.ini @@ -474,7 +474,7 @@ error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT ; Development Value: On ; Production Value: Off ; http://php.net/display-errors -display_errors = On +display_errors = Off ; The display of errors which occur during PHP's startup sequence are handled ; separately from display_errors. PHP's default behavior is to suppress those @@ -485,7 +485,7 @@ display_errors = On ; Development Value: On ; Production Value: Off ; http://php.net/display-startup-errors -display_startup_errors = On +display_startup_errors = Off ; Besides displaying errors, PHP can also log errors to locations such as a ; server-specific log, STDERR, or a location specified by the error_log diff --git a/sync.sh b/sync.sh index 1a70283b..2dc1d209 100755 --- a/sync.sh +++ b/sync.sh @@ -14,9 +14,6 @@ # Install docker-sync: ./sync.sh install # Start sync and services with nginx and mysql: ./sync.sh up nginx mysql # Stop containers and sync: ./sync.sh down -# Open bash inside the workspace: ./sync.sh bash -# Force sync: ./sync.sh sync -# Clean synced files: ./sync.sh clean # prints colored text print_style () { From 1e2d368e439523944a6833afd450b3ef159fb146 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sat, 15 Jul 2017 19:28:02 -0400 Subject: [PATCH 150/313] improved docs --- sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync.sh b/sync.sh index 2dc1d209..6955358d 100755 --- a/sync.sh +++ b/sync.sh @@ -42,7 +42,7 @@ display_options () { print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n" print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n" print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace.\n" - print_style " sync" "success"; printf "\t\t Manually triggers the synchronization of files.\n" + print_style " sync" "info"; printf "\t\t\t Manually triggers the synchronization of files.\n" print_style " clean" "danger"; printf "\t\t Removes all files from docker-sync.\n" } From 6b0ee109886883ee1fd017dff691cd407387f384 Mon Sep 17 00:00:00 2001 From: Arian Acosta Date: Sun, 16 Jul 2017 10:06:12 -0400 Subject: [PATCH 151/313] added docker sync documentation --- DOCUMENTATION/content/documentation/index.md | 73 ++++++++++++++++++-- 1 file changed, 67 insertions(+), 6 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index e4a7ced1..0b4a3f05 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -156,21 +156,82 @@ You might use the `--no-cache` option if you want full rebuilding (`docker-compo
-## Docker-Sync +## Speed up with docker-sync -Docker on the Mac [is slow](https://github.com/docker/for-mac/issues/77), at the time of writing. Especially for larger projects, this can be a problem. The problem is [older than March 2016](https://forums.docker.com/t/file-access-in-mounted-volumes-extremely-slow-cpu-bound/8076) - as it's a such a long-running issue, we're including it in the docs here. +Docker for Mac is [slow](https://github.com/docker/for-mac/issues/77) due to poor performance when the application accesses files shared with the host machine. +One solution is to use [docker-sync](https://github.com/EugenMayer/docker-sync). -The problem originates in bind-mount performance on MacOS. Docker for Mac uses osxfs by default. This is not without reason, it has [a lot of advantages](https://docs.docker.com/docker-for-mac/osxfs/). +In simple terms, docker-sync creates a docker container with a copy of all the application files that can be accessed very quickly from the other containers. +On the other hand, docker-sync runs a process on the host machine that continuously tracks and updates files changes from the host to this intermediate container. -Solutions to resolve this issue are easily installed however, we're hoping it'll be fixed by Docker themselves over time. They are currently [adding "cached and delegated" options](https://github.com/docker/for-mac/issues/77#issuecomment-283996750), which is partly available for Docker Edge. +Out of the box, it comes pre-configured for OS X, but using it on Windows is very easy to set-up by modifying the `DOCKER_SYNC_STRATEGY` on the `.env` -Options are [to switch over to NFS](https://github.com/IFSight/d4m-nfs) which is the simplest. The fastest option is [Docker-Sync "native"](https://github.com/EugenMayer/docker-sync) which is still quite easy to install. +#### Usage -Clone [this repo](https://github.com/EugenMayer/docker-sync-boilerplate) to your machine, copy `default/docker-sync.yml` to your Laradock directory and run `docker-sync-stack start`. Be sure to use `docker-sync-stack clean` to stop and `docker-compose build` to rebuild. More information can be found [in the Docker-sync docs](https://github.com/EugenMayer/docker-sync). +Laradock comes with `sync.sh`, an optional bash script, that automates installing, running and stopping docker-sync. Note that to run the bash script you may need to change the permissions `chmod 755 sync.sh` + +1) Configure your Laradock environment as you would normally do and test your application to make sure that your sites are running correctly. + +2) Make sure to set `DOCKER_SYNC_STRATEGY` on the `.env`. Read the [syncing strategies](https://github.com/EugenMayer/docker-sync/wiki/8.-Strategies) for details. +``` +# osx: 'native_osx' (default) +# windows: 'unison' +# linux: docker-sync not required + +DOCKER_SYNC_STRATEGY=native_osx +``` + +2) Install the docker-sync gem on the host-machine: +```bash +./sync.sh install +``` +3) Start docker-sync and the Laradock environment. +Specify the services you want to run, as you would normally do with `docker-compose up` +```bash +./sync.sh up nginx mysql +``` +Please note that the first time docker-sync runs, it will copy all the files to the intermediate container and that may take a very long time (15min+). +4) To stop the environment and docker-sync do: +```bash +./sync.sh down +``` + +#### Setting up Aliases (optional) + +You may create bash profile aliases to avoid having to remember and type these commands for everyday development. +Add the following lines to your `~/.bash_profile`: + +```bash +alias devup="cd /PATH_TO_LARADOCK/laradock; ./sync.sh up nginx mysql" #add your services +alias devbash="cd /PATH_TO_LARADOCK/laradock; ./sync.sh bash" +alias devdown="cd /PATH_TO_LARADOCK/laradock; ./sync.sh down" +``` + +Now from any location on your machine, you can simply run `devup`, `devbash` and `devdown`. +#### Additional Commands + +Opening bash on the workspace container (to run artisan for example): + ```bash + ./sync.sh bash + ``` +Manually triggering the synchronization of the files: +```bash +./sync.sh sync +``` +Removing and cleaning up the files and the docker-sync container. Use only if you want to rebuild or remove docker-sync completely. The files on the host will be kept untouched. +```bash +./sync.sh clean +``` +**Additional Notes:** +- You may run laradock with or without docker-sync at any time using with the same `.env` and `docker-compose.yml`, because the configuration is overridden automatically when docker-sync is used. +- You may inspect the `sync.sh` script to learn each of the commands and even add custom ones. +- If a container cannot access the files on docker-sync, you may need to set a user on the Dockerfile of that container with an id of 1000 (this is the UID that nginx and php-fpm have configured on laradock). Alternatively, you may change the permissions to 777, but this is **not** recommended. + +Visit the [docker-sync documentation](https://github.com/EugenMayer/docker-sync/wiki) for more details.
From e496a82150e487eddfb823d01c9fe4e68cd01f43 Mon Sep 17 00:00:00 2001 From: stainlessphil Date: Thu, 20 Jul 2017 10:52:13 -0400 Subject: [PATCH 152/313] Xdebug configuration for Linux on PhpStorm Added images and explanations for setting up remote debugging for PhpStorm on Linux Also modified slightly Install Xdebug section to keep reading consistent --- DOCUMENTATION/content/documentation/index.md | 20 ++++++++++++++---- .../configuration/debugConfiguration.png | Bin 0 -> 87122 bytes .../configuration/serverConfiguration.png | Bin 0 -> 65876 bytes 3 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/linux/configuration/debugConfiguration.png create mode 100644 DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/linux/configuration/serverConfiguration.png diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 0b4a3f05..22f0a850 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -394,9 +394,7 @@ It should be like this: ... ``` -2 - Re-build the containers `docker-compose build workspace php-fpm` - -3 - Open `laradock/workspace/xdebug.ini` and/or `laradock/php-fpm/xdebug.ini` and enable at least the following configurations: +2 - Open `laradock/workspace/xdebug.ini` and `laradock/php-fpm/xdebug.ini` and enable at least the following configurations: ``` xdebug.remote_autostart=1 @@ -404,11 +402,25 @@ xdebug.remote_enable=1 xdebug.remote_connect_back=1 ``` -For information on how to configure xDebug with your IDE and work it out, check this [Repository](https://github.com/LarryEitel/laravel-laradock-phpstorm). +3 - Re-build the containers `docker-compose build workspace php-fpm` + +For information on how to configure xDebug with your IDE and work it out, check this [Repository](https://github.com/LarryEitel/laravel-laradock-phpstorm) or follow up on the next section if you use linux and PhpStorm. + +## Setup remote debugging for PhpStorm on Linux + - Make sure you have followed the steps above in the [Install Xdebug section](http://laradock.io/documentation/#install-xdebug). + - Make sure Xdebug accepts connections and listens on port 9000. (Should be default configuration). + +![Debug Configuration](/images/photos/PHPStorm/linux/configuration/debugConfiguration.png "Debug Configuration"). + + - Create a server with name `laradock` (matches **PHP_IDE_CONFIG** key in environment file) and make sure to map project root path with server correctly. + +![Server Configuration](/images/photos/PHPStorm/linux/configuration/serverConfiguration.png "Server Configuration"). + + - Start listening for debug connections, place a breakpoint and you are good to go !
diff --git a/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/linux/configuration/debugConfiguration.png b/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/linux/configuration/debugConfiguration.png new file mode 100644 index 0000000000000000000000000000000000000000..e69d539502c859d5c438befc18d2e1041d656095 GIT binary patch literal 87122 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 literal 0 HcmV?d00001 From e671f4c929a96d35fbac09e4766a45ba7d1ee838 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 26 Jul 2017 02:40:26 +0300 Subject: [PATCH 153/313] Update PULL_REQUEST_TEMPLATE.md context --- .github/PULL_REQUEST_TEMPLATE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 567ed506..9160f018 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,7 +1,7 @@ -### Thank you for contributing to Laradock. + -##### Make sure you completed the basic 3 steps below: +##### I completed the 3 steps below: -- [] I've read the simple [Contribution Guide](http://laradock.io/contributing). +- [] I've read the [Contribution Guide](http://laradock.io/contributing). - [] I've updated the **documentation**. (refer to [this](http://laradock.io/contributing/#update-the-documentation-site) for how to do so). - [] I enjoyed my time contributing and making developer's life easier :) From d32cfb31b16b419cebfc5f86fa584caf1e4d2efa Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 26 Jul 2017 02:42:24 +0300 Subject: [PATCH 154/313] update ISSUE_TEMPLATE.md context --- .github/ISSUE_TEMPLATE.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 4cb3eea4..eff16ef7 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -5,22 +5,19 @@ - System info disto/version: ### Issue: -##### What seems to be going wrong? - + _____ ### Expected behavior: -##### What should be happening instead? - + _____ ### Reproduce: -##### How might we be able to reproduce the error? - + _____ ### Relevant Code: ``` -// place code here +// place a code sample here ``` From f8527897201b2508e96df5c422192e9b2cbb19b5 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 26 Jul 2017 03:27:24 +0300 Subject: [PATCH 155/313] update some `guide` format in the documentation --- DOCUMENTATION/content/guides/index.md | 36 ++++++++++++++++----------- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/DOCUMENTATION/content/guides/index.md b/DOCUMENTATION/content/guides/index.md index ffc0c3e6..e7de20a4 100644 --- a/DOCUMENTATION/content/guides/index.md +++ b/DOCUMENTATION/content/guides/index.md @@ -326,6 +326,7 @@ Set the following variables: - `laradock/php-fpm/xdebug.ini` Set the following variables: + ``` xdebug.remote_autostart=1 xdebug.remote_enable=1 @@ -336,34 +337,39 @@ xdebug.cli_color=1 ### Need to clean house first? + Make sure you are starting with a clean state. For example, do you have other Laradock containers and images? Here are a few things I use to clean things up. - Delete all containers using `grep laradock_` on the names, see: [Remove all containers based on docker image name](https://linuxconfig.org/remove-all-containners-based-on-docker-image-name). + `docker ps -a | awk '{ print $1,$2 }' | grep laradock_ | awk '{print $1}' | xargs -I {} docker rm {}` - Delete all images containing `laradock`. + `docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {}` **Note:** This will only delete images that were built with `Laradock`, **NOT** `laradock/*` which are pulled down by `Laradock` such as `laradock/workspace`, etc. **Note:** Some may fail with: `Error response from daemon: conflict: unable to delete 3f38eaed93df (cannot be forced) - image has dependent child images` - I added this to my `.bashrc` to remove orphaned images. - ``` - dclean() { - processes=`docker ps -q -f status=exited` - if [ -n "$processes" ]; thend - docker rm $processes - fi - images=`docker images -q -f dangling=true` - if [ -n "$images" ]; then - docker rmi $images - fi - } - ``` +``` +dclean() { + processes=`docker ps -q -f status=exited` + if [ -n "$processes" ]; thend + docker rm $processes + fi + + images=`docker images -q -f dangling=true` + if [ -n "$images" ]; then + docker rmi $images + fi +} +``` - If you frequently switch configurations for Laradock, you may find that adding the following and added to your `.bashrc` or equivalent useful: + ``` # remove laravel* containers # remove laravel_* images @@ -406,14 +412,14 @@ laradock_php-fpm_1 php-fpm Up 9000/tcp laradock_volumes_data_1 true Exit 0 laradock_volumes_source_1 true Exit 0 laradock_workspace_1 /sbin/my_init Up 0.0.0.0:2222->22/tcp - - ``` ## Enable xDebug on php-fpm + In a host terminal sitting in the laradock folder, run: `.php-fpm/xdebug status` You should see something like the following: + ``` xDebug status laradock_php-fpm_1 @@ -422,6 +428,7 @@ Copyright (c) 1997-2016 The PHP Group Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies with Xdebug v2.4.1, Copyright (c) 2002-2016, by Derick Rethans ``` + Other commands include `.php-fpm/xdebug start | stop`. If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will already be running when @@ -430,6 +437,7 @@ If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will ## PHPStorm Settings + - Here are some settings that are known to work: - `Settings/BuildDeploymentConnection` - ![Settings/BuildDeploymentConnection](/images/photos/PHPStorm/Settings/BuildDeploymentConnection.png) From a590ed78ceb98cc32b2a4f89880638ceb844c7a1 Mon Sep 17 00:00:00 2001 From: terry Date: Wed, 26 Jul 2017 13:15:12 +0800 Subject: [PATCH 156/313] fixed #1068 --- workspace/Dockerfile-56 | 2 ++ workspace/Dockerfile-70 | 2 ++ workspace/Dockerfile-71 | 2 ++ 3 files changed, 6 insertions(+) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 076eda32..d844b392 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -202,6 +202,8 @@ ENV DRUSH_VERSION 8.1.2 ARG INSTALL_DRUSH=false ENV INSTALL_DRUSH ${INSTALL_DRUSH} RUN if [ ${INSTALL_DRUSH} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ # Install Drush 8 with the phar file. curl -fsSL -o /usr/local/bin/drush https://github.com/drush-ops/drush/releases/download/$DRUSH_VERSION/drush.phar | bash && \ chmod +x /usr/local/bin/drush && \ diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 3751c7ac..c55e2971 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -202,6 +202,8 @@ ENV DRUSH_VERSION 8.1.2 ARG INSTALL_DRUSH=false ENV INSTALL_DRUSH ${INSTALL_DRUSH} RUN if [ ${INSTALL_DRUSH} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ # Install Drush 8 with the phar file. curl -fsSL -o /usr/local/bin/drush https://github.com/drush-ops/drush/releases/download/$DRUSH_VERSION/drush.phar | bash && \ chmod +x /usr/local/bin/drush && \ diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index c66befb5..350bb621 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -199,6 +199,8 @@ ENV DRUSH_VERSION 8.1.2 ARG INSTALL_DRUSH=false ENV INSTALL_DRUSH ${INSTALL_DRUSH} RUN if [ ${INSTALL_DRUSH} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ # Install Drush 8 with the phar file. curl -fsSL -o /usr/local/bin/drush https://github.com/drush-ops/drush/releases/download/$DRUSH_VERSION/drush.phar | bash && \ chmod +x /usr/local/bin/drush && \ From d6ff224b0d92287b881a8d98da88c2ab385a924d Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Thu, 27 Jul 2017 23:45:18 +0800 Subject: [PATCH 157/313] fix travis ci hugo job get "cannot create directory" error. --- travis-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-build.sh b/travis-build.sh index 9d47e09b..c72f51df 100755 --- a/travis-build.sh +++ b/travis-build.sh @@ -26,7 +26,7 @@ if [ -n "${HUGO_VERSION}" ]; then # Download hugo binary curl -L https://github.com/spf13/hugo/releases/download/v$HUGO_VERSION/$HUGO_PACKAGE.tar.gz | tar xz - mkdir $HOME/bin + mkdir -p $HOME/bin mv ./${HUGO_BIN}/${HUGO_BIN} $HOME/bin/hugo # Remove existing docs From 318ca3f81c07d6fc57b210383be5e5d3d3098537 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Sat, 29 Jul 2017 10:03:50 +0300 Subject: [PATCH 158/313] format the readme.md file --- .github/README.md | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/.github/README.md b/.github/README.md index e7cf945c..29ab0749 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,12 +1,26 @@ -![](https://s19.postimg.org/jblfytw9f/laradock-logo.jpg) +

+ Laradock Logo +

-[![Build Status](https://travis-ci.org/laradock/laradock.svg?branch=master)](https://travis-ci.org/laradock/laradock) [![GitHub issues](https://img.shields.io/github/issues/laradock/laradock.svg)](https://github.com/laradock/laradock/issues) [![GitHub forks](https://img.shields.io/github/forks/laradock/laradock.svg)](https://github.com/laradock/laradock/network) [![GitHub stars](https://img.shields.io/github/stars/laradock/laradock.svg)](https://github.com/laradock/laradock/stargazers) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/laradock/laradock/master/LICENSE) +

A Docker PHP development environment that facilitates running PHP Apps on Docker

-> Use Docker first and learn about it later. +

+ Build status + GitHub stars + GitHub forks + GitHub issues + GitHub license + contributions welcome +

-A Docker PHP development environment that facilitates running **PHP** Apps on **Docker**. +

Use Docker First And Learn About It Later

-[![forthebadge](http://forthebadge.com/images/badges/built-by-developers.svg)](http://zalt.me) +

+ forthebadge +

+ + +--- ## Documentation @@ -14,8 +28,6 @@ A Docker PHP development environment that facilitates running **PHP** Apps on ** ## Credits -**Maintainers:** - - [Mahmoud Zalt](https://github.com/Mahmoudz) @mahmoudz | [Twitter](https://twitter.com/Mahmoud_Zalt) | [Site](http://zalt.me) - [Bo-Yi Wu](https://github.com/appleboy) @appleboy | [Twitter](https://twitter.com/appleboy) - [Philippe Trépanier](https://github.com/philtrep) @philtrep @@ -31,4 +43,4 @@ A Docker PHP development environment that facilitates running **PHP** Apps on ** ## License -[MIT License](https://github.com/laradock/laradock/blob/master/LICENSE) (MIT) +[MIT License](https://github.com/laradock/laradock/blob/master/LICENSE) From c836500488000236fcb70eb59b522e06fa282873 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 1 Aug 2017 22:12:43 +0300 Subject: [PATCH 159/313] add symfony, laravel and app nginx sites sampels --- DOCUMENTATION/content/documentation/index.md | 7 +++++ .../content/getting-started/index.md | 5 ++-- ...roject-1.conf.example => app.conf.example} | 7 +++-- ...ct-2.conf.example => laravel.conf.example} | 7 +++-- nginx/sites/symfony.conf.example | 28 +++++++++++++++++++ 5 files changed, 48 insertions(+), 6 deletions(-) rename nginx/sites/{project-1.conf.example => app.conf.example} (82%) rename nginx/sites/{project-2.conf.example => laravel.conf.example} (79%) create mode 100644 nginx/sites/symfony.conf.example diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 9867fa4b..c51bfe96 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -1021,9 +1021,16 @@ To install CodeIgniter 3 on Laradock all you have to do is the following simple 3 - Re-build your PHP-FPM Container `docker-compose build php-fpm`. + +## Install Symfony +The installation is very simple, nothing special. +The NGINX sites include a default config file for your Symfony project `symfony.conf.example`, so edit it and make sure the `root` is pointing to your project web directory. +You mihgt to run `docker-compose restart` if the container are already running. + +Visit `symfony.dev`
diff --git a/DOCUMENTATION/content/getting-started/index.md b/DOCUMENTATION/content/getting-started/index.md index 0aba2e0a..cbbdfb68 100644 --- a/DOCUMENTATION/content/getting-started/index.md +++ b/DOCUMENTATION/content/getting-started/index.md @@ -112,9 +112,9 @@ Your folder structure should look like this: 2 - Go to `nginx/sites` and create config files to point to different project directory when visiting different domains. -Laradock by default includes `project-1.conf` and `project-2.conf` as working samples. +Laradock by default includes `app.conf.example`, `laravel.conf.example` and `symfony.conf.example` as working samples. -3 - change the default names `project-n`: +3 - change the default names `*.conf`: You can rename the config files, project folders and domains as you like, just make sure the `root` in the config files, is pointing to the correct project folder name. @@ -123,6 +123,7 @@ You can rename the config files, project folders and domains as you like, just m ``` 127.0.0.1 project-1.dev 127.0.0.1 project-2.dev +... ``` > **Now jump to the [Usage](#Usage) section.** diff --git a/nginx/sites/project-1.conf.example b/nginx/sites/app.conf.example similarity index 82% rename from nginx/sites/project-1.conf.example rename to nginx/sites/app.conf.example index cf8872b7..c28eec30 100644 --- a/nginx/sites/project-1.conf.example +++ b/nginx/sites/app.conf.example @@ -3,8 +3,8 @@ server { listen 80; listen [::]:80; - server_name project-1.dev; - root /var/www/project-1/public; + server_name app.dev; + root /var/www/app; index index.php index.html index.htm; location / { @@ -29,4 +29,7 @@ server { root /var/www/letsencrypt/; log_not_found off; } + + error_log /var/log/nginx/app_error.log; + access_log /var/log/nginx/app_access.log; } diff --git a/nginx/sites/project-2.conf.example b/nginx/sites/laravel.conf.example similarity index 79% rename from nginx/sites/project-2.conf.example rename to nginx/sites/laravel.conf.example index cf495fec..dd9a2ae7 100644 --- a/nginx/sites/project-2.conf.example +++ b/nginx/sites/laravel.conf.example @@ -3,8 +3,8 @@ server { listen 80; listen [::]:80; - server_name project-2.dev; - root /var/www/project-2/public; + server_name laravel.dev; + root /var/www/laravel/public; index index.php index.html index.htm; location / { @@ -29,4 +29,7 @@ server { root /var/www/letsencrypt/; log_not_found off; } + + error_log /var/log/nginx/laravel_error.log; + access_log /var/log/nginx/laravel_access.log; } diff --git a/nginx/sites/symfony.conf.example b/nginx/sites/symfony.conf.example new file mode 100644 index 00000000..8d518fee --- /dev/null +++ b/nginx/sites/symfony.conf.example @@ -0,0 +1,28 @@ +server { + + listen 80; + listen [::]:80; + + server_name symfony.dev; + root /var/www/projects/symfony/web; + index index.php index.html index.htm; + + location / { + try_files $uri @rewriteapp; + } + + location @rewriteapp { + rewrite ^(.*)$ /app.php/$1 last; + } + + location ~ ^/(app|app_dev|config)\.php(/|$) { + fastcgi_pass php-upstream; + fastcgi_split_path_info ^(.+\.php)(/.*)$; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_param HTTPS off; + } + + error_log /var/log/nginx/symfony_error.log; + access_log /var/log/nginx/symfony_access.log; +} From d99cf73bf0a7da2f8584edaecfbf16a4a995d966 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Thu, 3 Aug 2017 07:31:41 +0300 Subject: [PATCH 160/313] edit alias, use the phpunit of the project --- workspace/aliases.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace/aliases.sh b/workspace/aliases.sh index f3e2a2c0..376980ca 100644 --- a/workspace/aliases.sh +++ b/workspace/aliases.sh @@ -34,7 +34,7 @@ alias composer:dump="composer dump-autoload -o" alias db:reset="php artisan migrate:reset && php artisan migrate --seed" alias migrate="php artisan migrate" alias seed="php artisan:seed" -alias phpunit="./vendor/bin/phpunit" +alias phpunit="vendor/bin/phpunit" # requires installation of 'https://www.npmjs.com/package/npms-cli' From 004e4354aa5b84aa16c13fa1a5ac0a1002648500 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Thu, 3 Aug 2017 08:06:48 +0300 Subject: [PATCH 161/313] add more aliases and functions for better development in the workspace --- workspace/aliases.sh | 91 +++++++++++++++++++++++++++++++++++++------- 1 file changed, 78 insertions(+), 13 deletions(-) diff --git a/workspace/aliases.sh b/workspace/aliases.sh index 376980ca..6ef6bd1f 100644 --- a/workspace/aliases.sh +++ b/workspace/aliases.sh @@ -10,23 +10,54 @@ COL_BLUE=$ESC_SEQ"34;01m" COL_MAGENTA=$ESC_SEQ"35;01m" COL_CYAN=$ESC_SEQ"36;01m" +# Detect which `ls` flavor is in use +if ls --color > /dev/null 2>&1; then # GNU `ls` + colorflag="--color" + export LS_COLORS='no=00:fi=00:di=01;31:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:' +else # macOS `ls` + colorflag="-G" + export LSCOLORS='BxBxhxDxfxhxhxhxhxcxcx' +fi + +# List all files colorized in long format +#alias l="ls -lF ${colorflag}" +### MEGA: I want l and la ti return hisdden files +alias l="ls -laF ${colorflag}" + +# List all files colorized in long format, including dot files +alias la="ls -laF ${colorflag}" + +# List only directories +alias lsd="ls -lF ${colorflag} | grep --color=never '^d'" + +# Always use color output for `ls` +alias ls="command ls ${colorflag}" + # Commonly Used Aliases alias ..="cd .." +alias ...="cd ../.." +alias ....="cd ../../.." +alias .....="cd ../../../.." +alias ~="cd ~" # `cd` is probably faster to type though +alias -- -="cd -" +alias home="cd ~" + +alias h="history" +alias j="jobs" +alias e='exit' alias c="clear" alias cla="clear && ls -l" alias cll="clear && ls -la" alias cls="clear && ls" alias code="cd /var/www" alias ea="vi ~/aliases" -alias g="gulp" -alias home="cd ~" -alias npm-global="npm list -g --depth 0" -alias ra="reload" -alias reload="source ~/.aliases && echo \"$COL_GREEN ==> Aliases Reloaded... $COL_RESET \n \"" -alias run="npm run" -alias tree="xtree" -# Laravel / PHP Alisases +# Always enable colored `grep` output +# Note: `GREP_OPTIONS="--color=auto"` is deprecated, hence the alias usage. +alias grep='grep --color=auto' +alias fgrep='fgrep --color=auto' +alias egrep='egrep --color=auto' + alias art="php artisan" alias artisan="php artisan" alias cdump="composer dump-autoload -o" @@ -34,18 +65,31 @@ alias composer:dump="composer dump-autoload -o" alias db:reset="php artisan migrate:reset && php artisan migrate --seed" alias migrate="php artisan migrate" alias seed="php artisan:seed" -alias phpunit="vendor/bin/phpunit" +alias phpunit="vendor/bin/phpunit" +alias pu="phpunit" +alias puf="phpunit --filter" +alias pud='phpunit --debug' + +alias cc='codecept' +alias ccb='codecept build' +alias ccr='codecept run' +alias ccu='codecept run unit' +alias ccf='codecept run functional' + +alias g="gulp" +alias npm-global="npm list -g --depth 0" +alias ra="reload" +alias reload="source ~/.aliases && echo \"$COL_GREEN ==> Aliases Reloaded... $COL_RESET \n \"" +alias run="npm run" +alias tree="xtree" # requires installation of 'https://www.npmjs.com/package/npms-cli' alias npms="npms search" - # requires installation of 'https://www.npmjs.com/package/package-menu-cli' alias pm="package-menu" - # requires installation of 'https://www.npmjs.com/package/pkg-version-cli' alias pv="package-version" - # requires installation of 'https://github.com/sindresorhus/latest-version-cli' alias lv="latest-version" @@ -56,7 +100,6 @@ alias git-revert="git reset --hard && git clean -df" alias gs="git status" alias whoops="git reset --hard && git clean -df" - # Create a new directory and enter it function mkd() { mkdir -p "$@" && cd "$@" @@ -69,3 +112,25 @@ function md() { function xtree { find ${1:-.} -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' } + +# `tre` is a shorthand for `tree` with hidden files and color enabled, ignoring +# the `.git` directory, listing directories first. The output gets piped into +# `less` with options to preserve color and line numbers, unless the output is +# small enough for one screen. +function tre() { + tree -aC -I '.git|node_modules|bower_components' --dirsfirst "$@" | less -FRNX; +} + +# Determine size of a file or total size of a directory +function fs() { + if du -b /dev/null > /dev/null 2>&1; then + local arg=-sbh; + else + local arg=-sh; + fi + if [[ -n "$@" ]]; then + du $arg -- "$@"; + else + du $arg .[^.]* ./*; + fi; +} From 5c0b8316b1765a4104a5d81226b538b9732d50dc Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Fri, 4 Aug 2017 00:50:20 +0300 Subject: [PATCH 162/313] make the PHP_UPSTREAM config for NGINX and Apache identical --- apache2/Dockerfile | 5 +++-- docker-compose.yml | 8 +++++--- env-example | 6 ++++-- nginx/Dockerfile | 11 +++++++---- 4 files changed, 19 insertions(+), 11 deletions(-) diff --git a/apache2/Dockerfile b/apache2/Dockerfile index 9d4d9a9a..afbb7c2b 100644 --- a/apache2/Dockerfile +++ b/apache2/Dockerfile @@ -2,9 +2,10 @@ FROM webdevops/apache:ubuntu-16.04 MAINTAINER Eric Pfeiffer -ARG PHP_SOCKET=php-fpm:9000 +ARG PHP_UPSTREAM_CONTAINER=php-fpm +ARG PHP_UPSTREAM_PORT=9000 -ENV WEB_PHP_SOCKET=$PHP_SOCKET +ENV WEB_PHP_SOCKET=${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT} ENV WEB_DOCUMENT_ROOT=/var/www/public/ diff --git a/docker-compose.yml b/docker-compose.yml index 45049959..b0c9cb42 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -107,13 +107,14 @@ services: networks: - backend -### Nginx Server Container ################################## +### NGINX Server Container ################################## nginx: build: context: ./nginx args: - - PHP_UPSTREAM=php-fpm + - PHP_UPSTREAM_CONTAINER=${NGINX_PHP_UPSTREAM_CONTAINER} + - PHP_UPSTREAM_PORT=${NGINX_PHP_UPSTREAM_PORT} volumes_from: - applications volumes: @@ -146,7 +147,8 @@ services: build: context: ./apache2 args: - - PHP_SOCKET=${PHP_SOCKET} + - PHP_UPSTREAM_CONTAINER=${APACHE_PHP_UPSTREAM_CONTAINER} + - PHP_UPSTREAM_PORT=${APACHE_PHP_UPSTREAM_PORT} volumes_from: - applications volumes: diff --git a/env-example b/env-example index 184b34f6..a749ca42 100644 --- a/env-example +++ b/env-example @@ -80,15 +80,17 @@ NGINX_HOST_HTTP_PORT=80 NGINX_HOST_HTTPS_PORT=443 NGINX_HOST_LOG_PATH=./logs/nginx/ NGINX_SITES_PATH=./nginx/sites/ +NGINX_PHP_UPSTREAM_CONTAINER=php-fpm +NGINX_PHP_UPSTREAM_PORT=9000 ### APACHE ############################################################################################################# APACHE_HOST_HTTP_PORT=80 APACHE_HOST_HTTPS_PORT=443 -APACHE2_PHP_SOCKET=php-fpm:9000 APACHE_HOST_LOG_PATH=./logs/apache2 APACHE_SITES_PATH=./apache2/sites -PHP_SOCKET=php-fpm:9000 +APACHE_PHP_UPSTREAM_CONTAINER=php-fpm +APACHE_PHP_UPSTREAM_PORT=9000 ### MYSQL ############################################################################################################## diff --git a/nginx/Dockerfile b/nginx/Dockerfile index e23be3d5..77f4abdd 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -4,7 +4,8 @@ MAINTAINER Mahmoud Zalt ADD nginx.conf /etc/nginx/ -ARG PHP_UPSTREAM=php-fpm +ARG PHP_UPSTREAM_CONTAINER=php-fpm +ARG PHP_UPSTREAM_PORT=9000 # fix a problem--#397, change application source from dl-cdn.alpinelinux.org to aliyun source. RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories @@ -12,9 +13,11 @@ RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories RUN apk update \ && apk upgrade \ && apk add --no-cache bash \ - && adduser -D -H -u 1000 -s /bin/bash www-data \ - && rm /etc/nginx/conf.d/default.conf \ - && echo "upstream php-upstream { server ${PHP_UPSTREAM}:9000; }" > /etc/nginx/conf.d/upstream.conf + && adduser -D -H -u 1000 -s /bin/bash www-data + +# Set upstream conf and remove the default conf +RUN echo "upstream php-upstream { server ${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}; }" > /etc/nginx/conf.d/upstream.conf \ + && rm /etc/nginx/conf.d/default.conf CMD ["nginx"] From 2af40b0ba107a86b57710226fb3b2c29b309f164 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Fri, 4 Aug 2017 00:51:20 +0300 Subject: [PATCH 163/313] fix #970. remove the required public directory in the /var/www --- apache2/Dockerfile | 4 ++-- apache2/sites/default.apache.conf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apache2/Dockerfile b/apache2/Dockerfile index afbb7c2b..bc152dd3 100644 --- a/apache2/Dockerfile +++ b/apache2/Dockerfile @@ -7,11 +7,11 @@ ARG PHP_UPSTREAM_PORT=9000 ENV WEB_PHP_SOCKET=${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT} -ENV WEB_DOCUMENT_ROOT=/var/www/public/ +ENV WEB_DOCUMENT_ROOT=/var/www/ EXPOSE 80 443 -WORKDIR /var/www/public/ +WORKDIR /var/www/ COPY vhost.conf /etc/apache2/sites-enabled/vhost.conf diff --git a/apache2/sites/default.apache.conf b/apache2/sites/default.apache.conf index 5cedafb6..18ee6de5 100644 --- a/apache2/sites/default.apache.conf +++ b/apache2/sites/default.apache.conf @@ -1,9 +1,9 @@ ServerName laradock.dev - DocumentRoot /var/www/public/ + DocumentRoot /var/www/ Options Indexes FollowSymLinks - + AllowOverride All Allow from all From 972bdd90a3eb6266f84fc58d680fbbe9ca002671 Mon Sep 17 00:00:00 2001 From: Shao Yu Lung Date: Fri, 4 Aug 2017 15:11:10 +0800 Subject: [PATCH 164/313] fix rm error ERROR INFO: Step 4/5 : RUN rm -r /var/lib/apt/lists/* ---> Running in 4a3aa49e0e6e rm: can't remove '/var/lib/apt/lists/*': No such file or directory ERROR: Service 'php-worker' failed to build: The command '/bin/sh -c rm -r /var/lib/apt/lists/*' returned a non-zero code: 1 --- php-worker/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/php-worker/Dockerfile b/php-worker/Dockerfile index 58de7d5b..2eb3f92f 100644 --- a/php-worker/Dockerfile +++ b/php-worker/Dockerfile @@ -37,5 +37,4 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf #-------------------------------------------------------------------------- # -RUN rm -r /var/lib/apt/lists/* WORKDIR /etc/supervisor/conf.d/ From 6d89424e91a41693aaa7e2d87926c1681fe01944 Mon Sep 17 00:00:00 2001 From: James Whiteman Date: Mon, 7 Aug 2017 08:42:55 +1200 Subject: [PATCH 165/313] Update Dockerfile-70 Add python option to workspace --- workspace/Dockerfile-70 | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index c55e2971..d368563c 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -545,6 +545,19 @@ RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ ;fi\ ;fi +##################################### +# PYTHON: +##################################### + +ARG INSTALL_PYTHON=false +ENV INSTALL_PYTHON ${INSTALL_PYTHON} +RUN if [ ${INSTALL_PYTHON} = true ]; then \ + apt-get update \ + && apt-get -y install python python-pip python-dev build-essential \ + && pip install --upgrade pip \ + && pip install --upgrade virtualenv \ +;fi + # #-------------------------------------------------------------------------- # Final Touch From 3801973b15dd1f125aafeaf6a4698b8f21447845 Mon Sep 17 00:00:00 2001 From: James Whiteman Date: Mon, 7 Aug 2017 08:45:25 +1200 Subject: [PATCH 166/313] Update env-example Added missing symfony install variable and added new python install variable --- env-example | 2 ++ 1 file changed, 2 insertions(+) diff --git a/env-example b/env-example index a749ca42..be8b5203 100644 --- a/env-example +++ b/env-example @@ -45,6 +45,8 @@ WORKSPACE_INSTALL_LARAVEL_INSTALLER=false WORKSPACE_INSTALL_DEPLOYER=false WORKSPACE_INSTALL_LINUXBREW=false WORKSPACE_INSTALL_MC=false +WORKSPACE_INSTALL_SYMFONY=false +WORKSPACE_INSTALL_PYTHON=false WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false WORKSPACE_PUID=1000 WORKSPACE_PGID=1000 From 05c7f9186aca312aeab3b7d67152ef0ab6024a95 Mon Sep 17 00:00:00 2001 From: James Whiteman Date: Mon, 7 Aug 2017 08:47:53 +1200 Subject: [PATCH 167/313] Update docker-compose.yml Added missing symfony and python options to workspace --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index b0c9cb42..16a1aea5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,6 +32,8 @@ services: - INSTALL_DEPLOYER=${WORKSPACE_INSTALL_DEPLOYER} - INSTALL_LINUXBREW=${WORKSPACE_INSTALL_LINUXBREW} - INSTALL_MC=${WORKSPACE_INSTALL_MC} + - INSTALL_SYMFONY=${WORKSPACE_INSTALL_SYMFONY} + - INSTALL_PYTHON=${WORKSPACE_INSTALL_PYTHON} - INSTALL_IMAGE_OPTIMIZERS=${WORKSPACE_INSTALL_IMAGE_OPTIMIZERS} - PUID=${WORKSPACE_PUID} - PGID=${WORKSPACE_PGID} From 2082659fb1da4ab95b6bd9ef16927bc15c94c820 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Mon, 7 Aug 2017 05:57:45 +0300 Subject: [PATCH 168/313] update Install Symfony steps in the docs --- DOCUMENTATION/content/documentation/index.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index c51bfe96..8dd89fa0 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -1024,13 +1024,15 @@ To install CodeIgniter 3 on Laradock all you have to do is the following simple ## Install Symfony -The installation is very simple, nothing special. +1 - Open the `.env` file and set `WORKSPACE_INSTALL_SYMFONY` to `true`. -The NGINX sites include a default config file for your Symfony project `symfony.conf.example`, so edit it and make sure the `root` is pointing to your project web directory. +2 - Run `docker-compose build workspace`, after the step above. -You mihgt to run `docker-compose restart` if the container are already running. +3 - The NGINX sites include a default config file for your Symfony project `symfony.conf.example`, so edit it and make sure the `root` is pointing to your project `web` directory. -Visit `symfony.dev` +4 - Run `docker-compose restart` if the container was already running, before the step above. + +5 - Visit `symfony.dev`
From 4977b0f92fc53949677790946a44348b2c544d6a Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Mon, 7 Aug 2017 12:06:11 +0300 Subject: [PATCH 169/313] fix alias for phpunit to load from current directory --- workspace/aliases.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace/aliases.sh b/workspace/aliases.sh index 6ef6bd1f..1bf21c65 100644 --- a/workspace/aliases.sh +++ b/workspace/aliases.sh @@ -66,7 +66,7 @@ alias db:reset="php artisan migrate:reset && php artisan migrate --seed" alias migrate="php artisan migrate" alias seed="php artisan:seed" -alias phpunit="vendor/bin/phpunit" +alias phpunit="./vendor/bin/phpunit" alias pu="phpunit" alias puf="phpunit --filter" alias pud='phpunit --debug' From 8e84fbbec2bb18980758bdd435175512e2e127a3 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Mon, 7 Aug 2017 12:36:02 +0300 Subject: [PATCH 170/313] add missing symfony and python to workspace and remove useless alias --- workspace/Dockerfile-56 | 43 +++++++++++++++++++++++++++++++++-------- workspace/Dockerfile-70 | 34 +++++++++++++------------------- workspace/Dockerfile-71 | 42 +++++++++++++++++++++++----------------- 3 files changed, 72 insertions(+), 47 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index d844b392..a3292e9f 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -319,14 +319,6 @@ USER laradock RUN echo "" >> ~/.bashrc && \ echo 'export PATH="/var/www/vendor/bin:$PATH"' >> ~/.bashrc -##################################### -# Laravel Artisan Alias -##################################### -USER root - -RUN echo "" >> ~/.bashrc && \ - echo 'alias art="php artisan"' >> ~/.bashrc - ##################################### # Laravel Envoy: ##################################### @@ -442,6 +434,41 @@ RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ USER laradock +##################################### +# Symfony: +##################################### +USER root +ARG INSTALL_SYMFONY=false +ENV INSTALL_SYMFONY ${INSTALL_SYMFONY} +RUN if [ ${INSTALL_SYMFONY} = true ]; then \ + + mkdir -p /usr/local/bin \ + && curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony \ + && chmod a+x /usr/local/bin/symfony \ + + # Symfony 3 alias + && echo 'alias dev="php bin/console -e=dev"' >> ~/.bashrc \ + && echo 'alias prod="php bin/console -e=prod"' >> ~/.bashrc \ + + # Symfony 2 alias + # && echo 'alias dev="php app/console -e=dev"' >> ~/.bashrc \ + # && echo 'alias prod="php app/console -e=prod"' >> ~/.bashrc \ + +;fi + +##################################### +# PYTHON: +##################################### + +ARG INSTALL_PYTHON=false +ENV INSTALL_PYTHON ${INSTALL_PYTHON} +RUN if [ ${INSTALL_PYTHON} = true ]; then \ + apt-get update \ + && apt-get -y install python python-pip python-dev build-essential \ + && pip install --upgrade pip \ + && pip install --upgrade virtualenv \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index d368563c..c6c4e382 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -336,14 +336,6 @@ USER laradock RUN echo "" >> ~/.bashrc && \ echo 'export PATH="/var/www/vendor/bin:$PATH"' >> ~/.bashrc -##################################### -# Laravel Artisan Alias -##################################### -USER root - -RUN echo "" >> ~/.bashrc && \ - echo 'alias art="php artisan"' >> ~/.bashrc - ##################################### # Laravel Envoy: ##################################### @@ -510,6 +502,19 @@ RUN if [ ${INSTALL_MC} = true ]; then\ chmod +x /usr/local/bin/mc \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ + if [ ${INSTALL_NODE} = true ]; then \ + . ~/.bashrc && npm install -g svgo \ + ;fi\ +;fi + ##################################### # Symfony: ##################################### @@ -532,19 +537,6 @@ RUN if [ ${INSTALL_SYMFONY} = true ]; then \ ;fi -##################################### -# Image optimizers: -##################################### -USER root -ARG INSTALL_IMAGE_OPTIMIZERS=false -ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} -RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ - apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ - if [ ${INSTALL_NODE} = true ]; then \ - . ~/.bashrc && npm install -g svgo \ - ;fi\ -;fi - ##################################### # PYTHON: ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 350bb621..5a390966 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -337,14 +337,6 @@ USER laradock RUN echo "" >> ~/.bashrc && \ echo 'export PATH="/var/www/vendor/bin:$PATH"' >> ~/.bashrc -##################################### -# Laravel Artisan Alias -##################################### -USER root - -RUN echo "" >> ~/.bashrc && \ - echo 'alias art="php artisan"' >> ~/.bashrc - ##################################### # Laravel Envoy: ##################################### @@ -513,6 +505,21 @@ RUN if [ ${INSTALL_MC} = true ]; then\ chmod +x /usr/local/bin/mc \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ + if [ ${INSTALL_NODE} = true ]; then \ + . ~/.bashrc && npm install -g svgo \ + ;fi\ +;fi + +USER laradock + ##################################### # Symfony: ##################################### @@ -536,19 +543,18 @@ RUN if [ ${INSTALL_SYMFONY} = true ]; then \ ;fi ##################################### -# Image optimizers: +# PYTHON: ##################################### -USER root -ARG INSTALL_IMAGE_OPTIMIZERS=false -ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} -RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ - apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ - if [ ${INSTALL_NODE} = true ]; then \ - . ~/.bashrc && npm install -g svgo \ - ;fi\ + +ARG INSTALL_PYTHON=false +ENV INSTALL_PYTHON ${INSTALL_PYTHON} +RUN if [ ${INSTALL_PYTHON} = true ]; then \ + apt-get update \ + && apt-get -y install python python-pip python-dev build-essential \ + && pip install --upgrade pip \ + && pip install --upgrade virtualenv \ ;fi -USER laradock # #-------------------------------------------------------------------------- From b25215684b4b564564c20706aab3432fbbee1d9b Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Tue, 8 Aug 2017 11:33:42 +0800 Subject: [PATCH 171/313] add demo and use caddy example for laravel https://github.com/caddyserver/examples/blob/master/laravel/Caddyfile --- caddy/Caddyfile | 52 +++++++++++++++++++++++++------------------------ 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/caddy/Caddyfile b/caddy/Caddyfile index 269b62a1..288d9d3b 100644 --- a/caddy/Caddyfile +++ b/caddy/Caddyfile @@ -1,28 +1,30 @@ # Docs: https://caddyserver.com/docs/caddyfile -0.0.0.0:80 -root /var/www/public -fastcgi / php-fpm:9000 php { - index index.php +0.0.0.0:80 { + root /var/www/public + fastcgi / php-fpm:9000 php { + index index.php + } + + # To handle .html extensions with laravel change ext to + # ext / .html + + rewrite { + to {path} {path}/ /index.php?{query} + } + gzip + browse + log /var/log/caddy/access.log + errors /var/log/caddy/error.log + # Uncomment to enable TLS (HTTPS) + # Change the first list to listen on port 443 when enabling TLS + #tls self_signed + + # To use Lets encrpt tls with a DNS provider uncomment these + # lines and change the provider as required + #tls { + # dns cloudflare + #} } - -# To handle .html extensions with laravel change ext to -# ext / .html - -rewrite { - r .* - ext / - to /index.php?{query} +laradock.demo { + root /var/www/public } -gzip -browse -log /var/log/caddy/access.log -errors /var/log/caddy/error.log -# Uncomment to enable TLS (HTTPS) -# Change the first list to listen on port 443 when enabling TLS -#tls self_signed - -# To use Lets encrpt tls with a DNS provider uncomment these -# lines and change the provider as required -#tls { -# dns cloudflare -#} From 668acd66c176f97b8c99dd110e898a2cdf248384 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Tue, 8 Aug 2017 11:36:16 +0800 Subject: [PATCH 172/313] use openssh-client not openssh* https://hub.docker.com/r/abiosoft/caddy/~/dockerfile/ --- caddy/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/caddy/Dockerfile b/caddy/Dockerfile index 09d4bbd0..d88fe390 100644 --- a/caddy/Dockerfile +++ b/caddy/Dockerfile @@ -1,15 +1,15 @@ -FROM alpine:3.4 +FROM alpine:3.5 MAINTAINER Eric Pfeiffer -ENV caddy_version=0.10.3 +ENV caddy_version=0.10.5 ARG plugins=http.git LABEL caddy_version="$caddy_version" architecture="amd64" RUN apk update \ && apk upgrade \ - && apk add tar curl git openssh + && apk add --no-cache openssh-client git tar curl RUN curl --silent --show-error --fail --location \ --header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \ From 69ccd74d2e52a8a0dac88963f87b5c19e1e12a04 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 8 Aug 2017 15:01:41 +0300 Subject: [PATCH 173/313] Update Improve MAC speed docs --- DOCUMENTATION/content/documentation/index.md | 187 ++++++++++--------- 1 file changed, 98 insertions(+), 89 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 8dd89fa0..bcda7649 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -5,6 +5,8 @@ weight: 3 --- + + ## List current running Containers ```bash @@ -153,88 +155,8 @@ You might use the `--no-cache` option if you want full rebuilding (`docker-compo -
- - -## Speed up with docker-sync - -Docker on the Mac [is slow](https://github.com/docker/for-mac/issues/77), at the time of writing. Especially for larger projects, this can be a problem. The problem is [older than March 2016](https://forums.docker.com/t/file-access-in-mounted-volumes-extremely-slow-cpu-bound/8076) - as it's a such a long-running issue, we're including it in the docs here. - -In simple terms, docker-sync creates a docker container with a copy of all the application files that can be accessed very quickly from the other containers. -On the other hand, docker-sync runs a process on the host machine that continuously tracks and updates files changes from the host to this intermediate container. - -Out of the box, it comes pre-configured for OS X, but using it on Windows is very easy to set-up by modifying the `DOCKER_SYNC_STRATEGY` on the `.env` - -#### Usage - -Laradock comes with `sync.sh`, an optional bash script, that automates installing, running and stopping docker-sync. Note that to run the bash script you may need to change the permissions `chmod 755 sync.sh` - -1) Configure your Laradock environment as you would normally do and test your application to make sure that your sites are running correctly. - -2) Make sure to set `DOCKER_SYNC_STRATEGY` on the `.env`. Read the [syncing strategies](https://github.com/EugenMayer/docker-sync/wiki/8.-Strategies) for details. -``` -# osx: 'native_osx' (default) -# windows: 'unison' -# linux: docker-sync not required - -DOCKER_SYNC_STRATEGY=native_osx -``` - -2) Install the docker-sync gem on the host-machine: -```bash -./sync.sh install -``` -3) Start docker-sync and the Laradock environment. -Specify the services you want to run, as you would normally do with `docker-compose up` -```bash -./sync.sh up nginx mysql -``` -Please note that the first time docker-sync runs, it will copy all the files to the intermediate container and that may take a very long time (15min+). -4) To stop the environment and docker-sync do: -```bash -./sync.sh down -``` - -#### Setting up Aliases (optional) - -You may create bash profile aliases to avoid having to remember and type these commands for everyday development. -Add the following lines to your `~/.bash_profile`: - -```bash -alias devup="cd /PATH_TO_LARADOCK/laradock; ./sync.sh up nginx mysql" #add your services -alias devbash="cd /PATH_TO_LARADOCK/laradock; ./sync.sh bash" -alias devdown="cd /PATH_TO_LARADOCK/laradock; ./sync.sh down" -``` - -Now from any location on your machine, you can simply run `devup`, `devbash` and `devdown`. - - -#### Additional Commands - -Opening bash on the workspace container (to run artisan for example): - ```bash - ./sync.sh bash - ``` -Manually triggering the synchronization of the files: -```bash -./sync.sh sync -``` -Removing and cleaning up the files and the docker-sync container. Use only if you want to rebuild or remove docker-sync completely. The files on the host will be kept untouched. -```bash -./sync.sh clean -``` - -**Additional Notes:** - -- You may run laradock with or without docker-sync at any time using with the same `.env` and `docker-compose.yml`, because the configuration is overridden automatically when docker-sync is used. -- You may inspect the `sync.sh` script to learn each of the commands and even add custom ones. -- If a container cannot access the files on docker-sync, you may need to set a user on the Dockerfile of that container with an id of 1000 (this is the UID that nginx and php-fpm have configured on laradock). Alternatively, you may change the permissions to 777, but this is **not** recommended. - -Visit the [docker-sync documentation](https://github.com/EugenMayer/docker-sync/wiki) for more details. -
- ## Add more Software (Docker Images) To add an image (software), just edit the `docker-compose.yml` and add your container details, to do so you need to be familiar with the [docker compose file syntax](https://docs.docker.com/compose/compose-file/). @@ -1494,7 +1416,11 @@ Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requ ## Improve speed on MacOS -Sharing code into Docker containers with osxfs have very poor performance compared to Linux. Likely there are some workarounds: +Docker on the Mac [is slow](https://github.com/docker/for-mac/issues/77), at the time of writing. Especially for larger projects, this can be a problem. The problem is [older than March 2016](https://forums.docker.com/t/file-access-in-mounted-volumes-extremely-slow-cpu-bound/8076) - as it's a such a long-running issue, we're including it in the docs here. + +So since sharing code into Docker containers with osxfs have very poor performance compared to Linux. Likely there are some workarounds: + + ### Workaround A: using dinghy @@ -1514,9 +1440,99 @@ Quick Setup giude, (we recommend you check their docs) - +
+ ### Workaround B: using d4m-nfs +You can use the d4m-nfs solution in 2 ways, one is using the Laradock built it integration, and the other is using the tool separatly. Below is show case of both methods: + + +#### B.1: using the built in d4m-nfs integration + +In simple terms, docker-sync creates a docker container with a copy of all the application files that can be accessed very quickly from the other containers. +On the other hand, docker-sync runs a process on the host machine that continuously tracks and updates files changes from the host to this intermediate container. + +Out of the box, it comes pre-configured for OS X, but using it on Windows is very easy to set-up by modifying the `DOCKER_SYNC_STRATEGY` on the `.env` + +##### Usage + +Laradock comes with `sync.sh`, an optional bash script, that automates installing, running and stopping docker-sync. Note that to run the bash script you may need to change the permissions `chmod 755 sync.sh` + +1) Configure your Laradock environment as you would normally do and test your application to make sure that your sites are running correctly. + +2) Make sure to set `DOCKER_SYNC_STRATEGY` on the `.env`. Read the [syncing strategies](https://github.com/EugenMayer/docker-sync/wiki/8.-Strategies) for details. +``` +# osx: 'native_osx' (default) +# windows: 'unison' +# linux: docker-sync not required + +DOCKER_SYNC_STRATEGY=native_osx +``` + +2) Install the docker-sync gem on the host-machine: +```bash +./sync.sh install +``` +3) Start docker-sync and the Laradock environment. +Specify the services you want to run, as you would normally do with `docker-compose up` +```bash +./sync.sh up nginx mysql +``` +Please note that the first time docker-sync runs, it will copy all the files to the intermediate container and that may take a very long time (15min+). +4) To stop the environment and docker-sync do: +```bash +./sync.sh down +``` + +##### Setting up Aliases (optional) + +You may create bash profile aliases to avoid having to remember and type these commands for everyday development. +Add the following lines to your `~/.bash_profile`: + +```bash +alias devup="cd /PATH_TO_LARADOCK/laradock; ./sync.sh up nginx mysql" #add your services +alias devbash="cd /PATH_TO_LARADOCK/laradock; ./sync.sh bash" +alias devdown="cd /PATH_TO_LARADOCK/laradock; ./sync.sh down" +``` + +Now from any location on your machine, you can simply run `devup`, `devbash` and `devdown`. + + +##### Additional Commands + +Opening bash on the workspace container (to run artisan for example): + ```bash + ./sync.sh bash + ``` +Manually triggering the synchronization of the files: +```bash +./sync.sh sync +``` +Removing and cleaning up the files and the docker-sync container. Use only if you want to rebuild or remove docker-sync completely. The files on the host will be kept untouched. +```bash +./sync.sh clean +``` + + +##### Additional Notes + +- You may run laradock with or without docker-sync at any time using with the same `.env` and `docker-compose.yml`, because the configuration is overridden automatically when docker-sync is used. +- You may inspect the `sync.sh` script to learn each of the commands and even add custom ones. +- If a container cannot access the files on docker-sync, you may need to set a user on the Dockerfile of that container with an id of 1000 (this is the UID that nginx and php-fpm have configured on laradock). Alternatively, you may change the permissions to 777, but this is **not** recommended. + +Visit the [docker-sync documentation](https://github.com/EugenMayer/docker-sync/wiki) for more details. + + + + + + + + +
+ +#### B.2: using the d4m-nfs tool + [D4m-nfs](https://github.com/IFSight/d4m-nfs) automatically mount NFS volume instead of osxfs one. 1) Update the Docker [File Sharing] preferences: @@ -1556,17 +1572,10 @@ docker-compose up ... -### Other good workarounds: - -- [docker-sync](https://github.com/EugenMayer/docker-sync) -- Add more here.. -More details about this issue [here](https://github.com/docker/for-mac/issues/77). - - From e4f4de47e7b96fb5de4c2d7d656f3a033beabc1d Mon Sep 17 00:00:00 2001 From: Ary Widiantara Date: Wed, 9 Aug 2017 10:17:53 +0700 Subject: [PATCH 174/313] [UPDATE] change config redis from docker compose to env --- docker-compose.yml | 2 +- env-example | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 16a1aea5..ba386248 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -338,7 +338,7 @@ services: volumes: - ${DATA_SAVE_PATH}/redis:/data ports: - - "6379:6379" + - "${REDIS_PORT}:6379" networks: - backend diff --git a/env-example b/env-example index be8b5203..423e1aef 100644 --- a/env-example +++ b/env-example @@ -104,6 +104,10 @@ MYSQL_PORT=3306 MYSQL_ROOT_PASSWORD=root MYSQL_ENTRYPOINT_INITDB=./mysql/docker-entrypoint-initdb.d +### REDIS ############################################################################################################## + +REDIS_PORT=6379 + ### Percona ############################################################################################################ PERCONA_DATABASE=homestead From 245ddf3441dd1b05b5a6081b9c6244aa368220a9 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 9 Aug 2017 16:18:29 +0300 Subject: [PATCH 175/313] update documentation link in the readme --- .github/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/README.md b/.github/README.md index 29ab0749..7bc43ac1 100644 --- a/.github/README.md +++ b/.github/README.md @@ -22,9 +22,12 @@ --- -## Documentation +

+ + Laradock Docs + +

-[**Full Documentation Here**](http://laradock.io) ## Credits From c099a51d520290b7b7569ac652631d8d5a4c8e91 Mon Sep 17 00:00:00 2001 From: Eric Dattore Date: Thu, 10 Aug 2017 21:07:59 -0600 Subject: [PATCH 176/313] add docs on running Laravel Dusk tests --- DOCUMENTATION/content/guides/index.md | 146 ++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) diff --git a/DOCUMENTATION/content/guides/index.md b/DOCUMENTATION/content/guides/index.md index e7de20a4..d166604c 100644 --- a/DOCUMENTATION/content/guides/index.md +++ b/DOCUMENTATION/content/guides/index.md @@ -8,6 +8,7 @@ weight: 4 * [Production Setup on Digital Ocean](#Digital-Ocean) * [PHPStorm XDebug Setup](#PHPStorm-Debugging) +* [Running Laravel Dusk Test](#Laravel-Dusk) @@ -555,4 +556,149 @@ Assuming that you are in laradock folder, type: - ![ConnectionSSHAuth](/images/photos/KiTTY/ConnectionSSHAuth.png) - ![TerminalShell](/images/photos/KiTTY/TerminalShell.png) +
+
+
+
+
+ +# Running Laravel Dusk Tests + +- [Intro](#dusk-intro) +- [DNS Setup](#dns-setup) +- [Docker Compose Setup](#docker-compose) +- [Laravel Dusk Setup](#laravel-dusk-setup) +- [Running Laravel Dusk Tests](#running-tests) + + +## Intro +Setting up Laravel Dusk tests to run with Laradock appears be something that +eludes most Laradock users. This guide is designed to show you how to wire them +up to work together. This guide is written with macOS and Linux in mind. As such, +it's only been tested on macOS. Feel free to create pull requests to update the guide +for Windows-specific instructions. + +This guide assumes you know how to use a DNS forwarder such as `dnsmasq` or are comfortable +with editing the `/etc/hosts` file for one-off DNS changes. + + +## DNS Setup +According to RFC-2606, only four TLDs are reserved for local testing[^1]: + +- `.test` +- `.example` +- `.invalid` +- `.localhost` + +A common TLD used for local development is `.dev`, but newer versions of Google +Chrome (such as the one bundled with the Selenium Docker image), will fail to +resolve that DNS as there will appear to be a name collision. + +The recommended extension is `.test` for your Laravel web apps because you're +running tests. Using a DNS forwarder such as `dnsmasq` or by editing the `/etc/hosts` +file, configure the host to point to `localhost`. + +For example, in your `/etc/hosts` file: +``` +## +# Host Database +# +# localhost is used to configure the loopback interface +# when the system is booting. Do not change this entry. +## +127.0.0.1 localhost +255.255.255.255 broadcasthost +::1 localhost +127.0.0.1 myapp.test +``` + +This will ensure that when navigating to `myapp.test`, it will route the +request to `127.0.0.1` which will be handled by Nginx in Laradock. + + +## Docker Compose setup +In order to make the Selenium container talk to the Nginx container appropriately, +the `docker-compose.yml` needs to be edited to accommodate this. Make the following +changes: + +```yaml +... +selenium: + ... + depends_on: + - nginx + links: + - nginx: +``` + +This allows network communication between the Nginx and Selenium containers +and it also ensures that when starting the Selenium container, the Nginx +container starts up first unless it's already running. This allows +the Selenium container to make requests to the Nginx container, which is +necessary for running Dusk tests. These changes also link the `nginx` environment +variable to the domain you wired up in your hosts file. + + +## Laravel Dusk Setup + +In order to make Laravel Dusk make the proper request to the Selenium container, +you have to edit the `DuskTestCase.php` file that's provided on the initial +installation of Laravel Dusk. The change you have to make deals with the URL the +Remote Web Driver attempts to use to set up the Selenium session. + +One recommendation for this is to add a separate config option in your `.env.dusk.local` +so it's still possible to run your Dusk tests locally should you want to. + +### .env.dusk.local +``` +... +USE_SELENIUM=true +``` + +### DuskTestCase.php +```php +abstract class DuskTestCase extends BaseTestCase +{ +... + protected function driver() + { + if (env('USE_SELENIUM', 'false') == 'true') { + return RemoteWebDriver::create( + 'http://selenium:4444/wd/hub', DesiredCapabilities::chrome() + ); + } else { + return RemoteWebDriver::create( + 'http://localhost:9515', DesiredCapabilities::chrome() + ); + } + } +} +``` + + +## Running Laravel Dusk Tests + +Now that you have everything set up, to run your Dusk tests, you have to SSH +into the workspace container as you normally would: +```docker-compose exec --user=laradock workspace bash``` + +Once inside, you can change directory to your application and run: + +```php artisan dusk``` + +One way to make this easier from your project is to create a helper script. Here's one such example: +```bash +#!/usr/bin/env sh + +LARADOCK_HOME="path/to/laradock" + +pushd ${LARADOCK_HOME} + +docker-compose exec --user=laradock workspace bash -c "cd my-project && php artisan dusk && exit" +``` + +This invokes the Dusk command from inside the workspace container but when the script completes +execution, it returns your session to your project directory. + +[^1]: [Don't Use .dev for Development](https://iyware.com/dont-use-dev-for-development/) From 30b626d43ed2adddfbe9eebdb3d3450afb17c088 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Mon, 14 Aug 2017 10:04:11 +0800 Subject: [PATCH 177/313] fix to backup and fix max client in this version, you can backup postgresql --- pgadmin/Dockerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pgadmin/Dockerfile b/pgadmin/Dockerfile index 7dd96068..5836801f 100644 --- a/pgadmin/Dockerfile +++ b/pgadmin/Dockerfile @@ -1,5 +1,10 @@ -FROM chorss/docker-pgadmin4 +FROM fenglc/pgadmin4 -MAINTAINER Bo-Yi Wu +MAINTAINER Huadong Zuo + +# user: pgadmin4@pgadmin.org +# password: admin +# pg_dump in "/usr/bin" +# backup in "/var/lib/pgadmin4/data/storage/pgadmin4/" EXPOSE 5050 From 76001daf71e21971a89ed4096f9b84e42244a805 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Mon, 14 Aug 2017 10:09:17 +0800 Subject: [PATCH 178/313] add pgadmin backup volumes you can use backup files in ${DATA_SAVE_PATH}/pgadmin-backup --- docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index ba386248..e5b875e9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -468,11 +468,14 @@ services: build: ./pgadmin ports: - "5050:5050" + volumes: + - ${DATA_SAVE_PATH}/pgadmin-backup:/var/lib/pgadmin4/data/storage/pgadmin4 depends_on: - postgres networks: - frontend - backend + ### ElasticSearch Container ################################# From 08896f9fb60d47d406f0764e49bf6e235bfed704 Mon Sep 17 00:00:00 2001 From: Vladislav Otchenashev Date: Wed, 16 Aug 2017 00:33:51 +0300 Subject: [PATCH 179/313] Fix supervisord.conf file path otherwise image ignores the supplied supervisord.conf --- php-worker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-worker/Dockerfile b/php-worker/Dockerfile index 2eb3f92f..687cec5f 100644 --- a/php-worker/Dockerfile +++ b/php-worker/Dockerfile @@ -19,7 +19,7 @@ MAINTAINER Mahmoud Zalt # Modify the ./supervisor.conf file to match your App's requirements. # Make sure you rebuild your container with every change. # -COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf +COPY supervisord.conf /etc/supervisord.conf # #-------------------------------------------------------------------------- From 9ce470e14ebb4cef1ece05043ec8fd876fc46e33 Mon Sep 17 00:00:00 2001 From: Patrick Mac Gregor Date: Wed, 16 Aug 2017 11:21:04 +0200 Subject: [PATCH 180/313] [php-worker] dedicated dockerfile for php 7.0/7.1 fixes #927: PHP-Worker container uses PHP-CLI 7.0.9 despite workspace using 7.1.4 --- docker-compose.yml | 1 + php-worker/{Dockerfile => Dockerfile-70} | 27 +++++++++-- php-worker/Dockerfile-71 | 59 ++++++++++++++++++++++++ 3 files changed, 83 insertions(+), 4 deletions(-) rename php-worker/{Dockerfile => Dockerfile-70} (67%) create mode 100644 php-worker/Dockerfile-71 diff --git a/docker-compose.yml b/docker-compose.yml index e5b875e9..d1b42272 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -100,6 +100,7 @@ services: php-worker: build: context: ./php-worker + dockerfile: "Dockerfile-${PHP_VERSION}" volumes_from: - applications depends_on: diff --git a/php-worker/Dockerfile b/php-worker/Dockerfile-70 similarity index 67% rename from php-worker/Dockerfile rename to php-worker/Dockerfile-70 index 687cec5f..8b7dd601 100644 --- a/php-worker/Dockerfile +++ b/php-worker/Dockerfile-70 @@ -3,14 +3,30 @@ # Image Setup #-------------------------------------------------------------------------- # -# To take a look at the'php-worker' base Image, visit its DockerHub page -# https://hub.docker.com/r/nielsvdoorn/laravel-supervisor/ -# -FROM nielsvdoorn/laravel-supervisor +FROM php:7.0-alpine MAINTAINER Mahmoud Zalt +RUN apk --update add wget \ + curl \ + git \ + build-base \ + libmemcached-dev \ + libmcrypt-dev \ + libxml2-dev \ + zlib-dev \ + autoconf \ + cyrus-sasl-dev \ + libgsasl-dev \ + supervisor + +RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql mcrypt tokenizer xml +RUN pecl channel-update pecl.php.net && pecl install memcached && docker-php-ext-enable memcached + +RUN rm /var/cache/apk/* \ + && mkdir -p /var/www + # #-------------------------------------------------------------------------- # Optional Supervisord Configuration @@ -19,8 +35,11 @@ MAINTAINER Mahmoud Zalt # Modify the ./supervisor.conf file to match your App's requirements. # Make sure you rebuild your container with every change. # + COPY supervisord.conf /etc/supervisord.conf +ENTRYPOINT ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisord.conf"] + # #-------------------------------------------------------------------------- # Optional Software's Installation diff --git a/php-worker/Dockerfile-71 b/php-worker/Dockerfile-71 new file mode 100644 index 00000000..697efb67 --- /dev/null +++ b/php-worker/Dockerfile-71 @@ -0,0 +1,59 @@ +# +#-------------------------------------------------------------------------- +# Image Setup +#-------------------------------------------------------------------------- +# + +FROM php:7.1-alpine + +MAINTAINER Mahmoud Zalt + +RUN apk --update add wget \ + curl \ + git \ + build-base \ + libmemcached-dev \ + libmcrypt-dev \ + libxml2-dev \ + zlib-dev \ + autoconf \ + cyrus-sasl-dev \ + libgsasl-dev \ + supervisor + +RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql mcrypt tokenizer xml +RUN pecl channel-update pecl.php.net && pecl install memcached && docker-php-ext-enable memcached + +RUN rm /var/cache/apk/* \ + && mkdir -p /var/www + +# +#-------------------------------------------------------------------------- +# Optional Supervisord Configuration +#-------------------------------------------------------------------------- +# +# Modify the ./supervisor.conf file to match your App's requirements. +# Make sure you rebuild your container with every change. +# + +COPY supervisord.conf /etc/supervisord.conf + +ENTRYPOINT ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisord.conf"] + +# +#-------------------------------------------------------------------------- +# Optional Software's Installation +#-------------------------------------------------------------------------- +# +# If you need to modify this image, feel free to do it right here. +# + # -- Your awesome modifications go here -- # + + +# +#-------------------------------------------------------------------------- +# Final Touch +#-------------------------------------------------------------------------- +# + +WORKDIR /etc/supervisor/conf.d/ From 93d5b318fe2cbea88f4bd47de0b3d91183ded495 Mon Sep 17 00:00:00 2001 From: terry Date: Sat, 19 Aug 2017 22:58:40 +0800 Subject: [PATCH 181/313] add drupal console to workspace --- docker-compose.yml | 1 + env-example | 1 + workspace/Dockerfile-56 | 14 ++++++++++++++ workspace/Dockerfile-70 | 14 ++++++++++++++ workspace/Dockerfile-71 | 14 ++++++++++++++ 5 files changed, 44 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index e5b875e9..976e3703 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -23,6 +23,7 @@ services: - INSTALL_NODE=${WORKSPACE_INSTALL_NODE} - INSTALL_YARN=${WORKSPACE_INSTALL_YARN} - INSTALL_DRUSH=${WORKSPACE_INSTALL_DRUSH} + - INSTALL_DRUPAL_CONSOLE=${WORKSPACE_INSTALL_DRUPAL_CONSOLE} - INSTALL_AEROSPIKE=${WORKSPACE_INSTALL_AEROSPIKE} - INSTALL_V8JS=${WORKSPACE_INSTALL_V8JS} - COMPOSER_GLOBAL_INSTALL=${WORKSPACE_COMPOSER_GLOBAL_INSTALL} diff --git a/env-example b/env-example index 423e1aef..15beb1a2 100644 --- a/env-example +++ b/env-example @@ -36,6 +36,7 @@ WORKSPACE_INSTALL_MSSQL=false WORKSPACE_INSTALL_NODE=false WORKSPACE_INSTALL_YARN=false WORKSPACE_INSTALL_DRUSH=false +WORKSPACE_INSTALL_DRUPAL_CONSOLE=false WORKSPACE_INSTALL_AEROSPIKE=false WORKSPACE_INSTALL_V8JS=false WORKSPACE_COMPOSER_GLOBAL_INSTALL=false diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index a3292e9f..a5ba7889 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -210,6 +210,20 @@ RUN if [ ${INSTALL_DRUSH} = true ]; then \ drush core-status \ ;fi +##################################### +# Drupal Console: +##################################### +USER root +ARG INSTALL_DRUPAL_CONSOLE=false +ENV INSTALL_DRUPAL_CONSOLE ${INSTALL_DRUPAL_CONSOLE} +RUN if [ ${INSTALL_DRUPAL_CONSOLE} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ + curl https://drupalconsole.com/installer -L -o drupal.phar && \ + mv drupal.phar /usr/local/bin/drupal && \ + chmod +x /usr/local/bin/drupal \ +;fi + USER laradock ##################################### diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index c6c4e382..3d1cde55 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -210,6 +210,20 @@ RUN if [ ${INSTALL_DRUSH} = true ]; then \ drush core-status \ ;fi +##################################### +# Drupal Console: +##################################### +USER root +ARG INSTALL_DRUPAL_CONSOLE=false +ENV INSTALL_DRUPAL_CONSOLE ${INSTALL_DRUPAL_CONSOLE} +RUN if [ ${INSTALL_DRUPAL_CONSOLE} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ + curl https://drupalconsole.com/installer -L -o drupal.phar && \ + mv drupal.phar /usr/local/bin/drupal && \ + chmod +x /usr/local/bin/drupal \ +;fi + USER laradock ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 5a390966..b0320e6b 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -207,6 +207,20 @@ RUN if [ ${INSTALL_DRUSH} = true ]; then \ drush core-status \ ;fi +##################################### +# Drupal Console: +##################################### +USER root +ARG INSTALL_DRUPAL_CONSOLE=false +ENV INSTALL_DRUPAL_CONSOLE ${INSTALL_DRUPAL_CONSOLE} +RUN if [ ${INSTALL_DRUPAL_CONSOLE} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ + curl https://drupalconsole.com/installer -L -o drupal.phar && \ + mv drupal.phar /usr/local/bin/drupal && \ + chmod +x /usr/local/bin/drupal \ +;fi + USER laradock ##################################### From 2af5b2ff499682ad7c99372c483a8f0de179c370 Mon Sep 17 00:00:00 2001 From: Osama Date: Tue, 22 Aug 2017 12:12:56 +0300 Subject: [PATCH 182/313] fix mysql can't write to file --- docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index e5b875e9..21114b6f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -211,6 +211,7 @@ services: - ${MYSQL_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d ports: - "${MYSQL_PORT}:3306" + user: "1000:50" networks: - backend @@ -475,7 +476,7 @@ services: networks: - frontend - backend - + ### ElasticSearch Container ################################# From f800a3221a08f329672a724ccb4e9c7b91a6cab2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Roberto=20P=2E=20Borges?= Date: Tue, 29 Aug 2017 12:54:01 -0300 Subject: [PATCH 183/313] Changes to correct version of dockerfile - Removes extra spaces --- DOCUMENTATION/content/documentation/index.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index bcda7649..f3a77807 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -232,7 +232,7 @@ By default **PHP-FPM 7.0** is running. php-fpm: build: context: ./php-fpm - dockerfile: Dockerfile-70 + dockerfile: Dockerfile-56 ... ``` @@ -331,7 +331,7 @@ For information on how to configure xDebug with your IDE and work it out, check ## Setup remote debugging for PhpStorm on Linux - - Make sure you have followed the steps above in the [Install Xdebug section](http://laradock.io/documentation/#install-xdebug). + - Make sure you have followed the steps above in the [Install Xdebug section](http://laradock.io/documentation/#install-xdebug). - Make sure Xdebug accepts connections and listens on port 9000. (Should be default configuration). @@ -946,7 +946,7 @@ To install CodeIgniter 3 on Laradock all you have to do is the following simple ## Install Symfony -1 - Open the `.env` file and set `WORKSPACE_INSTALL_SYMFONY` to `true`. +1 - Open the `.env` file and set `WORKSPACE_INSTALL_SYMFONY` to `true`. 2 - Run `docker-compose build workspace`, after the step above. @@ -1449,7 +1449,7 @@ You can use the d4m-nfs solution in 2 ways, one is using the Laradock built it i #### B.1: using the built in d4m-nfs integration -In simple terms, docker-sync creates a docker container with a copy of all the application files that can be accessed very quickly from the other containers. +In simple terms, docker-sync creates a docker container with a copy of all the application files that can be accessed very quickly from the other containers. On the other hand, docker-sync runs a process on the host machine that continuously tracks and updates files changes from the host to this intermediate container. Out of the box, it comes pre-configured for OS X, but using it on Windows is very easy to set-up by modifying the `DOCKER_SYNC_STRATEGY` on the `.env` @@ -1473,7 +1473,7 @@ DOCKER_SYNC_STRATEGY=native_osx ```bash ./sync.sh install ``` -3) Start docker-sync and the Laradock environment. +3) Start docker-sync and the Laradock environment. Specify the services you want to run, as you would normally do with `docker-compose up` ```bash ./sync.sh up nginx mysql @@ -1486,7 +1486,7 @@ Please note that the first time docker-sync runs, it will copy all the files to ##### Setting up Aliases (optional) -You may create bash profile aliases to avoid having to remember and type these commands for everyday development. +You may create bash profile aliases to avoid having to remember and type these commands for everyday development. Add the following lines to your `~/.bash_profile`: ```bash @@ -1495,11 +1495,11 @@ alias devbash="cd /PATH_TO_LARADOCK/laradock; ./sync.sh bash" alias devdown="cd /PATH_TO_LARADOCK/laradock; ./sync.sh down" ``` -Now from any location on your machine, you can simply run `devup`, `devbash` and `devdown`. +Now from any location on your machine, you can simply run `devup`, `devbash` and `devdown`. ##### Additional Commands - + Opening bash on the workspace container (to run artisan for example): ```bash ./sync.sh bash @@ -1516,7 +1516,7 @@ Removing and cleaning up the files and the docker-sync container. Use only if yo ##### Additional Notes -- You may run laradock with or without docker-sync at any time using with the same `.env` and `docker-compose.yml`, because the configuration is overridden automatically when docker-sync is used. +- You may run laradock with or without docker-sync at any time using with the same `.env` and `docker-compose.yml`, because the configuration is overridden automatically when docker-sync is used. - You may inspect the `sync.sh` script to learn each of the commands and even add custom ones. - If a container cannot access the files on docker-sync, you may need to set a user on the Dockerfile of that container with an id of 1000 (this is the UID that nginx and php-fpm have configured on laradock). Alternatively, you may change the permissions to 777, but this is **not** recommended. From 53b3ad0f7ea0afee7775bf10ed18b16ebd236689 Mon Sep 17 00:00:00 2001 From: Eugene Kirdzei Date: Thu, 31 Aug 2017 16:41:01 +0300 Subject: [PATCH 184/313] Fix Php Redis extension installation --- docker-compose.yml | 1 + env-example | 1 + php-fpm/Dockerfile-71 | 2 +- workspace/Dockerfile-71 | 15 ++++++++++++++- 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2173df74..fcd2342b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,6 +19,7 @@ services: - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE} - INSTALL_SOAP=${WORKSPACE_INSTALL_SOAP} - INSTALL_MONGO=${WORKSPACE_INSTALL_MONGO} + - INSTALL_PHPREDIS=${WORKSPACE_INSTALL_PHPREDIS} - INSTALL_MSSQL=${WORKSPACE_INSTALL_MSSQL} - INSTALL_NODE=${WORKSPACE_INSTALL_NODE} - INSTALL_YARN=${WORKSPACE_INSTALL_YARN} diff --git a/env-example b/env-example index 15beb1a2..fd73b994 100644 --- a/env-example +++ b/env-example @@ -32,6 +32,7 @@ PHP_INTERPRETER=php-fpm WORKSPACE_INSTALL_XDEBUG=false WORKSPACE_INSTALL_SOAP=false WORKSPACE_INSTALL_MONGO=false +WORKSPACE_INSTALL_PHPREDIS=false WORKSPACE_INSTALL_MSSQL=false WORKSPACE_INSTALL_NODE=false WORKSPACE_INSTALL_YARN=false diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 90ea2bd0..411e12d7 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -84,7 +84,7 @@ RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ ARG INSTALL_PHPREDIS=false RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ # Install Php Redis Extension - pecl install -o -f redis \ + printf "\n" | pecl install -o -f redis \ && rm -rf /tmp/pear \ && docker-php-ext-enable redis \ ;fi diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index b0320e6b..72b3f770 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -186,11 +186,24 @@ ARG INSTALL_MONGO=false ENV INSTALL_MONGO ${INSTALL_MONGO} RUN if [ ${INSTALL_MONGO} = true ]; then \ # Install the mongodb extension - pecl install mongodb && \ + pecl -q install mongodb && \ echo "extension=mongodb.so" >> /etc/php/7.1/mods-available/mongodb.ini && \ ln -s /etc/php/7.1/mods-available/mongodb.ini /etc/php/7.1/cli/conf.d/30-mongodb.ini \ ;fi +##################################### +# PHP REDIS EXTENSION FOR PHP 7 +##################################### + +ARG INSTALL_PHPREDIS=false +ENV INSTALL_PHPREDIS ${INSTALL_PHPREDIS} +RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ + # Install Php Redis extension + printf "\n" | pecl -q install -o -f redis && \ + echo "extension=redis.so" >> /etc/php/7.1/mods-available/redis.ini && \ + phpenmod redis \ +;fi + ##################################### # Drush: ##################################### From cddc934e1e89c2b8af814e5b41b3e9204a5960fe Mon Sep 17 00:00:00 2001 From: Eugene Kirdzei Date: Mon, 4 Sep 2017 11:33:14 +0300 Subject: [PATCH 185/313] Fix phpreddis installation for all versions of php --- php-fpm/Dockerfile-56 | 2 +- php-fpm/Dockerfile-70 | 2 +- workspace/Dockerfile-56 | 13 +++++++++++++ workspace/Dockerfile-70 | 13 +++++++++++++ workspace/Dockerfile-71 | 2 +- 5 files changed, 29 insertions(+), 3 deletions(-) diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 1d8fd976..1b240c45 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -87,7 +87,7 @@ RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ ARG INSTALL_PHPREDIS=false RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ # Install Php Redis Extension - pecl install -o -f redis \ + printf "\n" | pecl install -o -f redis \ && rm -rf /tmp/pear \ && docker-php-ext-enable redis \ ;fi diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index b643a384..1028fbc9 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -84,7 +84,7 @@ RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ ARG INSTALL_PHPREDIS=false RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ # Install Php Redis Extension - pecl install -o -f redis \ + printf "\n" | pecl install -o -f redis \ && rm -rf /tmp/pear \ && docker-php-ext-enable redis \ ;fi diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index a5ba7889..5e775e54 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -194,6 +194,19 @@ RUN if [ ${INSTALL_MONGO} = true ]; then \ ln -s /etc/php/5.6/mods-available/mongodb.ini /etc/php/5.6/cli/conf.d/30-mongodb.ini \ ;fi +##################################### +# PHP REDIS EXTENSION FOR PHP 5.6 +##################################### + +ARG INSTALL_PHPREDIS=false +ENV INSTALL_PHPREDIS ${INSTALL_PHPREDIS} +RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ + # Install Php Redis extension + printf "\n" | pecl -q install -o -f redis && \ + echo "extension=redis.so" >> /etc/php/5.6/mods-available/redis.ini && \ + phpenmod redis \ +;fi + ##################################### # Drush: ##################################### diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 3d1cde55..48443a2b 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -194,6 +194,19 @@ RUN if [ ${INSTALL_MONGO} = true ]; then \ ln -s /etc/php/7.0/mods-available/mongodb.ini /etc/php/7.0/cli/conf.d/30-mongodb.ini \ ;fi +##################################### +# PHP REDIS EXTENSION FOR PHP 7 +##################################### + +ARG INSTALL_PHPREDIS=false +ENV INSTALL_PHPREDIS ${INSTALL_PHPREDIS} +RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ + # Install Php Redis extension + printf "\n" | pecl -q install -o -f redis && \ + echo "extension=redis.so" >> /etc/php/7.0/mods-available/redis.ini && \ + phpenmod redis \ +;fi + ##################################### # Drush: ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 72b3f770..cba070d5 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -192,7 +192,7 @@ RUN if [ ${INSTALL_MONGO} = true ]; then \ ;fi ##################################### -# PHP REDIS EXTENSION FOR PHP 7 +# PHP REDIS EXTENSION FOR PHP 7.1 ##################################### ARG INSTALL_PHPREDIS=false From a36620c3bd4e297839f85272efecb6dac74ac438 Mon Sep 17 00:00:00 2001 From: Eugene Kirdzei Date: Mon, 4 Sep 2017 12:05:34 +0300 Subject: [PATCH 186/313] Restart build --- php-fpm/Dockerfile-71 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 411e12d7..b58a0ee3 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -78,7 +78,7 @@ RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ ;fi ##################################### -# PHP REDIS EXTENSION FOR PHP 7 +# PHP REDIS EXTENSION FOR PHP 7.0 ##################################### ARG INSTALL_PHPREDIS=false From b61ff4f484c2d9477a2a6b0e4a4486aa8524e130 Mon Sep 17 00:00:00 2001 From: Arhey Date: Tue, 5 Sep 2017 02:36:24 +0300 Subject: [PATCH 187/313] Added support of ImageMagick --- docker-compose.yml | 1 + env-example | 1 + workspace/Dockerfile-56 | 10 ++++++++++ workspace/Dockerfile-70 | 10 ++++++++++ workspace/Dockerfile-71 | 9 +++++++++ 5 files changed, 31 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index fcd2342b..3f7506f0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -37,6 +37,7 @@ services: - INSTALL_SYMFONY=${WORKSPACE_INSTALL_SYMFONY} - INSTALL_PYTHON=${WORKSPACE_INSTALL_PYTHON} - INSTALL_IMAGE_OPTIMIZERS=${WORKSPACE_INSTALL_IMAGE_OPTIMIZERS} + - INSTALL_IMAGEMAGICK=${WORKSPACE_INSTALL_IMAGEMAGICK} - PUID=${WORKSPACE_PUID} - PGID=${WORKSPACE_PGID} - NODE_VERSION=${WORKSPACE_NODE_VERSION} diff --git a/env-example b/env-example index fd73b994..6302c697 100644 --- a/env-example +++ b/env-example @@ -50,6 +50,7 @@ WORKSPACE_INSTALL_MC=false WORKSPACE_INSTALL_SYMFONY=false WORKSPACE_INSTALL_PYTHON=false WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false +WORKSPACE_INSTALL_IMAGEMAGICK=false WORKSPACE_PUID=1000 WORKSPACE_PGID=1000 WORKSPACE_NODE_VERSION=stable diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 5e775e54..cbc10baa 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -496,6 +496,16 @@ RUN if [ ${INSTALL_PYTHON} = true ]; then \ && pip install --upgrade virtualenv \ ;fi +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get install -y --force-yes imagemagick php-imagick && \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 48443a2b..a6d38e69 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -577,6 +577,16 @@ RUN if [ ${INSTALL_PYTHON} = true ]; then \ && pip install --upgrade virtualenv \ ;fi +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get install -y --force-yes imagemagick php-imagick && \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index cba070d5..c1ad0f6c 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -582,6 +582,15 @@ RUN if [ ${INSTALL_PYTHON} = true ]; then \ && pip install --upgrade virtualenv \ ;fi +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get install -y --force-yes imagemagick php-imagick && \ +;fi # #-------------------------------------------------------------------------- From f9e6acd4e19e1aeca8f6f028a6ab24c389b25a7d Mon Sep 17 00:00:00 2001 From: Arhey Date: Tue, 5 Sep 2017 03:15:24 +0300 Subject: [PATCH 188/313] Fix syntax error --- workspace/Dockerfile-56 | 2 +- workspace/Dockerfile-70 | 2 +- workspace/Dockerfile-71 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index cbc10baa..de180687 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -503,7 +503,7 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick && \ + apt-get install -y --force-yes imagemagick php-imagick \ ;fi # diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index a6d38e69..9ca8e6c0 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -584,7 +584,7 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick && \ + apt-get install -y --force-yes imagemagick php-imagick \ ;fi # diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index c1ad0f6c..b6f423fd 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -589,7 +589,7 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick && \ + apt-get install -y --force-yes imagemagick php-imagick \ ;fi # From e56801846b778c51fab653785a2e07f9abe31cd0 Mon Sep 17 00:00:00 2001 From: wanchia Date: Tue, 5 Sep 2017 11:06:53 +0800 Subject: [PATCH 189/313] add ENV PATH, fix the problem of docker-compose exec workspace npm(or other node-related script). --- workspace/Dockerfile-56 | 3 +++ workspace/Dockerfile-70 | 3 +++ workspace/Dockerfile-71 | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 5e775e54..46c72585 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -276,6 +276,9 @@ RUN if [ ${INSTALL_NODE} = true ]; then \ echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm' >> ~/.bashrc \ ;fi +# Add PATH for node +ENV PATH $PATH:$NVM_DIR/versions/node/v${NODE_VERSION}/bin + ##################################### # YARN: ##################################### diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 48443a2b..1f56aa0c 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -276,6 +276,9 @@ RUN if [ ${INSTALL_NODE} = true ]; then \ echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm' >> ~/.bashrc \ ;fi +# Add PATH for node +ENV PATH $PATH:$NVM_DIR/versions/node/v${NODE_VERSION}/bin + ##################################### # YARN: ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index cba070d5..915a9cf5 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -273,6 +273,10 @@ RUN if [ ${INSTALL_NODE} = true ]; then \ echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm' >> ~/.bashrc \ ;fi +# Add PATH for node +ENV PATH $PATH:$NVM_DIR/versions/node/v${NODE_VERSION}/bin + + ##################################### # YARN: ##################################### From f6552aca97f0483bb48a76f7997e903a154a30c8 Mon Sep 17 00:00:00 2001 From: Arhey Date: Tue, 5 Sep 2017 21:09:34 +0300 Subject: [PATCH 190/313] Added support of ImageMagick to php-fpm --- php-fpm/Dockerfile-56 | 10 ++++++++++ php-fpm/Dockerfile-70 | 10 ++++++++++ php-fpm/Dockerfile-71 | 10 ++++++++++ 3 files changed, 30 insertions(+) diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 1b240c45..7a623e09 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -269,6 +269,16 @@ RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle \ ;fi +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get install -y --force-yes imagemagick php-imagick \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 1028fbc9..349f614f 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -293,6 +293,16 @@ RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle \ ;fi +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get install -y --force-yes imagemagick php-imagick \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index b58a0ee3..63992b88 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -300,6 +300,16 @@ RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle \ ;fi +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get install -y --force-yes imagemagick php-imagick \ +;fi + # #-------------------------------------------------------------------------- # Final Touch From 0a23d53ee5640936f52836338b06dd82da7331b3 Mon Sep 17 00:00:00 2001 From: Arhey Date: Tue, 5 Sep 2017 21:47:47 +0300 Subject: [PATCH 191/313] Move php-imagick to php-fpm and enable it --- php-fpm/Dockerfile-56 | 3 ++- php-fpm/Dockerfile-70 | 3 ++- php-fpm/Dockerfile-71 | 3 ++- workspace/Dockerfile-56 | 2 +- workspace/Dockerfile-70 | 2 +- workspace/Dockerfile-71 | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 7a623e09..0caf4d3f 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -276,7 +276,8 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick \ + apt-get install -y --force-yes imagemagick php-imagick && \ + docker-php-ext-enable imagick \ ;fi # diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 349f614f..264c9bb8 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -300,7 +300,8 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick \ + apt-get install -y --force-yes imagemagick php-imagick && \ + docker-php-ext-enable imagick \ ;fi # diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 63992b88..66bf4632 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -307,7 +307,8 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick \ + apt-get install -y --force-yes imagemagick php-imagick && \ + docker-php-ext-enable imagick \ ;fi # diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index de180687..b6e1de22 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -503,7 +503,7 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick \ + apt-get install -y --force-yes imagemagick \ ;fi # diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 9ca8e6c0..824c4a3e 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -584,7 +584,7 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick \ + apt-get install -y --force-yes imagemagick \ ;fi # diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index b6f423fd..3030447b 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -589,7 +589,7 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick \ + apt-get install -y --force-yes imagemagick \ ;fi # From b2e372054fad67623634260b48a48fbc0ec49386 Mon Sep 17 00:00:00 2001 From: Arhey Date: Tue, 5 Sep 2017 23:36:30 +0300 Subject: [PATCH 192/313] Fixed php-fpm build --- docker-compose.yml | 1 + env-example | 1 + php-fpm/Dockerfile-56 | 4 +++- php-fpm/Dockerfile-70 | 4 +++- php-fpm/Dockerfile-71 | 4 +++- workspace/Dockerfile-56 | 2 +- workspace/Dockerfile-70 | 2 +- workspace/Dockerfile-71 | 2 +- 8 files changed, 14 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3f7506f0..d7ddf84f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -82,6 +82,7 @@ services: - INSTALL_LDAP=${PHP_FPM_INSTALL_LDAP} - INSTALL_SWOOLE=${PHP_FPM_INSTALL_SWOOLE} - INSTALL_IMAGE_OPTIMIZERS=${PHP_FPM_INSTALL_IMAGE_OPTIMIZERS} + - INSTALL_IMAGEMAGICK=${PHP_FPM_INSTALL_IMAGEMAGICK} dockerfile: "Dockerfile-${PHP_VERSION}" volumes_from: - applications diff --git a/env-example b/env-example index 6302c697..34670e71 100644 --- a/env-example +++ b/env-example @@ -78,6 +78,7 @@ PHP_FPM_INSTALL_GHOSTSCRIPT=false PHP_FPM_INSTALL_LDAP=false PHP_FPM_INSTALL_SWOOLE=false PHP_FPM_INSTALL_IMAGE_OPTIMIZERS=false +PHP_FPM_INSTALL_IMAGEMAGICK=false ### NGINX ############################################################################################################## diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 0caf4d3f..6c1d19e2 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -276,7 +276,9 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick && \ + apt-get update -y && \ + apt-get install -y libmagickwand-dev imagemagick && \ + pecl install imagick && \ docker-php-ext-enable imagick \ ;fi diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 264c9bb8..c1bdcd10 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -300,7 +300,9 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick && \ + apt-get update -y && \ + apt-get install -y libmagickwand-dev imagemagick && \ + pecl install imagick && \ docker-php-ext-enable imagick \ ;fi diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 66bf4632..74682248 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -307,7 +307,9 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick php-imagick && \ + apt-get update -y && \ + apt-get install -y libmagickwand-dev imagemagick && \ + pecl install imagick && \ docker-php-ext-enable imagick \ ;fi diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index b6e1de22..de180687 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -503,7 +503,7 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick \ + apt-get install -y --force-yes imagemagick php-imagick \ ;fi # diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 824c4a3e..9ca8e6c0 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -584,7 +584,7 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick \ + apt-get install -y --force-yes imagemagick php-imagick \ ;fi # diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 3030447b..b6f423fd 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -589,7 +589,7 @@ USER root ARG INSTALL_IMAGEMAGICK=false ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ - apt-get install -y --force-yes imagemagick \ + apt-get install -y --force-yes imagemagick php-imagick \ ;fi # From 5c5f94600a4430f5932703a74bcca5a922fd0b81 Mon Sep 17 00:00:00 2001 From: Arhey Date: Wed, 6 Sep 2017 00:22:18 +0300 Subject: [PATCH 193/313] Rename laravel.pool.conf to xlaravel.pool.conf Fix issue #1011 --- php-fpm/Dockerfile-56 | 2 +- php-fpm/Dockerfile-70 | 2 +- php-fpm/Dockerfile-71 | 2 +- php-fpm/{laravel.pool.conf => xlaravel.pool.conf} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename php-fpm/{laravel.pool.conf => xlaravel.pool.conf} (100%) diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 6c1d19e2..ed8cb892 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -289,7 +289,7 @@ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ # ADD ./laravel.ini /usr/local/etc/php/conf.d -ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ +ADD ./xlaravel.pool.conf /usr/local/etc/php-fpm.d/ #RUN rm -r /var/lib/apt/lists/* diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index c1bdcd10..daf214ab 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -313,7 +313,7 @@ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ # ADD ./laravel.ini /usr/local/etc/php/conf.d/ -ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ +ADD ./xlaravel.pool.conf /usr/local/etc/php-fpm.d/ #RUN rm -r /var/lib/apt/lists/* diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 74682248..1210f292 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -320,7 +320,7 @@ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ # ADD ./laravel.ini /usr/local/etc/php/conf.d -ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ +ADD ./xlaravel.pool.conf /usr/local/etc/php-fpm.d/ #RUN rm -r /var/lib/apt/lists/* diff --git a/php-fpm/laravel.pool.conf b/php-fpm/xlaravel.pool.conf similarity index 100% rename from php-fpm/laravel.pool.conf rename to php-fpm/xlaravel.pool.conf From 792789e4799d74da4d426b16a5ed835f62bad77c Mon Sep 17 00:00:00 2001 From: "Melchor O. Abcede Jr" Date: Tue, 12 Sep 2017 04:13:44 +0800 Subject: [PATCH 194/313] added eb cli container --- aws/.gitignore | 1 + aws/Dockerfile | 17 +++++++++++++++++ docker-compose.yml | 10 ++++++++++ 3 files changed, 28 insertions(+) create mode 100644 aws/.gitignore create mode 100644 aws/Dockerfile diff --git a/aws/.gitignore b/aws/.gitignore new file mode 100644 index 00000000..46194830 --- /dev/null +++ b/aws/.gitignore @@ -0,0 +1 @@ +./ssh_keys diff --git a/aws/Dockerfile b/aws/Dockerfile new file mode 100644 index 00000000..4f03e9dc --- /dev/null +++ b/aws/Dockerfile @@ -0,0 +1,17 @@ +FROM python:slim + +MAINTAINER melchabcede@gmail.com + +RUN pip install --upgrade --no-cache-dir awsebcli +RUN apt-get -yqq update && apt-get -yqq install git-all + +#NOTE: make sure ssh keys are added to ssh_keys folder + +RUN mkdir root/tmp_ssh +COPY /ssh_keys/. /root/.ssh/ +RUN cd /root/.ssh && chmod 600 * && chmod 644 *.pub + +# Set default work directory +WORKDIR /var/www + + diff --git a/docker-compose.yml b/docker-compose.yml index d7ddf84f..3d8d9d86 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -638,6 +638,16 @@ services: - frontend - backend +### AWS EB-CLI #### + aws: + build: + context: ./aws + volumes_from: + - applications + depends_on: + - workspace + tty: true + ### Networks Setup ############################################ networks: From 7ac37ecd350a46db04d21a7d36bf285655918ce9 Mon Sep 17 00:00:00 2001 From: "Melchor O. Abcede Jr" Date: Tue, 12 Sep 2017 04:30:53 +0800 Subject: [PATCH 195/313] added aws docs --- DOCUMENTATION/content/documentation/index.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index f3a77807..78eed6d4 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -922,6 +922,26 @@ docker-compose up -d minio ``` + +
+ +## Use AWS + +1 - Configure AWS: + - make sure to add your SSH keys in aws/ssh_keys folder + +2 - Run the Aws Container (`aws`) with the `docker-compose up` command. Example: + +```bash +docker-compose up -d aws +``` + +3 - Access the aws container with `docker-compose exec aws bash` + +4 - To start using eb cli inside the container, initiaze your project first by doing 'eb init'. Read the [aws eb cli](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-configuration.html) docs for more details. + + +
From a5f3a92eb417558bbaf8731dcbc347b061a4051b Mon Sep 17 00:00:00 2001 From: Joel Simpson Date: Thu, 14 Sep 2017 17:17:34 -0700 Subject: [PATCH 196/313] Update docker-compose.yml It looks like the 219: user: "1000:50" statement was added a while back to fix a file permissions issue, but on a completely fresh up it keeps mysql from starting, generating the following. Removing the line allowed everything to work properly.: mysql_1 | Initializing database mysql_1 | mysqld: Can't create/write to file '/var/lib/mysql/is_writable' (Errcode: 13 - Permission denied) mysql_1 | 2017-09-14T23:55:30.989254Z 0 [Note] Basedir set to /usr/ mysql_1 | 2017-09-14T23:55:30.989559Z 0 [Warning] The syntax '--symbolic-links/-s' is deprecated and will be removed in a future release mysql_1 | 2017-09-14T23:55:30.989602Z 0 [Warning] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release. mysql_1 | 2017-09-14T23:55:30.990877Z 0 [ERROR] --initialize specified but the data directory exists and is not writable. Aborting. mysql_1 | 2017-09-14T23:55:30.990886Z 0 [ERROR] Aborting --- docker-compose.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3d8d9d86..4fe71545 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -216,7 +216,6 @@ services: - ${MYSQL_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d ports: - "${MYSQL_PORT}:3306" - user: "1000:50" networks: - backend From e5aef41dd2e1b24483456853ecf1e739a1fbb837 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Aur=C3=A9lio=20Deleu?= Date: Mon, 18 Sep 2017 13:07:30 +0200 Subject: [PATCH 197/313] Make it easier to solve nginx build stuck --- DOCUMENTATION/content/documentation/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 78eed6d4..97e51e47 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -1680,3 +1680,7 @@ This error sometimes happens because your Laravel application isn't running on t 2. Change the `DB_HOST` variable on env with the IP that you received from previous step. * Option B 1. Change the `DB_HOST` value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as `mysql` + +## I get stuck when building ngxinx on `fetch http://mirrors.aliyun.com/alpine/v3.5/main/x86_64/APKINDEX.tar.gz` + +As stated on [#749](https://github.com/laradock/laradock/issues/749#issuecomment-293296687), removing the line `RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories` from `nginx/Dockerfile` solves the problem. From 110aa91c591b0cac27f567072477350f21529955 Mon Sep 17 00:00:00 2001 From: Roel Arents Date: Mon, 18 Sep 2017 15:24:48 +0200 Subject: [PATCH 198/313] add APACHE_PHP_UPSTREAM_TIMEOUT --- apache2/Dockerfile | 3 +++ docker-compose.yml | 1 + env-example | 1 + 3 files changed, 5 insertions(+) diff --git a/apache2/Dockerfile b/apache2/Dockerfile index bc152dd3..9624d975 100644 --- a/apache2/Dockerfile +++ b/apache2/Dockerfile @@ -4,11 +4,14 @@ MAINTAINER Eric Pfeiffer ARG PHP_UPSTREAM_CONTAINER=php-fpm ARG PHP_UPSTREAM_PORT=9000 +ARG PHP_UPSTREAM_TIMEOUT=60 ENV WEB_PHP_SOCKET=${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT} ENV WEB_DOCUMENT_ROOT=/var/www/ +ENV WEB_PHP_TIMEOUT=${PHP_UPSTREAM_TIMEOUT} + EXPOSE 80 443 WORKDIR /var/www/ diff --git a/docker-compose.yml b/docker-compose.yml index 4fe71545..b44e8b77 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -156,6 +156,7 @@ services: args: - PHP_UPSTREAM_CONTAINER=${APACHE_PHP_UPSTREAM_CONTAINER} - PHP_UPSTREAM_PORT=${APACHE_PHP_UPSTREAM_PORT} + - PHP_UPSTREAM_TIMEOUT=${APACHE_PHP_UPSTREAM_TIMEOUT} volumes_from: - applications volumes: diff --git a/env-example b/env-example index 34670e71..7357b3ef 100644 --- a/env-example +++ b/env-example @@ -97,6 +97,7 @@ APACHE_HOST_LOG_PATH=./logs/apache2 APACHE_SITES_PATH=./apache2/sites APACHE_PHP_UPSTREAM_CONTAINER=php-fpm APACHE_PHP_UPSTREAM_PORT=9000 +APACHE_PHP_UPSTREAM_TIMEOUT=60 ### MYSQL ############################################################################################################## From 4150f0b14032ed254191dacc85024300b354a014 Mon Sep 17 00:00:00 2001 From: Vjekoslav Nikolic Date: Wed, 20 Sep 2017 05:34:28 -0700 Subject: [PATCH 199/313] Fixes issue #1139, non-responding mirrors.aliyun.com. Reverses 6440ca841ab621305e0457f7a23505a99df44960 --- nginx/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 77f4abdd..4a491b02 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -7,9 +7,6 @@ ADD nginx.conf /etc/nginx/ ARG PHP_UPSTREAM_CONTAINER=php-fpm ARG PHP_UPSTREAM_PORT=9000 -# fix a problem--#397, change application source from dl-cdn.alpinelinux.org to aliyun source. -RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories - RUN apk update \ && apk upgrade \ && apk add --no-cache bash \ From fe254e86e32f00a9806a25a4bf045c285eafa210 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Fri, 22 Sep 2017 13:10:08 +0300 Subject: [PATCH 200/313] Fixed typo in nginx [skip ci] --- DOCUMENTATION/content/documentation/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 97e51e47..628c420a 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -1681,6 +1681,6 @@ This error sometimes happens because your Laravel application isn't running on t * Option B 1. Change the `DB_HOST` value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as `mysql` -## I get stuck when building ngxinx on `fetch http://mirrors.aliyun.com/alpine/v3.5/main/x86_64/APKINDEX.tar.gz` +## I get stuck when building nginx on `fetch http://mirrors.aliyun.com/alpine/v3.5/main/x86_64/APKINDEX.tar.gz` As stated on [#749](https://github.com/laradock/laradock/issues/749#issuecomment-293296687), removing the line `RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories` from `nginx/Dockerfile` solves the problem. From 998aa1365ed65e93fd2b35bde9a9fe086b15c671 Mon Sep 17 00:00:00 2001 From: luciano Date: Fri, 22 Sep 2017 12:23:20 +0100 Subject: [PATCH 201/313] Add aerospike.so line to be load on php-fpm --- php-fpm/aerospike.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/php-fpm/aerospike.ini b/php-fpm/aerospike.ini index 2f2aa1b7..f9c8f614 100644 --- a/php-fpm/aerospike.ini +++ b/php-fpm/aerospike.ini @@ -1,2 +1,3 @@ +extension=aerospike.so aerospike.udf.lua_system_path=/usr/local/aerospike/lua aerospike.udf.lua_user_path=/usr/local/aerospike/usr-lua \ No newline at end of file From 8cb4c8d62e6c5cf965298d665d3ee937c638d60a Mon Sep 17 00:00:00 2001 From: Taufek Johar Date: Sat, 23 Sep 2017 15:04:36 +0800 Subject: [PATCH 202/313] Add Terraform to Workspace Added Terraform (www.terraform.io) binary to workspace container. This tool is useful to spawn resources to multiple cloud providers via config files. --- docker-compose.yml | 1 + env-example | 1 + workspace/Dockerfile-56 | 15 +++++++++++++++ workspace/Dockerfile-70 | 15 +++++++++++++++ workspace/Dockerfile-71 | 15 +++++++++++++++ 5 files changed, 47 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index b44e8b77..1940b860 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -38,6 +38,7 @@ services: - INSTALL_PYTHON=${WORKSPACE_INSTALL_PYTHON} - INSTALL_IMAGE_OPTIMIZERS=${WORKSPACE_INSTALL_IMAGE_OPTIMIZERS} - INSTALL_IMAGEMAGICK=${WORKSPACE_INSTALL_IMAGEMAGICK} + - INSTALL_TERRAFORM=${WORKSPACE_INSTALL_TERRAFORM} - PUID=${WORKSPACE_PUID} - PGID=${WORKSPACE_PGID} - NODE_VERSION=${WORKSPACE_NODE_VERSION} diff --git a/env-example b/env-example index 7357b3ef..b026ae7c 100644 --- a/env-example +++ b/env-example @@ -51,6 +51,7 @@ WORKSPACE_INSTALL_SYMFONY=false WORKSPACE_INSTALL_PYTHON=false WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false WORKSPACE_INSTALL_IMAGEMAGICK=false +WORKSPACE_INSTALL_TERRAFORM=false WORKSPACE_PUID=1000 WORKSPACE_PGID=1000 WORKSPACE_NODE_VERSION=stable diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index bac3ee92..a3885523 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -509,6 +509,21 @@ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ apt-get install -y --force-yes imagemagick php-imagick \ ;fi +##################################### +# Terraform: +##################################### +USER root +ARG INSTALL_TERRAFORM=false +ENV INSTALL_TERRAFORM ${INSTALL_TERRAFORM} +RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ + apt-get update -yqq \ + && apt-get -y install sudo wget unzip \ + && wget https://releases.hashicorp.com/terraform/0.10.6/terraform_0.10.6_linux_amd64.zip \ + && unzip terraform_0.10.6_linux_amd64.zip \ + && mv terraform /usr/local/bin \ + && rm terraform_0.10.6_linux_amd64.zip \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 20188169..297d26df 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -590,6 +590,21 @@ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ apt-get install -y --force-yes imagemagick php-imagick \ ;fi +##################################### +# Terraform: +##################################### +USER root +ARG INSTALL_TERRAFORM=false +ENV INSTALL_TERRAFORM ${INSTALL_TERRAFORM} +RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ + apt-get update -yqq \ + && apt-get -y install sudo wget unzip \ + && wget https://releases.hashicorp.com/terraform/0.10.6/terraform_0.10.6_linux_amd64.zip \ + && unzip terraform_0.10.6_linux_amd64.zip \ + && mv terraform /usr/local/bin \ + && rm terraform_0.10.6_linux_amd64.zip \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index aeaec9c0..a57bff60 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -596,6 +596,21 @@ RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ apt-get install -y --force-yes imagemagick php-imagick \ ;fi +##################################### +# Terraform: +##################################### +USER root +ARG INSTALL_TERRAFORM=false +ENV INSTALL_TERRAFORM ${INSTALL_TERRAFORM} +RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ + apt-get update -yqq \ + && apt-get -y install sudo wget unzip \ + && wget https://releases.hashicorp.com/terraform/0.10.6/terraform_0.10.6_linux_amd64.zip \ + && unzip terraform_0.10.6_linux_amd64.zip \ + && mv terraform /usr/local/bin \ + && rm terraform_0.10.6_linux_amd64.zip \ +;fi + # #-------------------------------------------------------------------------- # Final Touch From 8c1e71eca5d036920cc7dd14e959dbd695b78c77 Mon Sep 17 00:00:00 2001 From: Taufek Johar Date: Sun, 24 Sep 2017 22:15:59 +0800 Subject: [PATCH 203/313] Add artisan aliases Added below php artisan commonly used aliases: ``` dusk = php artisan dusk fresh = php artisan migrate:fresh refresh = php artisan migrate:refresh rollback = php artisan migrate:rollback ``` --- workspace/aliases.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/workspace/aliases.sh b/workspace/aliases.sh index 1bf21c65..3e9bbb6f 100644 --- a/workspace/aliases.sh +++ b/workspace/aliases.sh @@ -63,7 +63,11 @@ alias artisan="php artisan" alias cdump="composer dump-autoload -o" alias composer:dump="composer dump-autoload -o" alias db:reset="php artisan migrate:reset && php artisan migrate --seed" +alias dusk="php artisan dusk" +alias fresh="php artisan migrate:fresh" alias migrate="php artisan migrate" +alias refresh="php artisan migrate:refresh" +alias rollback="php artisan migrate:rollback" alias seed="php artisan:seed" alias phpunit="./vendor/bin/phpunit" From 3cc917c9de7dd7735e86025a5b731f4331f42da7 Mon Sep 17 00:00:00 2001 From: Geraint Dong Date: Mon, 25 Sep 2017 17:30:30 +0700 Subject: [PATCH 204/313] Add Postgre SQL Support for php-fpm & edit webserver session storage location --- php-fpm/Dockerfile-56 | 11 +++++++++++ php-fpm/Dockerfile-70 | 11 +++++++++++ php-fpm/Dockerfile-71 | 11 +++++++++++ php-fpm/php56.ini | 2 +- php-fpm/php70.ini | 2 +- php-fpm/php71.ini | 2 +- 6 files changed, 36 insertions(+), 3 deletions(-) diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index ed8cb892..057db070 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -50,6 +50,17 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \ docker-php-ext-install soap \ ;fi +##################################### +# pgsql +##################################### + +ARG INSTALL_PGSQL=false +RUN if [ ${INSTALL_PGSQL} = true ]; then \ + # Install the pgsql extension + apt-get update -yqq && \ + docker-php-ext-install pgsql \ +;fi + ##################################### # xDebug: ##################################### diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index daf214ab..7543524f 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -50,6 +50,17 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \ docker-php-ext-install soap \ ;fi +##################################### +# pgsql +##################################### + +ARG INSTALL_PGSQL=false +RUN if [ ${INSTALL_PGSQL} = true ]; then \ + # Install the pgsql extension + apt-get update -yqq && \ + docker-php-ext-install pgsql \ +;fi + ##################################### # xDebug: ##################################### diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 1210f292..a9da3955 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -50,6 +50,17 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \ docker-php-ext-install soap \ ;fi +##################################### +# pgsql +##################################### + +ARG INSTALL_PGSQL=false +RUN if [ ${INSTALL_PGSQL} = true ]; then \ + # Install the pgsql extension + apt-get update -yqq && \ + docker-php-ext-install pgsql \ +;fi + ##################################### # xDebug: ##################################### diff --git a/php-fpm/php56.ini b/php-fpm/php56.ini index a455b17e..c644bee6 100644 --- a/php-fpm/php56.ini +++ b/php-fpm/php56.ini @@ -1442,7 +1442,7 @@ session.save_handler = files ; where MODE is the octal representation of the mode. Note that this ; does not overwrite the process's umask. ; http://php.net/session.save-path -;session.save_path = "/tmp" +session.save_path = "/tmp" ; Whether to use strict session mode. ; Strict session mode does not accept uninitialized session ID and regenerate diff --git a/php-fpm/php70.ini b/php-fpm/php70.ini index c8242dc0..53e3a4f9 100644 --- a/php-fpm/php70.ini +++ b/php-fpm/php70.ini @@ -1348,7 +1348,7 @@ session.save_handler = files ; where MODE is the octal representation of the mode. Note that this ; does not overwrite the process's umask. ; http://php.net/session.save-path -;session.save_path = "/tmp" +session.save_path = "/tmp" ; Whether to use strict session mode. ; Strict session mode does not accept uninitialized session ID and regenerate diff --git a/php-fpm/php71.ini b/php-fpm/php71.ini index c8242dc0..53e3a4f9 100644 --- a/php-fpm/php71.ini +++ b/php-fpm/php71.ini @@ -1348,7 +1348,7 @@ session.save_handler = files ; where MODE is the octal representation of the mode. Note that this ; does not overwrite the process's umask. ; http://php.net/session.save-path -;session.save_path = "/tmp" +session.save_path = "/tmp" ; Whether to use strict session mode. ; Strict session mode does not accept uninitialized session ID and regenerate From 8f7b1b7e9feb79408d9d1d706c56aaf3cba435d8 Mon Sep 17 00:00:00 2001 From: Geraint Dong Date: Mon, 25 Sep 2017 18:31:16 +0700 Subject: [PATCH 205/313] Add Postgre SQL Support for php-fpm & edit webserver session storage location + Fix bug --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 1940b860..2aa41103 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -77,6 +77,7 @@ services: - INSTALL_EXIF=${PHP_FPM_INSTALL_EXIF} - INSTALL_AEROSPIKE=${PHP_FPM_INSTALL_AEROSPIKE} - INSTALL_MYSQLI=${PHP_FPM_INSTALL_MYSQLI} + - INSTALL_PGSQL=${PHP_FPM_INSTALL_PGSQL} - INSTALL_TOKENIZER=${PHP_FPM_INSTALL_TOKENIZER} - INSTALL_INTL=${PHP_FPM_INSTALL_INTL} - INSTALL_GHOSTSCRIPT=${PHP_FPM_INSTALL_GHOSTSCRIPT} From ca9c07eb7697419e558bc61e6d40f365ad564321 Mon Sep 17 00:00:00 2001 From: Geraint Dong Date: Mon, 25 Sep 2017 18:40:47 +0700 Subject: [PATCH 206/313] Add Postgre SQL Support for php-fpm & edit webserver session storage location + Add sample config --- env-example | 1 + 1 file changed, 1 insertion(+) diff --git a/env-example b/env-example index b026ae7c..f8609699 100644 --- a/env-example +++ b/env-example @@ -73,6 +73,7 @@ PHP_FPM_INSTALL_OPCACHE=false PHP_FPM_INSTALL_EXIF=false PHP_FPM_INSTALL_AEROSPIKE=false PHP_FPM_INSTALL_MYSQLI=false +PHP_FPM_INSTALL_PGSQL=false PHP_FPM_INSTALL_TOKENIZER=false PHP_FPM_INSTALL_INTL=false PHP_FPM_INSTALL_GHOSTSCRIPT=false From 61144ab2d9d8f2a3d57b740bea0dde9dbe9480cb Mon Sep 17 00:00:00 2001 From: luciano Date: Mon, 25 Sep 2017 18:30:00 +0100 Subject: [PATCH 207/313] Change the wrong link to aerospike client PHP --- php-fpm/Dockerfile-70 | 4 ++-- php-fpm/Dockerfile-71 | 4 ++-- workspace/Dockerfile-70 | 4 ++-- workspace/Dockerfile-71 | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index daf214ab..07b984ca 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -173,11 +173,11 @@ ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ - cd aerospike-client-php/src/aerospike \ + cd aerospike-client-php/src \ && phpize \ && ./build.sh \ && make install \ diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 1210f292..192defeb 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -179,11 +179,11 @@ RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ apt-get -y install sudo wget && \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ - cd aerospike-client-php/src/aerospike \ + cd aerospike-client-php/src \ && phpize \ && ./build.sh \ && make install \ diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 297d26df..543eaf93 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -323,11 +323,11 @@ COPY ./aerospike.ini /etc/php/7.0/cli/conf.d/aerospike.ini RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ - cd aerospike-client-php/src/aerospike \ + cd aerospike-client-php/src \ && phpize \ && ./build.sh \ && make install \ diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index a57bff60..42a3a23e 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -325,11 +325,11 @@ RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ apt-get -y install sudo wget && \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ - cd aerospike-client-php/src/aerospike \ + cd aerospike-client-php/src \ && phpize \ && ./build.sh \ && make install \ From e036e69da282b92893ef90d6e53229cb10a1a92d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrew=20Marcinkevi=C4=8Dius?= Date: Thu, 28 Sep 2017 16:59:21 +0300 Subject: [PATCH 208/313] Fix typo --- php-fpm/Dockerfile-71 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 192defeb..9d9756ae 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -61,7 +61,7 @@ RUN if [ ${INSTALL_XDEBUG} = true ]; then \ docker-php-ext-enable xdebug \ ;fi -# Copy xdebug configration for remote debugging +# Copy xdebug configuration for remote debugging COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini ##################################### From 3f7988060e5d42c98e206b634784817b05e7d292 Mon Sep 17 00:00:00 2001 From: "Ademir Mazer Jr [ Nuno ]" Date: Thu, 28 Sep 2017 17:16:05 -0300 Subject: [PATCH 209/313] Add pecl before mongo install --- workspace/Dockerfile-56 | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index a3885523..f70fc829 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -189,6 +189,7 @@ ARG INSTALL_MONGO=false ENV INSTALL_MONGO ${INSTALL_MONGO} RUN if [ ${INSTALL_MONGO} = true ]; then \ # Install the mongodb extension + pecl channel-update pecl.php.net && \ pecl install mongodb && \ echo "extension=mongodb.so" >> /etc/php/5.6/mods-available/mongodb.ini && \ ln -s /etc/php/5.6/mods-available/mongodb.ini /etc/php/5.6/cli/conf.d/30-mongodb.ini \ From 04770bc4ec152a688556023debda9dcc4f18cf42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Mathieu?= Date: Fri, 29 Sep 2017 14:56:28 +0200 Subject: [PATCH 210/313] Add PHP LDAP extension if needed --- docker-compose.yml | 1 + env-example | 1 + workspace/Dockerfile-70 | 13 +++++++++++++ workspace/Dockerfile-71 | 13 +++++++++++++ 4 files changed, 28 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 1940b860..f3f34e20 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,6 +18,7 @@ services: - INSTALL_XDEBUG=${WORKSPACE_INSTALL_XDEBUG} - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE} - INSTALL_SOAP=${WORKSPACE_INSTALL_SOAP} + - INSTALL_LDAP=${WORKSPACE_INSTALL_LDAP} - INSTALL_MONGO=${WORKSPACE_INSTALL_MONGO} - INSTALL_PHPREDIS=${WORKSPACE_INSTALL_PHPREDIS} - INSTALL_MSSQL=${WORKSPACE_INSTALL_MSSQL} diff --git a/env-example b/env-example index b026ae7c..2fd338bd 100644 --- a/env-example +++ b/env-example @@ -30,6 +30,7 @@ PHP_INTERPRETER=php-fpm ### WORKSPACE ########################################################################################################## WORKSPACE_INSTALL_XDEBUG=false +WORKSPACE_INSTALL_LDAP=false WORKSPACE_INSTALL_SOAP=false WORKSPACE_INSTALL_MONGO=false WORKSPACE_INSTALL_PHPREDIS=false diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 543eaf93..819d88d5 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -69,6 +69,19 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \ apt-get -y install libxml2-dev php7.0-soap \ ;fi +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +ENV INSTALL_LDAP ${INSTALL_LDAP} + +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + apt-get install -y php7.0-ldap \ +;fi + ##################################### # Set Timezone ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 42a3a23e..383689d6 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -69,6 +69,19 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \ apt-get -y install libxml2-dev php7.1-soap \ ;fi +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +ENV INSTALL_LDAP ${INSTALL_LDAP} + +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + apt-get install -y php7.1-ldap \ +;fi + ##################################### # Set Timezone ##################################### From 508e9ebd9e9082922675febdb40bf6e58496a4d9 Mon Sep 17 00:00:00 2001 From: Arkadius Jonczek Date: Sun, 1 Oct 2017 02:36:55 +0200 Subject: [PATCH 211/313] added grafana docker container --- docker-compose.yml | 19 +++++++++++++++++++ grafana/Dockerfile | 3 +++ 2 files changed, 22 insertions(+) create mode 100644 grafana/Dockerfile diff --git a/docker-compose.yml b/docker-compose.yml index f3f34e20..7de65b7d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -222,6 +222,25 @@ services: networks: - backend +### Grafana Container ######################################### + + grafana: + build: + context: ./grafana + volumes: + - ${DATA_SAVE_PATH}/grafana:/var/lib/grafana + ports: + - "3000:3000" + depends_on: + - mysql + networks: + - backend + + #grafana-storage: + # image: busybox:latest + # volumes: + # - ${DATA_SAVE_PATH}/grafana:/var/lib/grafana + ### Percona Container ######################################### percona: diff --git a/grafana/Dockerfile b/grafana/Dockerfile new file mode 100644 index 00000000..8aa70a23 --- /dev/null +++ b/grafana/Dockerfile @@ -0,0 +1,3 @@ +FROM grafana/grafana:latest + +EXPOSE 3000 \ No newline at end of file From 881cbfb8c255a0b5753756dcd96cebb69f22a5f4 Mon Sep 17 00:00:00 2001 From: Taufek Johar Date: Thu, 28 Sep 2017 17:59:16 +0800 Subject: [PATCH 212/313] Install Dependencies to Run Dusk Tests **Why we need this change?** Currently we are unable to run Dusk (Browser) tests in workspace container. This change, is to allow us to install all dependencies needed to run Dust test which consists of 1. Linux packages such as xvfb (x-virtual frame buffer to run browser in headless container) and etc. 2. Chrome browser. 3. Chrome driver. To install the Dusk dependencies. 1. Update `WORKSPACE_INSTALL_DUSK_DEPS` to true. 2. Run `docker-compose build workspace`. I've also added couple of aliases to facilitate the preparation of test environment. 1. xvfb = `Xvfb -ac :0 -screen 0 1024x768x16 &` (run x-virtual frame buffer in the background) 2. serve = `php artisan serve --quiet &` (run laravel app in the background) Once those are installed, we will need to update the default chrome driver argument in Laravel 5.5 from `--headless` to `sandbox`. Below are the steps to run Dusk in workspace. 1. `docker-compose run workspace bash` (get into workspace). 2. `laravel new dusk-test` (generate new lavarel app for testing purpose). 3. `cd dusk-test` (change directory to newly generate app folder). 4. `composer install --dev laravel/dusk` (install dusk via composer). 5. `php artisan dusk:install` (generate dusk files). 6. `sed -i '/APP_URL/d' .env` (remove APP_URL entry in .env) 7. `echo 'APP_URL=localhost:8000' >> .env` (add new APP_URL entry in .env) 8. `sed -i--'s/headless/no-sandbox/g' tests/DuskTestCase.php` (replace the default chrome driver argument). 9. `xvfb` (alias to run Xvfb instance in the background). 10. `serve` (alias to run laravel app in the background). 11. `dusk` (alias to run Dusk test). --- docker-compose.yml | 1 + env-example | 1 + workspace/Dockerfile-56 | 29 +++++++++++++++++++++++++++++ workspace/Dockerfile-70 | 29 +++++++++++++++++++++++++++++ workspace/Dockerfile-71 | 29 +++++++++++++++++++++++++++++ workspace/aliases.sh | 4 ++++ 6 files changed, 93 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index f3f34e20..75c848f0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -40,6 +40,7 @@ services: - INSTALL_IMAGE_OPTIMIZERS=${WORKSPACE_INSTALL_IMAGE_OPTIMIZERS} - INSTALL_IMAGEMAGICK=${WORKSPACE_INSTALL_IMAGEMAGICK} - INSTALL_TERRAFORM=${WORKSPACE_INSTALL_TERRAFORM} + - INSTALL_DUSK_DEPS=${WORKSPACE_INSTALL_DUSK_DEPS} - PUID=${WORKSPACE_PUID} - PGID=${WORKSPACE_PGID} - NODE_VERSION=${WORKSPACE_NODE_VERSION} diff --git a/env-example b/env-example index 2fd338bd..33c773e2 100644 --- a/env-example +++ b/env-example @@ -53,6 +53,7 @@ WORKSPACE_INSTALL_PYTHON=false WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false WORKSPACE_INSTALL_IMAGEMAGICK=false WORKSPACE_INSTALL_TERRAFORM=false +WORKSPACE_INSTALL_DUSK_DEPS=false WORKSPACE_PUID=1000 WORKSPACE_PGID=1000 WORKSPACE_NODE_VERSION=stable diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index f70fc829..9ccb62c7 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -525,6 +525,35 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ && rm terraform_0.10.6_linux_amd64.zip \ ;fi +##################################### +# Dusk Dependencies: +##################################### +USER root +ARG INSTALL_DUSK_DEPS=false +ENV INSTALL_DUSK_DEPS ${INSTALL_DUSK_DEPS} +RUN if [ ${INSTALL_DUSK_DEPS} = true ]; then \ + # Install required packages + add-apt-repository ppa:ondrej/php \ + && apt-get update \ + && apt-get -y install zip wget unzip xdg-utils \ + libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4 xvfb \ + gtk2-engines-pixbuf xfonts-cyrillic xfonts-100dpi xfonts-75dpi \ + xfonts-base xfonts-scalable x11-apps \ + + # Install Google Chrome + && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && apt-get -y -f install \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && rm google-chrome-stable_current_amd64.deb \ + + # Install Chrome Driver + && wget https://chromedriver.storage.googleapis.com/2.31/chromedriver_linux64.zip \ + && unzip chromedriver_linux64.zip \ + && mv chromedriver /usr/local/bin/ \ + && rm chromedriver_linux64.zip \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 819d88d5..0daa29fa 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -618,6 +618,35 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ && rm terraform_0.10.6_linux_amd64.zip \ ;fi +##################################### +# Dusk Dependencies: +##################################### +USER root +ARG INSTALL_DUSK_DEPS=false +ENV INSTALL_DUSK_DEPS ${INSTALL_DUSK_DEPS} +RUN if [ ${INSTALL_DUSK_DEPS} = true ]; then \ + # Install required packages + add-apt-repository ppa:ondrej/php \ + && apt-get update \ + && apt-get -y install zip wget unzip xdg-utils \ + libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4 xvfb \ + gtk2-engines-pixbuf xfonts-cyrillic xfonts-100dpi xfonts-75dpi \ + xfonts-base xfonts-scalable x11-apps \ + + # Install Google Chrome + && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && apt-get -y -f install \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && rm google-chrome-stable_current_amd64.deb \ + + # Install Chrome Driver + && wget https://chromedriver.storage.googleapis.com/2.31/chromedriver_linux64.zip \ + && unzip chromedriver_linux64.zip \ + && mv chromedriver /usr/local/bin/ \ + && rm chromedriver_linux64.zip \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 383689d6..533b72f7 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -624,6 +624,35 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ && rm terraform_0.10.6_linux_amd64.zip \ ;fi +##################################### +# Dusk Dependencies: +##################################### +USER root +ARG INSTALL_DUSK_DEPS=false +ENV INSTALL_DUSK_DEPS ${INSTALL_DUSK_DEPS} +RUN if [ ${INSTALL_DUSK_DEPS} = true ]; then \ + # Install required packages + add-apt-repository ppa:ondrej/php \ + && apt-get update \ + && apt-get -y install zip wget unzip xdg-utils \ + libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4 xvfb \ + gtk2-engines-pixbuf xfonts-cyrillic xfonts-100dpi xfonts-75dpi \ + xfonts-base xfonts-scalable x11-apps \ + + # Install Google Chrome + && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && apt-get -y -f install \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && rm google-chrome-stable_current_amd64.deb \ + + # Install Chrome Driver + && wget https://chromedriver.storage.googleapis.com/2.31/chromedriver_linux64.zip \ + && unzip chromedriver_linux64.zip \ + && mv chromedriver /usr/local/bin/ \ + && rm chromedriver_linux64.zip \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/aliases.sh b/workspace/aliases.sh index 3e9bbb6f..29fc22de 100644 --- a/workspace/aliases.sh +++ b/workspace/aliases.sh @@ -69,6 +69,7 @@ alias migrate="php artisan migrate" alias refresh="php artisan migrate:refresh" alias rollback="php artisan migrate:rollback" alias seed="php artisan:seed" +alias serve="php artisan serve --quiet &" alias phpunit="./vendor/bin/phpunit" alias pu="phpunit" @@ -88,6 +89,9 @@ alias reload="source ~/.aliases && echo \"$COL_GREEN ==> Aliases Reloaded... $CO alias run="npm run" alias tree="xtree" +# Xvfb +alias xvfb="Xvfb -ac :0 -screen 0 1024x768x16 &" + # requires installation of 'https://www.npmjs.com/package/npms-cli' alias npms="npms search" # requires installation of 'https://www.npmjs.com/package/package-menu-cli' From eeee14338fccfad363e3fa9d8dc55e15de8507a9 Mon Sep 17 00:00:00 2001 From: Taufek Johar Date: Fri, 6 Oct 2017 22:46:54 +0800 Subject: [PATCH 213/313] Move Chrome Driver Version to Env This will allow us to upgrade chrome driver easily. Set the default chrome driver to 2.32. Also remove the comment and empty line to avoid getting below warning: ``` [WARNING]: Empty continuation lines will become errors in a future release. ``` --- docker-compose.yml | 1 + env-example | 1 + workspace/Dockerfile-71 | 9 +++------ 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 75c848f0..e0fee7de 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -43,6 +43,7 @@ services: - INSTALL_DUSK_DEPS=${WORKSPACE_INSTALL_DUSK_DEPS} - PUID=${WORKSPACE_PUID} - PGID=${WORKSPACE_PGID} + - CHROME_DRIVER_VERSION=${WORKSPACE_CHROME_DRIVER_VERSION} - NODE_VERSION=${WORKSPACE_NODE_VERSION} - YARN_VERSION=${WORKSPACE_YARN_VERSION} - TZ=${WORKSPACE_TIMEZONE} diff --git a/env-example b/env-example index 33c773e2..0fe6ddb8 100644 --- a/env-example +++ b/env-example @@ -56,6 +56,7 @@ WORKSPACE_INSTALL_TERRAFORM=false WORKSPACE_INSTALL_DUSK_DEPS=false WORKSPACE_PUID=1000 WORKSPACE_PGID=1000 +WORKSPACE_CHROME_DRIVER_VERSION=2.32 WORKSPACE_NODE_VERSION=stable WORKSPACE_YARN_VERSION=latest WORKSPACE_TIMEZONE=UTC diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 533b72f7..ac47e4e6 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -628,26 +628,23 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ # Dusk Dependencies: ##################################### USER root +ARG CHROME_DRIVER_VERSION=stable +ENV CHROME_DRIVER_VERSION ${CHROME_DRIVER_VERSION} ARG INSTALL_DUSK_DEPS=false ENV INSTALL_DUSK_DEPS ${INSTALL_DUSK_DEPS} RUN if [ ${INSTALL_DUSK_DEPS} = true ]; then \ - # Install required packages add-apt-repository ppa:ondrej/php \ && apt-get update \ && apt-get -y install zip wget unzip xdg-utils \ libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4 xvfb \ gtk2-engines-pixbuf xfonts-cyrillic xfonts-100dpi xfonts-75dpi \ xfonts-base xfonts-scalable x11-apps \ - - # Install Google Chrome && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ && apt-get -y -f install \ && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ && rm google-chrome-stable_current_amd64.deb \ - - # Install Chrome Driver - && wget https://chromedriver.storage.googleapis.com/2.31/chromedriver_linux64.zip \ + && wget https://chromedriver.storage.googleapis.com/${CHROME_DRIVER_VERSION}/chromedriver_linux64.zip \ && unzip chromedriver_linux64.zip \ && mv chromedriver /usr/local/bin/ \ && rm chromedriver_linux64.zip \ From 98b2b2e47b79ee593c6d599fbf29fa02c76f0b19 Mon Sep 17 00:00:00 2001 From: Taufek Johar Date: Fri, 6 Oct 2017 16:13:33 +0800 Subject: [PATCH 214/313] Update Dusk Documentation Added new option on how to setup and run Dusk tests without Selenium. --- DOCUMENTATION/content/guides/index.md | 195 +++++++++++++++++++++++++- 1 file changed, 188 insertions(+), 7 deletions(-) diff --git a/DOCUMENTATION/content/guides/index.md b/DOCUMENTATION/content/guides/index.md index d166604c..ab744750 100644 --- a/DOCUMENTATION/content/guides/index.md +++ b/DOCUMENTATION/content/guides/index.md @@ -565,6 +565,187 @@ Assuming that you are in laradock folder, type: # Running Laravel Dusk Tests +- [Option 1: Without Selenium](#option1-dusk) +- [Option 2: With Selenium](#option2-dusk) + + +## Option 1: Without Selenium + +- [Intro](#option1-dusk-intro) +- [Workspace Setup](#option1-workspace-setup) +- [Application Setup](#option1-application-setup) +- [Choose Chrome Driver Version (Optional)](#option1-choose-chrome-driver-version) +- [Run Dusk Tests](#option1-run-dusk-tests) + + +### Intro + +This is a guide to run Dusk tests in your `workspace` container with headless +google-chrome and chromedriver. It has been tested with Laravel 5.4 and 5.5. + + +### Workspace Setup + +Update your .env with following entries: + +``` +... +# Install Laravel installer bin to setup demo app +WORKSPACE_INSTALL_LARAVEL_INSTALLER=true +... +# Install all the necessary dependencies for running Dusk tests +WORKSPACE_INSTALL_DUSK_DEPS=true +... +``` + +Then run below to build your workspace. + +``` +docker-compose build workspace +``` + + +### Application Setup + +Run a `workspace` container and you will be inside the container at `/var/www` directory. + +``` +docker-compose run workspace bash + +/var/www#> _ +``` + +Create new Laravel application named `dusk-test` and install Laravel Dusk package. + +``` +/var/www> laravel new dusk-test +/var/www> cd dusk-test +/var/www/dusk-test> composer require --dev laravel/dusk +/var/www/dusk-test> php artisan dusk:install +``` + +Create `.env.dusk.local` by copying from `.env` file. + +``` +/var/www/dusk-test> cp .env .env.dusk.local +``` + +Update the `APP_URL` entry in `.env.dusk.local` to local Laravel server. + +``` +APP_URL=http://localhost:8000 +``` + +You will need to run chromedriver with `headless` and `no-sandbox` flag. In Laravel Dusk 2.x it is +already set `headless` so you just need to add `no-sandbox` flag. If you on previous version 1.x, +you will need to update your `DustTestCase#driver` as shown below. + + +``` +addArguments([ + '--disable-gpu', + '--headless', + '--no-sandbox' + ]); + + return RemoteWebDriver::create( + 'http://localhost:9515', DesiredCapabilities::chrome()->setCapability( + ChromeOptions::CAPABILITY, $options + ) + ); + } +} +``` + + +### Choose Chrome Driver Version (Optional) + +You could choose to use either: + +1. Chrome Driver shipped with Laravel Dusk. (Default) +2. Chrome Driver installed in `workspace` container. (Required tweak on DuskTestCase class) + +For Laravel 2.x, you need to update `DuskTestCase#prepare` method if you wish to go with option #2. + +``` + +setPrefix('chromedriver') + ->getProcess() + ->setEnv(static::chromeEnvironment()); + } + + ... +} +``` + + +### Run Dusk Tests + +Run local server in `workspace` container and run Dusk tests. + +``` +# alias to run Laravel server in the background (php artisan serve --quiet &) +/var/www/dusk-test> serve +# alias to run Dusk tests (php artisan dusk) +/var/www/dusk-test> dusk + +PHPUnit 6.4.0 by Sebastian Bergmann and contributors. + +. 1 / 1 (100%) + +Time: 837 ms, Memory: 6.00MB +``` + + +## Option 2: With Selenium + - [Intro](#dusk-intro) - [DNS Setup](#dns-setup) - [Docker Compose Setup](#docker-compose) @@ -572,7 +753,7 @@ Assuming that you are in laradock folder, type: - [Running Laravel Dusk Tests](#running-tests) -## Intro +### Intro Setting up Laravel Dusk tests to run with Laradock appears be something that eludes most Laradock users. This guide is designed to show you how to wire them up to work together. This guide is written with macOS and Linux in mind. As such, @@ -583,7 +764,7 @@ This guide assumes you know how to use a DNS forwarder such as `dnsmasq` or are with editing the `/etc/hosts` file for one-off DNS changes. -## DNS Setup +### DNS Setup According to RFC-2606, only four TLDs are reserved for local testing[^1]: - `.test` @@ -617,7 +798,7 @@ This will ensure that when navigating to `myapp.test`, it will route the request to `127.0.0.1` which will be handled by Nginx in Laradock. -## Docker Compose setup +### Docker Compose setup In order to make the Selenium container talk to the Nginx container appropriately, the `docker-compose.yml` needs to be edited to accommodate this. Make the following changes: @@ -640,7 +821,7 @@ necessary for running Dusk tests. These changes also link the `nginx` environmen variable to the domain you wired up in your hosts file. -## Laravel Dusk Setup +### Laravel Dusk Setup In order to make Laravel Dusk make the proper request to the Selenium container, you have to edit the `DuskTestCase.php` file that's provided on the initial @@ -650,13 +831,13 @@ Remote Web Driver attempts to use to set up the Selenium session. One recommendation for this is to add a separate config option in your `.env.dusk.local` so it's still possible to run your Dusk tests locally should you want to. -### .env.dusk.local +#### .env.dusk.local ``` ... USE_SELENIUM=true ``` -### DuskTestCase.php +#### DuskTestCase.php ```php abstract class DuskTestCase extends BaseTestCase { @@ -677,7 +858,7 @@ abstract class DuskTestCase extends BaseTestCase ``` -## Running Laravel Dusk Tests +### Running Laravel Dusk Tests Now that you have everything set up, to run your Dusk tests, you have to SSH into the workspace container as you normally would: From 525c4313a02e7263ef22bd121fa8a0d7a6186dce Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Wed, 11 Oct 2017 19:48:07 +0800 Subject: [PATCH 215/313] use caddy in Apache-2.0 see: https://caddyserver.com/products/licenses so, I use caddypulg, it is free --- caddy/Dockerfile | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/caddy/Dockerfile b/caddy/Dockerfile index d88fe390..8d8ade00 100644 --- a/caddy/Dockerfile +++ b/caddy/Dockerfile @@ -1,22 +1,17 @@ -FROM alpine:3.5 +FROM golang -MAINTAINER Eric Pfeiffer +ARG version="0.10.9" -ENV caddy_version=0.10.5 -ARG plugins=http.git +ARG plugins="git" -LABEL caddy_version="$caddy_version" architecture="amd64" +## If you come frome china, please ues it. -RUN apk update \ - && apk upgrade \ - && apk add --no-cache openssh-client git tar curl +# RUN echo "172.217.6.127 golang.org" >> /etc/hosts -RUN curl --silent --show-error --fail --location \ - --header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \ - "https://caddyserver.com/download/linux/amd64?plugins=${plugins}" \ - | tar --no-same-owner -C /usr/bin/ -xz caddy \ - && mv /usr/bin/caddy /usr/bin/caddy \ - && chmod 0755 /usr/bin/caddy +RUN go get github.com/abiosoft/caddyplug/caddyplug \ + && caddyplug install-caddy \ + && caddyplug install git +RUN caddy --version EXPOSE 80 443 2015 From 2bedfdd9d7cbb0510e13de71b1fb662ee98b12f9 Mon Sep 17 00:00:00 2001 From: Khoa Nguyen Date: Wed, 11 Oct 2017 18:08:24 -0700 Subject: [PATCH 216/313] fix typos in contributing --- DOCUMENTATION/content/contributing/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DOCUMENTATION/content/contributing/index.md b/DOCUMENTATION/content/contributing/index.md index 042a19a5..3c716558 100644 --- a/DOCUMENTATION/content/contributing/index.md +++ b/DOCUMENTATION/content/contributing/index.md @@ -14,7 +14,7 @@ If you have questions about how to use Laradock, please direct your questions to ## Found an Issue If have an issue or you found a typo in the documentation, you can help us by -opnening an [Issue](https://github.com/laradock/laradock/issues). +opening an [Issue](https://github.com/laradock/laradock/issues). **Steps to do before opening an Issue:** @@ -24,7 +24,7 @@ opnening an [Issue](https://github.com/laradock/laradock/issues). If your issue appears to be a bug, and hasn't been reported, then open a new issue. -*This Help us to maximize the effort we can spend fixing issues and adding new +*This helps us maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues.* @@ -61,7 +61,7 @@ To update the sidebar or add a new section to it, you can edit this `DOCUMENTATI ## Support new Software (Add new Container) -* Forke the repo and clone the code. +* Fork the repo and clone the code. * Create folder as the software name (example: `mysql` - `nginx`). @@ -81,7 +81,7 @@ To update the sidebar or add a new section to it, you can edit this `DOCUMENTATI ## Edit supported Software (Edit a Container) -* Forke the repo and clone the code. +* Fork the repo and clone the code. * Open the software (container) folder (example: `mysql` - `nginx`). From f15bc8e6b723c36403e9b45a3a53419f4291e8be Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Thu, 12 Oct 2017 18:37:26 +0800 Subject: [PATCH 217/313] update jenkins version update jenkins version to 2.73.2 update docker-compose version to 1.16.1 update TINI version to 0.16.1 --- jenkins/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jenkins/Dockerfile b/jenkins/Dockerfile index 63480c7c..cfcba23f 100644 --- a/jenkins/Dockerfile +++ b/jenkins/Dockerfile @@ -25,8 +25,8 @@ VOLUME /var/jenkins_home # or config file with your custom jenkins Docker image. RUN mkdir -p /usr/share/jenkins/ref/init.groovy.d -ENV TINI_VERSION 0.13.2 -ENV TINI_SHA afbf8de8a63ce8e4f18cb3f34dfdbbd354af68a1 +ENV TINI_VERSION 0.16.1 +ENV TINI_SHA d1cb5d71adc01d47e302ea439d70c79bd0864288 # Use tini as subreaper in Docker container to adopt zombie processes RUN curl -fsSL https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini-static-amd64 -o /bin/tini && chmod +x /bin/tini \ @@ -36,10 +36,10 @@ COPY init.groovy /usr/share/jenkins/ref/init.groovy.d/tcp-slave-agent-port.groov # jenkins version being bundled in this docker image ARG JENKINS_VERSION -ENV JENKINS_VERSION ${JENKINS_VERSION:-2.32.3} +ENV JENKINS_VERSION ${JENKINS_VERSION:-2.73.2} # jenkins.war checksum, download will be validated using it -ARG JENKINS_SHA=a25b9a314ca9e76f9673da7309e1882e32674223 +ARG JENKINS_SHA=f6d1351beef34d980b32f8c463be505445f637e2fc62156fecd42891c53c97d3 # Can be used to customize where jenkins.war get downloaded from ARG JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/${JENKINS_VERSION}/jenkins-war-${JENKINS_VERSION}.war @@ -47,7 +47,7 @@ ARG JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-w # could use ADD but this one does not check Last-Modified header neither does it allow to control checksum # see https://github.com/docker/docker/issues/8331 RUN curl -fsSL ${JENKINS_URL} -o /usr/share/jenkins/jenkins.war \ - && echo "${JENKINS_SHA} /usr/share/jenkins/jenkins.war" | sha1sum -c - + && echo "${JENKINS_SHA} /usr/share/jenkins/jenkins.war" | sha256sum -c - ENV JENKINS_UC https://updates.jenkins.io RUN chown -R ${user} "$JENKINS_HOME" /usr/share/jenkins/ref @@ -71,7 +71,7 @@ RUN apt-get install -y curl && curl -sSL https://get.docker.com/ | sh RUN usermod -aG docker jenkins # Install Docker-Compose -RUN curl -L "https://github.com/docker/compose/releases/download/1.10.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose +RUN curl -L "https://github.com/docker/compose/releases/download/1.16.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose RUN chmod +x /usr/local/bin/docker-compose From 1702a5cc09b06a74cf87a4924b0959cb631ea2e5 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Thu, 12 Oct 2017 18:40:12 +0800 Subject: [PATCH 218/313] rm version --- caddy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/Dockerfile b/caddy/Dockerfile index 8d8ade00..aca00cdb 100644 --- a/caddy/Dockerfile +++ b/caddy/Dockerfile @@ -1,6 +1,6 @@ FROM golang -ARG version="0.10.9" +MAINTAINER Huadong Zuo ARG plugins="git" From dff0e82ddb0d769a37489735d66593c2cfaaf08c Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Thu, 12 Oct 2017 18:42:11 +0800 Subject: [PATCH 219/313] alpine be quckly alpine be quckly --- postgres/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres/Dockerfile b/postgres/Dockerfile index 56a4ddb8..423c5d6b 100644 --- a/postgres/Dockerfile +++ b/postgres/Dockerfile @@ -1,7 +1,7 @@ -FROM postgres:latest +FROM postgres:alpine MAINTAINER Ben M CMD ["postgres"] -EXPOSE 5432 \ No newline at end of file +EXPOSE 5432 From 17ea7b313f2550a914d584b149c28e30dc2eef98 Mon Sep 17 00:00:00 2001 From: Zuohuadong Date: Thu, 12 Oct 2017 18:54:09 +0800 Subject: [PATCH 220/313] update --- .github/CODE_OF_CONDUCT.md | 46 + .github/CONTRIBUTING.md | 3 + .github/ISSUE_TEMPLATE.md | 23 + .github/PULL_REQUEST_TEMPLATE.md | 7 + README-zh.md => .github/README-zh.md | 13 +- .github/README.md | 49 + .gitignore | 3 +- .travis.yml | 47 +- DOCUMENTATION/config.toml | 1 + DOCUMENTATION/content/contributing/index.md | 83 +- DOCUMENTATION/content/documentation/index.md | 220 +- .../content/getting-started/index.md | 40 +- DOCUMENTATION/content/guides/index.md | 429 ++- DOCUMENTATION/content/index.md | 5 - DOCUMENTATION/content/introduction/index.md | 24 +- .../configuration/debugConfiguration.png | Bin 0 -> 87122 bytes .../configuration/serverConfiguration.png | Bin 0 -> 65876 bytes README.md | 29 - adminer/Dockerfile | 22 +- apache2/Dockerfile | 10 +- apache2/sites/default.apache.conf | 4 +- aws/.gitignore | 1 + aws/Dockerfile | 17 + caddy/Caddyfile | 52 +- caddy/Dockerfile | 9 +- docker-compose.sync.yml | 17 + docker-compose.yml | 131 +- docker-sync.yml | 13 + docs/CNAME | 1 - docs/contributing/index.html | 670 ---- docs/contributing/index.xml | 196 -- docs/documentation/index.html | 1725 ---------- docs/documentation/index.xml | 1251 ------- docs/fonts/icon.eot | Bin 2224 -> 0 bytes docs/fonts/icon.svg | 22 - docs/fonts/icon.ttf | Bin 2072 -> 0 bytes docs/fonts/icon.woff | Bin 2148 -> 0 bytes docs/getting-started/index.html | 695 ---- docs/getting-started/index.xml | 221 -- docs/help/index.html | 498 --- docs/help/index.xml | 24 - docs/images/favicon.ico | Bin 1150 -> 0 bytes docs/images/logo.png | Bin 145650 -> 0 bytes docs/index.html | 2938 ----------------- docs/index.xml | 2517 -------------- docs/introduction/index.html | 616 ---- docs/introduction/index.xml | 158 - docs/javascripts/application.js | 1 - docs/javascripts/modernizr.js | 1 - docs/license/index.html | 496 --- docs/license/index.xml | 22 - docs/related-projects/index.html | 509 --- docs/related-projects/index.xml | 35 - docs/sitemap.xml | 85 - docs/stylesheets/application.css | 1 - docs/stylesheets/highlight/highlight.css | 116 - docs/stylesheets/palettes.css | 1 - docs/stylesheets/temporary.css | 11 - elasticsearch/Dockerfile | 4 +- env-example | 149 +- jenkins/install-plugins.sh | 0 jenkins/jenkins-support | 0 jenkins/jenkins.sh | 0 jenkins/plugins.sh | 0 jenkins/publish.sh | 0 jenkins/update-official-library.sh | 0 kibana/Dockerfile | 3 + laravel-echo-server/Dockerfile | 15 + laravel-echo-server/laravel-echo-server.json | 19 + laravel-echo-server/package.json | 12 + mariadb/docker-entrypoint-initdb.d/.gitignore | 1 + .../createdb.sql.example | 28 + mssql/create_table.sh | 2 +- mssql/entrypoint.sh | 2 +- mysql/Dockerfile | 11 +- mysql/docker-entrypoint-initdb.d/.gitignore | 1 + .../createdb.sql.example | 28 + mysql/my.cnf | 1 + nginx/Dockerfile | 14 +- nginx/nginx.conf | 2 +- ...roject-2.conf.example => app.conf.example} | 14 +- nginx/sites/default.conf | 9 +- ...ct-1.conf.example => laravel.conf.example} | 14 +- nginx/sites/symfony.conf.example | 28 + percona/docker-entrypoint-initdb.d/.gitignore | 1 + .../createdb.sql.example | 28 + pgadmin/Dockerfile | 7 +- pgadmin/pg/pg_dump | 281 -- pgadmin/pg/pg_restore | 281 -- php-fpm/Dockerfile-56 | 75 +- php-fpm/Dockerfile-70 | 178 +- php-fpm/Dockerfile-71 | 108 +- php-fpm/aerospike.ini | 1 + php-fpm/laravel.ini | 3 - .../{laravel.pool.conf => xlaravel.pool.conf} | 0 php-worker/{Dockerfile => Dockerfile-70} | 30 +- php-worker/Dockerfile-71 | 59 + redis/Dockerfile | 3 + sync.sh | 89 + travis-build.sh | 18 +- workspace/Dockerfile-56 | 232 +- workspace/Dockerfile-70 | 280 +- workspace/Dockerfile-71 | 419 ++- workspace/aliases.sh | 103 +- 104 files changed, 2759 insertions(+), 13902 deletions(-) create mode 100644 .github/CODE_OF_CONDUCT.md create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md rename README-zh.md => .github/README-zh.md (98%) create mode 100644 .github/README.md delete mode 100644 DOCUMENTATION/content/index.md create mode 100644 DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/linux/configuration/debugConfiguration.png create mode 100644 DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/linux/configuration/serverConfiguration.png delete mode 100644 README.md create mode 100644 aws/.gitignore create mode 100644 aws/Dockerfile create mode 100644 docker-compose.sync.yml create mode 100644 docker-sync.yml delete mode 100644 docs/CNAME delete mode 100644 docs/contributing/index.html delete mode 100644 docs/contributing/index.xml delete mode 100644 docs/documentation/index.html delete mode 100644 docs/documentation/index.xml delete mode 100755 docs/fonts/icon.eot delete mode 100755 docs/fonts/icon.svg delete mode 100755 docs/fonts/icon.ttf delete mode 100755 docs/fonts/icon.woff delete mode 100644 docs/getting-started/index.html delete mode 100644 docs/getting-started/index.xml delete mode 100644 docs/help/index.html delete mode 100644 docs/help/index.xml delete mode 100644 docs/images/favicon.ico delete mode 100644 docs/images/logo.png delete mode 100644 docs/index.html delete mode 100644 docs/index.xml delete mode 100644 docs/introduction/index.html delete mode 100644 docs/introduction/index.xml delete mode 100644 docs/javascripts/application.js delete mode 100644 docs/javascripts/modernizr.js delete mode 100644 docs/license/index.html delete mode 100644 docs/license/index.xml delete mode 100644 docs/related-projects/index.html delete mode 100644 docs/related-projects/index.xml delete mode 100644 docs/sitemap.xml delete mode 100644 docs/stylesheets/application.css delete mode 100644 docs/stylesheets/highlight/highlight.css delete mode 100644 docs/stylesheets/palettes.css delete mode 100644 docs/stylesheets/temporary.css mode change 100644 => 100755 jenkins/install-plugins.sh mode change 100644 => 100755 jenkins/jenkins-support mode change 100644 => 100755 jenkins/jenkins.sh mode change 100644 => 100755 jenkins/plugins.sh mode change 100644 => 100755 jenkins/publish.sh mode change 100644 => 100755 jenkins/update-official-library.sh create mode 100644 kibana/Dockerfile create mode 100644 laravel-echo-server/Dockerfile create mode 100644 laravel-echo-server/laravel-echo-server.json create mode 100644 laravel-echo-server/package.json create mode 100644 mariadb/docker-entrypoint-initdb.d/.gitignore create mode 100644 mariadb/docker-entrypoint-initdb.d/createdb.sql.example create mode 100644 mysql/docker-entrypoint-initdb.d/.gitignore create mode 100644 mysql/docker-entrypoint-initdb.d/createdb.sql.example rename nginx/sites/{project-2.conf.example => app.conf.example} (78%) rename nginx/sites/{project-1.conf.example => laravel.conf.example} (75%) create mode 100644 nginx/sites/symfony.conf.example create mode 100644 percona/docker-entrypoint-initdb.d/.gitignore create mode 100644 percona/docker-entrypoint-initdb.d/createdb.sql.example delete mode 100644 pgadmin/pg/pg_dump delete mode 100644 pgadmin/pg/pg_restore rename php-fpm/{laravel.pool.conf => xlaravel.pool.conf} (100%) rename php-worker/{Dockerfile => Dockerfile-70} (65%) create mode 100644 php-worker/Dockerfile-71 create mode 100755 sync.sh diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..8359c58e --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,46 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at mahmoud@zalt.me. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 00000000..7d5865b0 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,3 @@ +### First off, thanks for taking the time to contribute! + +For the contribution guide [click here](http://laradock.io/contributing/). diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..eff16ef7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,23 @@ +### Info: +- Docker version (`$ docker --version`): +- Laradock commit (`$ git rev-parse HEAD`): +- System info (Mac, PC, Linux): +- System info disto/version: + +### Issue: + +_____ + +### Expected behavior: + +_____ + +### Reproduce: + +_____ + +### Relevant Code: + +``` +// place a code sample here +``` diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..9160f018 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,7 @@ + + +##### I completed the 3 steps below: + +- [] I've read the [Contribution Guide](http://laradock.io/contributing). +- [] I've updated the **documentation**. (refer to [this](http://laradock.io/contributing/#update-the-documentation-site) for how to do so). +- [] I enjoyed my time contributing and making developer's life easier :) diff --git a/README-zh.md b/.github/README-zh.md similarity index 98% rename from README-zh.md rename to .github/README-zh.md index 9614e2e9..aa2a0d07 100644 --- a/README-zh.md +++ b/.github/README-zh.md @@ -64,20 +64,23 @@ Laradock 努力简化创建开发环境过程。 让我们了解使用它安装 `NGINX`, `PHP`, `Composer`, `MySQL` 和 `Redis`,然后运行 `Laravel` 1. 将 Laradock 放到你的 Laravel 项目中: - ```bash git clone https://github.com/laradock/laradock.git ``` -2. 进入 Laradock 目录,然后运行这些容器。 +2. 进入 Laradock 目录 + ```bash +cp env-example .env +``` +3. 运行这些容器。 ```bash docker-compose up -d nginx mysql redis ``` -3. 打开你的 `.env` 文件,然后设置 `mysql` 的 `DB_HOST` 和 `redis` 的`REDIS_HOST`。 +4. 打开你的Laravel 项目的 `.env` 文件,然后设置 `mysql` 的 `DB_HOST` 和 `redis` 的`REDIS_HOST`。 -4. 打开浏览器,访问 localhost: +5. 打开浏览器,访问 localhost: ### 特点 @@ -461,7 +464,7 @@ REDIS_HOST=redis ], ``` -3 - 启用 Redis 缓存或者开启 Session 管理也在 `.env` 文件中用 `redis` 替换默认 `file` 设置 `CACHE_DRIVER` 和 `SESSION_DRIVER` +3 - 启用 Redis 缓存或者开启 Session 管理也在 `.env` 文件中用 `redis` 替换默认 `file` 设置 `CACHE_DRIVER` 和 `SESSION_DRIVER` ```env CACHE_DRIVER=redis diff --git a/.github/README.md b/.github/README.md new file mode 100644 index 00000000..7bc43ac1 --- /dev/null +++ b/.github/README.md @@ -0,0 +1,49 @@ +

+ Laradock Logo +

+ +

A Docker PHP development environment that facilitates running PHP Apps on Docker

+ +

+ Build status + GitHub stars + GitHub forks + GitHub issues + GitHub license + contributions welcome +

+ +

Use Docker First And Learn About It Later

+ +

+ forthebadge +

+ + +--- + +

+ + Laradock Docs + +

+ + +## Credits + +- [Mahmoud Zalt](https://github.com/Mahmoudz) @mahmoudz | [Twitter](https://twitter.com/Mahmoud_Zalt) | [Site](http://zalt.me) +- [Bo-Yi Wu](https://github.com/appleboy) @appleboy | [Twitter](https://twitter.com/appleboy) +- [Philippe Trépanier](https://github.com/philtrep) @philtrep +- [Mike Erickson](https://github.com/mikeerickson) @mikeerickson +- [Dwi Fahni Denni](https://github.com/zeroc0d3) @zeroc0d3 +- [Thor Erik](https://github.com/thorerik) @thorerik +- [Winfried van Loon](https://github.com/winfried-van-loon) @winfried-van-loon +- [TJ Miller](https://github.com/sixlive) @sixlive +- [Yu-Lung Shao (Allen)](https://github.com/bestlong) @bestlong +- [Milan Urukalo](https://github.com/urukalo) @urukalo +- [Vince Chu](https://github.com/vwchu) @vwchu +- Join Us. + +## License + +[MIT License](https://github.com/laradock/laradock/blob/master/LICENSE) diff --git a/.gitignore b/.gitignore index a6b304c9..702790af 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ /logs /data .env -/.project \ No newline at end of file +/.project +.docker-sync \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 00dc2c9b..f54fc735 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,48 @@ services: - docker env: - matrix: - - PHP_VERSION=56 - - PHP_VERSION=70 - - PHP_VERSION=71 - - HUGO_VERSION=0.19 + matrix: + - PHP_VERSION=56 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis" + - PHP_VERSION=70 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis" + - PHP_VERSION=71 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis" + + - PHP_VERSION=56 BUILD_SERVICE=workspace + - PHP_VERSION=70 BUILD_SERVICE=workspace + - PHP_VERSION=71 BUILD_SERVICE=workspace + + - PHP_VERSION=56 BUILD_SERVICE=php-fpm + - PHP_VERSION=70 BUILD_SERVICE=php-fpm + - PHP_VERSION=71 BUILD_SERVICE=php-fpm + + - PHP_VERSION=56 BUILD_SERVICE="php-worker hhvm" + - PHP_VERSION=70 BUILD_SERVICE="php-worker hhvm" + - PHP_VERSION=71 BUILD_SERVICE="php-worker hhvm" + + - PHP_VERSION=56 BUILD_SERVICE=mssql + - PHP_VERSION=70 BUILD_SERVICE=mssql + - PHP_VERSION=71 BUILD_SERVICE=mssql + + - PHP_VERSION=56 BUILD_SERVICE=rethinkdb + - PHP_VERSION=70 BUILD_SERVICE=rethinkdb + - PHP_VERSION=71 BUILD_SERVICE=rethinkdb + + - PHP_VERSION=56 BUILD_SERVICE=aerospike + - PHP_VERSION=70 BUILD_SERVICE=aerospike + - PHP_VERSION=71 BUILD_SERVICE=aerospike + + - PHP_VERSION=56 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" + + - HUGO_VERSION=0.20.2 + +# Installing a newer Docker version +before_install: + - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - + - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" + - sudo apt-get update + - sudo apt-get -y install docker-ce + - docker version script: ./travis-build.sh diff --git a/DOCUMENTATION/config.toml b/DOCUMENTATION/config.toml index 31f30327..74e4fa0c 100644 --- a/DOCUMENTATION/config.toml +++ b/DOCUMENTATION/config.toml @@ -5,6 +5,7 @@ title = "Laradock" theme = "hugo-material-docs" metadataformat = "yaml" canonifyurls = true +uglyurls = true # Enable Google Analytics by entering your tracking id googleAnalytics = "UA-37514928-9" diff --git a/DOCUMENTATION/content/contributing/index.md b/DOCUMENTATION/content/contributing/index.md index 29b66b68..3c716558 100644 --- a/DOCUMENTATION/content/contributing/index.md +++ b/DOCUMENTATION/content/contributing/index.md @@ -5,15 +5,16 @@ weight: 7 --- -Your contribution is more than welcome. - -## I have a Question/Problem +## Have a Question If you have questions about how to use Laradock, please direct your questions to the discussion on [Gitter](https://gitter.im/Laradock/laradock). If you believe your question could help others, then consider opening an [Issue](https://github.com/laradock/laradock/issues) (it will be labeled as `Question`) And you can still seek help on Gitter for it. -## I found an Issue + + +## Found an Issue + If have an issue or you found a typo in the documentation, you can help us by -opnening an [Issue](https://github.com/laradock/laradock/issues). +opening an [Issue](https://github.com/laradock/laradock/issues). **Steps to do before opening an Issue:** @@ -23,18 +24,18 @@ opnening an [Issue](https://github.com/laradock/laradock/issues). If your issue appears to be a bug, and hasn't been reported, then open a new issue. -*This Help us to maximize the effort we can spend fixing issues and adding new +*This helps us maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues.* -## I want a Feature + +## Want a Feature You can request a new feature by submitting an [Issue](https://github.com/laradock/laradock/issues) (it will be labeled as `Feature Suggestion`). If you would like to implement a new feature then consider submitting a Pull Request yourself. - -## I want to update the Documentation (Site) +## Update the Documentation (Site) Laradock uses [Hugo](https://gohugo.io/) as website generator tool, with the [Material Docs theme](http://themes.gohugo.io/theme/material-docs/). You might need to check their docs quickly. @@ -47,9 +48,8 @@ To update the sidebar or add a new section to it, you can edit this `DOCUMENTATI > The site will be auto-generated in the `docs/` folder by [Travis CI](https://travis-ci.org/laradock/laradock/). -
-### To Host the website locally +### Host the documentation locally 1. Install [Hugo](https://gohugo.io/) on your machine. 2. Edit the `DOCUMENTATION/content`. @@ -59,33 +59,70 @@ To update the sidebar or add a new section to it, you can edit this `DOCUMENTATI -## How to support new Software (Add new Container) +## Support new Software (Add new Container) -* Create folder with the software name. +* Fork the repo and clone the code. -* Add a `Dockerfile`, write your code there. +* Create folder as the software name (example: `mysql` - `nginx`). -* You may add additional files in the software folder. +* Add your `Dockerfile` in the folder "you may add additional files as well". * Add the software to the `docker-compose.yml` file. -* Make sure you follow our commenting style. +* Make sure you follow the same code/comments style. -* Add the software in the `Documentation`. +* Add the environment variables to the `env-example` if you have any. -## Edit existing Software (Edit a Container) +* **MOST IMPORTANTLY** updated the `Documentation`, add as much information. -* Open the software (container) folder. +* Submit a Pull Request, to the `master` branch. -* Edit the files you want to update. -* **Note:** If you want to edit the base image of the `Workspace` or the `php-fpm` Containers, -you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the Laradock repository. + +## Edit supported Software (Edit a Container) + +* Fork the repo and clone the code. + +* Open the software (container) folder (example: `mysql` - `nginx`). + +* Edit the files. * Make sure to update the `Documentation` in case you made any changes. +* Submit a Pull Request, to the `master` branch. -## Pull Request + + + +## Edit Base Image + +* Open any dockerfile, copy the base image name (example: `FROM phusion/baseimage:latest`). + +* Search for the image in the [Docker Hub](https://hub.docker.com/search/) and find the source.. + +*Most of the image in Laradock are offical images, these projects live in other repositories and maintainer by other orgnizations.* + +**Note:** Laradock has two base images for (`Workspace` and `php-fpm`, mainly made to speed up the build time on your machine. + +* Find the dockerfiles, edit them and submit a Pull Request. + +* When updating a Laradock base image (`Workspace` or `php-fpm`), ask a project maintainer "Admin" to build a new image after your PR is merged. + +**Note:** after the base image is updated, every dockerfile that uses that image, needs to update his base image tag to get the updated code. + + + + + + + + +
+ + + + +## Submit Pull Request Instructions ### 1. Before Submitting a Pull Request (PR) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 48df261f..628c420a 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -5,6 +5,8 @@ weight: 3 --- + + ## List current running Containers ```bash @@ -153,7 +155,6 @@ You might use the `--no-cache` option if you want full rebuilding (`docker-compo -
## Add more Software (Docker Images) @@ -173,14 +174,17 @@ The NGINX Log file is stored in the `logs/nginx` directory. However to view the logs of all the other containers (MySQL, PHP-FPM,...) you can run this: ```bash -docker logs {container-name} +docker-compose logs {container-name} +``` + +```bash +docker-compose logs -f {container-name} ``` More [options](https://docs.docker.com/compose/reference/logs/) -```bash -docker logs -f {container-name} -``` + + @@ -228,7 +232,7 @@ By default **PHP-FPM 7.0** is running. php-fpm: build: context: ./php-fpm - dockerfile: Dockerfile-70 + dockerfile: Dockerfile-56 ... ``` @@ -311,9 +315,7 @@ It should be like this: ... ``` -2 - Re-build the containers `docker-compose build workspace php-fpm` - -3 - Open `laradock/workspace/xdebug.ini` and/or `laradock/php-fpm/xdebug.ini` and enable at least the following configurations: +2 - Open `laradock/workspace/xdebug.ini` and `laradock/php-fpm/xdebug.ini` and enable at least the following configurations: ``` xdebug.remote_autostart=1 @@ -321,11 +323,25 @@ xdebug.remote_enable=1 xdebug.remote_connect_back=1 ``` -For information on how to configure xDebug with your IDE and work it out, check this [Repository](https://github.com/LarryEitel/laravel-laradock-phpstorm). +3 - Re-build the containers `docker-compose build workspace php-fpm` + +For information on how to configure xDebug with your IDE and work it out, check this [Repository](https://github.com/LarryEitel/laravel-laradock-phpstorm) or follow up on the next section if you use linux and PhpStorm. + +## Setup remote debugging for PhpStorm on Linux + - Make sure you have followed the steps above in the [Install Xdebug section](http://laradock.io/documentation/#install-xdebug). + - Make sure Xdebug accepts connections and listens on port 9000. (Should be default configuration). + +![Debug Configuration](/images/photos/PHPStorm/linux/configuration/debugConfiguration.png "Debug Configuration"). + + - Create a server with name `laradock` (matches **PHP_IDE_CONFIG** key in environment file) and make sure to map project root path with server correctly. + +![Server Configuration](/images/photos/PHPStorm/linux/configuration/serverConfiguration.png "Server Configuration"). + + - Start listening for debug connections, place a breakpoint and you are good to go !
@@ -699,6 +715,8 @@ docker-compose up -d mysql phpmyadmin docker-compose up -d mariadb phpmyadmin ``` +*Note: To use with MariaDB, open `.env` and set `PMA_DB_ENGINE=mysql` to `PMA_DB_ENGINE=mariadb`.* + 2 - Open your browser and visit the localhost on port **8080**: `http://localhost:8080` @@ -713,11 +731,12 @@ docker-compose up -d mariadb phpmyadmin 1 - Run the Adminer Container (`adminer`) with the `docker-compose up` command. Example: ```bash -docker-compose up -d adminer +docker-compose up -d adminer ``` 2 - Open your browser and visit the localhost on port **8080**: `http://localhost:8080` +**Note:** We've locked Adminer to version 4.3.0 as at the time of writing [it contained a major bug](https://sourceforge.net/p/adminer/bugs-and-features/548/) preventing PostgreSQL users from logging in. If that bug is fixed (or if you're not using PostgreSQL) feel free to set Adminer to the latest version within [the Dockerfile](https://github.com/laradock/laradock/blob/master/adminer/Dockerfile#L1): `FROM adminer:latest` @@ -903,6 +922,26 @@ docker-compose up -d minio ``` + +
+ +## Use AWS + +1 - Configure AWS: + - make sure to add your SSH keys in aws/ssh_keys folder + +2 - Run the Aws Container (`aws`) with the `docker-compose up` command. Example: + +```bash +docker-compose up -d aws +``` + +3 - Access the aws container with `docker-compose exec aws bash` + +4 - To start using eb cli inside the container, initiaze your project first by doing 'eb init'. Read the [aws eb cli](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-configuration.html) docs for more details. + + +
@@ -924,9 +963,18 @@ To install CodeIgniter 3 on Laradock all you have to do is the following simple 3 - Re-build your PHP-FPM Container `docker-compose build php-fpm`. + +## Install Symfony +1 - Open the `.env` file and set `WORKSPACE_INSTALL_SYMFONY` to `true`. +2 - Run `docker-compose build workspace`, after the step above. +3 - The NGINX sites include a default config file for your Symfony project `symfony.conf.example`, so edit it and make sure the `root` is pointing to your project `web` directory. + +4 - Run `docker-compose restart` if the container was already running, before the step above. + +5 - Visit `symfony.dev`
@@ -1001,6 +1049,26 @@ To change the default forwarded port for ssh: +
+ +## Change the (MySQL) Version +By default **MySQL 8.0** is running. + +MySQL 8.0 is a development release. You may prefer to use the latest stable version, or an even older release. If you wish, you can change the MySQL image that is used. + +Open up your .env file and set the `MYSQL_VERSION` variable to the version you would like to install. + +``` +MYSQL_VERSION=5.7 +``` + +Available versions are: 5.5, 5.6, 5.7, 8.0, or latest. See https://store.docker.com/images/mysql for more information. + + + + + +
## MySQL access from host @@ -1035,6 +1103,19 @@ The default username and password for the root MySQL user are `root` and `root ` +
+ +## Create Multiple Databases (MySQL) + +Create `createdb.sql` from `mysql/docker-entrypoint-initdb.d/createdb.sql.example` in `mysql/docker-entrypoint-initdb.d/*` and add your SQL syntax as follow: + +```sql +CREATE DATABASE IF NOT EXISTS `your_db_1` COLLATE 'utf8_general_ci' ; +GRANT ALL ON `your_db_1`.* TO 'mysql_user'@'%' ; +``` + + +
@@ -1236,11 +1317,11 @@ You are free to modify the `aliases.sh` as you see fit, adding your own aliases
a) open the `docker-compose.yml` file
-b) search for the `INSTALL_AEROSPIKE_EXTENSION` argument under the Workspace Container +b) search for the `INSTALL_AEROSPIKE` argument under the Workspace Container
c) set it to `true`
-d) search for the `INSTALL_AEROSPIKE_EXTENSION` argument under the PHP-FPM Container +d) search for the `INSTALL_AEROSPIKE` argument under the PHP-FPM Container
e) set it to `true` @@ -1251,13 +1332,13 @@ It should be like this: build: context: ./workspace args: - - INSTALL_AEROSPIKE_EXTENSION=true + - INSTALL_AEROSPIKE=true ... php-fpm: build: context: ./php-fpm args: - - INSTALL_AEROSPIKE_EXTENSION=true + - INSTALL_AEROSPIKE=true ... ``` @@ -1355,7 +1436,11 @@ Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requ ## Improve speed on MacOS -Sharing code into Docker containers with osxfs have very poor performance compared to Linux. Likely there are some workarounds: +Docker on the Mac [is slow](https://github.com/docker/for-mac/issues/77), at the time of writing. Especially for larger projects, this can be a problem. The problem is [older than March 2016](https://forums.docker.com/t/file-access-in-mounted-volumes-extremely-slow-cpu-bound/8076) - as it's a such a long-running issue, we're including it in the docs here. + +So since sharing code into Docker containers with osxfs have very poor performance compared to Linux. Likely there are some workarounds: + + ### Workaround A: using dinghy @@ -1375,9 +1460,99 @@ Quick Setup giude, (we recommend you check their docs) - +
+ ### Workaround B: using d4m-nfs +You can use the d4m-nfs solution in 2 ways, one is using the Laradock built it integration, and the other is using the tool separatly. Below is show case of both methods: + + +#### B.1: using the built in d4m-nfs integration + +In simple terms, docker-sync creates a docker container with a copy of all the application files that can be accessed very quickly from the other containers. +On the other hand, docker-sync runs a process on the host machine that continuously tracks and updates files changes from the host to this intermediate container. + +Out of the box, it comes pre-configured for OS X, but using it on Windows is very easy to set-up by modifying the `DOCKER_SYNC_STRATEGY` on the `.env` + +##### Usage + +Laradock comes with `sync.sh`, an optional bash script, that automates installing, running and stopping docker-sync. Note that to run the bash script you may need to change the permissions `chmod 755 sync.sh` + +1) Configure your Laradock environment as you would normally do and test your application to make sure that your sites are running correctly. + +2) Make sure to set `DOCKER_SYNC_STRATEGY` on the `.env`. Read the [syncing strategies](https://github.com/EugenMayer/docker-sync/wiki/8.-Strategies) for details. +``` +# osx: 'native_osx' (default) +# windows: 'unison' +# linux: docker-sync not required + +DOCKER_SYNC_STRATEGY=native_osx +``` + +2) Install the docker-sync gem on the host-machine: +```bash +./sync.sh install +``` +3) Start docker-sync and the Laradock environment. +Specify the services you want to run, as you would normally do with `docker-compose up` +```bash +./sync.sh up nginx mysql +``` +Please note that the first time docker-sync runs, it will copy all the files to the intermediate container and that may take a very long time (15min+). +4) To stop the environment and docker-sync do: +```bash +./sync.sh down +``` + +##### Setting up Aliases (optional) + +You may create bash profile aliases to avoid having to remember and type these commands for everyday development. +Add the following lines to your `~/.bash_profile`: + +```bash +alias devup="cd /PATH_TO_LARADOCK/laradock; ./sync.sh up nginx mysql" #add your services +alias devbash="cd /PATH_TO_LARADOCK/laradock; ./sync.sh bash" +alias devdown="cd /PATH_TO_LARADOCK/laradock; ./sync.sh down" +``` + +Now from any location on your machine, you can simply run `devup`, `devbash` and `devdown`. + + +##### Additional Commands + +Opening bash on the workspace container (to run artisan for example): + ```bash + ./sync.sh bash + ``` +Manually triggering the synchronization of the files: +```bash +./sync.sh sync +``` +Removing and cleaning up the files and the docker-sync container. Use only if you want to rebuild or remove docker-sync completely. The files on the host will be kept untouched. +```bash +./sync.sh clean +``` + + +##### Additional Notes + +- You may run laradock with or without docker-sync at any time using with the same `.env` and `docker-compose.yml`, because the configuration is overridden automatically when docker-sync is used. +- You may inspect the `sync.sh` script to learn each of the commands and even add custom ones. +- If a container cannot access the files on docker-sync, you may need to set a user on the Dockerfile of that container with an id of 1000 (this is the UID that nginx and php-fpm have configured on laradock). Alternatively, you may change the permissions to 777, but this is **not** recommended. + +Visit the [docker-sync documentation](https://github.com/EugenMayer/docker-sync/wiki) for more details. + + + + + + + + +
+ +#### B.2: using the d4m-nfs tool + [D4m-nfs](https://github.com/IFSight/d4m-nfs) automatically mount NFS volume instead of osxfs one. 1) Update the Docker [File Sharing] preferences: @@ -1417,17 +1592,10 @@ docker-compose up ... -### Other good workarounds: - -- [docker-sync](https://github.com/EugenMayer/docker-sync) -- Add more here.. -More details about this issue [here](https://github.com/docker/for-mac/issues/77). - - @@ -1512,3 +1680,7 @@ This error sometimes happens because your Laravel application isn't running on t 2. Change the `DB_HOST` variable on env with the IP that you received from previous step. * Option B 1. Change the `DB_HOST` value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as `mysql` + +## I get stuck when building nginx on `fetch http://mirrors.aliyun.com/alpine/v3.5/main/x86_64/APKINDEX.tar.gz` + +As stated on [#749](https://github.com/laradock/laradock/issues/749#issuecomment-293296687), removing the line `RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories` from `nginx/Dockerfile` solves the problem. diff --git a/DOCUMENTATION/content/getting-started/index.md b/DOCUMENTATION/content/getting-started/index.md index 9172688d..cbbdfb68 100644 --- a/DOCUMENTATION/content/getting-started/index.md +++ b/DOCUMENTATION/content/getting-started/index.md @@ -39,23 +39,21 @@ Choose the setup the best suits your needs. git submodule add https://github.com/Laradock/laradock.git ``` -**Notes:** +Note: If you are not using Git yet for your project, you can use `git clone` instead of `git submodule `. -- If you are not using Git yet for your project, you can use `git clone` instead of `git submodule `. - -- Note 2: To keep track of your Laradock changes, between your projects and also keep Laradock updated. [Check this](/documentation/#keep-track-of-your-laradock-changes) +*To keep track of your Laradock changes, between your projects and also keep Laradock updated [check these docs](/documentation/#keep-track-of-your-laradock-changes)* Your folder structure should look like this: ``` + project-a - + laradock-a + + laradock-a + project-b - + laradock-b + + laradock-b ``` -(It's important to rename the folders differently in each project.) +*(It's important to rename the laradock folders to unique name in each project, if you want to run laradock per project).* > **Now jump to the [Usage](#Usage) section.** @@ -77,14 +75,19 @@ Your folder structure should look like this: 2 - Edit your web server sites configuration. -**In case of NGINX:** open `nginx/sites/default.conf` and change the `root` from `/var/www/public` to `/var/www/{my-project-folder-name}/public`. +We'll need to do step 1 of the [Usage](#Usage) section now to make this happen. -*Or you can keep `default.conf` as it is, and create a separate config `my-site.conf` file for it.* +``` +cp env-example .env +``` -**In case of Apache:** :P +At the top, change the `APPLICATION` variable to your project path. -
+``` +APPLICATION=../project-z/ +``` +Make sure to replace `project-z` with your project folder name. > **Now jump to the [Usage](#Usage) section.** @@ -109,9 +112,9 @@ Your folder structure should look like this: 2 - Go to `nginx/sites` and create config files to point to different project directory when visiting different domains. -Laradock by default includes `project-1.conf` and `project-2.conf` as working samples. +Laradock by default includes `app.conf.example`, `laravel.conf.example` and `symfony.conf.example` as working samples. -3 - change the default names `project-n`: +3 - change the default names `*.conf`: You can rename the config files, project folders and domains as you like, just make sure the `root` in the config files, is pointing to the correct project folder name. @@ -120,6 +123,7 @@ You can rename the config files, project folders and domains as you like, just m ``` 127.0.0.1 project-1.dev 127.0.0.1 project-2.dev +... ``` > **Now jump to the [Usage](#Usage) section.** @@ -142,11 +146,15 @@ If you are using **Docker Toolbox** (VM), do one of the following:
+We recommend using a Docker version which is newer than 1.13. + +
+ >**Warning:** If you used an older version of Laradock it's highly recommended to rebuild the containers you need to use [see how you rebuild a container](#Build-Re-build-Containers) in order to prevent as much errors as possible.
-1 - Enter the laradock folder and rename `env-example` to `.env` +1 - Enter the laradock folder and copy `env-example` to `.env` ```shell cp env-example .env @@ -204,6 +212,4 @@ DB_HOST=mysql *If you want to install Laravel as PHP project, see [How to Install Laravel in a Docker Container](#Install-Laravel).*
-5 - Open your browser and visit your localhost address `http://localhost/`. If you followed the multiple projects setup, you can visit `http://project-1.dev/` and `http://project-2.dev/`. But first don't - - +5 - Open your browser and visit your localhost address `http://localhost/`. If you followed the multiple projects setup, you can visit `http://project-1.dev/` and `http://project-2.dev/`. diff --git a/DOCUMENTATION/content/guides/index.md b/DOCUMENTATION/content/guides/index.md index 8385d5b3..ab744750 100644 --- a/DOCUMENTATION/content/guides/index.md +++ b/DOCUMENTATION/content/guides/index.md @@ -8,6 +8,7 @@ weight: 4 * [Production Setup on Digital Ocean](#Digital-Ocean) * [PHPStorm XDebug Setup](#PHPStorm-Debugging) +* [Running Laravel Dusk Test](#Laravel-Dusk) @@ -55,6 +56,10 @@ $root@server:~/laravel/ cd laradock $root@server:~/laravel/laradock# curl -L https://github.com/docker/compose/releases/download/1.8.0/run.sh > /usr/local/bin/docker-compose $root@server:~/chmod +x /usr/local/bin/docker-compose ``` +## Enter the laradock folder and rename env-example to .env. +``` +$root@server:~/laravel/laradock# cp env-example .env +``` ## Create Your Laradock Containers @@ -138,8 +143,8 @@ And add `server_name` (your custom domain) ## Rebuild Your Nginx ``` -$root@server:~/laravel/laradock/nginx# docker-compose down -$root@server:~/laravel/laradock/nginx# docker-compose build nginx +$root@server:~/laravel/laradock# docker-compose down +$root@server:~/laravel/laradock# docker-compose build nginx ``` ## Re Run Your Containers MYSQL and NGINX @@ -279,10 +284,10 @@ you should be able to adjust accordingly. This guide was written based on Docker ## hosts - Add `laravel` to your hosts file located on Windows 10 at `C:\Windows\System32\drivers\etc\hosts`. It should be set to the IP of your running container. Mine is: `10.0.75.2` On Windows you can find it by opening Windows `Hyper-V Manager`. - - ![Windows Hyper-V Manager](photos/PHPStorm/Settings/WindowsHyperVManager.png) + - ![Windows Hyper-V Manager](images/photos/PHPStorm/Settings/WindowsHyperVManager.png) - [Hosts File Editor](https://github.com/scottlerch/HostsFileEditor) makes it easy to change your hosts file. - - Set `laravel` to your docker host IP. See [Example](photos/SimpleHostsEditor/AddHost_laravel.png). + - Set `laravel` to your docker host IP. See [Example](images/photos/SimpleHostsEditor/AddHost_laravel.png). @@ -322,6 +327,7 @@ Set the following variables: - `laradock/php-fpm/xdebug.ini` Set the following variables: + ``` xdebug.remote_autostart=1 xdebug.remote_enable=1 @@ -332,34 +338,39 @@ xdebug.cli_color=1 ### Need to clean house first? + Make sure you are starting with a clean state. For example, do you have other Laradock containers and images? Here are a few things I use to clean things up. - Delete all containers using `grep laradock_` on the names, see: [Remove all containers based on docker image name](https://linuxconfig.org/remove-all-containners-based-on-docker-image-name). + `docker ps -a | awk '{ print $1,$2 }' | grep laradock_ | awk '{print $1}' | xargs -I {} docker rm {}` - Delete all images containing `laradock`. + `docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {}` **Note:** This will only delete images that were built with `Laradock`, **NOT** `laradock/*` which are pulled down by `Laradock` such as `laradock/workspace`, etc. **Note:** Some may fail with: `Error response from daemon: conflict: unable to delete 3f38eaed93df (cannot be forced) - image has dependent child images` - I added this to my `.bashrc` to remove orphaned images. - ``` - dclean() { - processes=`docker ps -q -f status=exited` - if [ -n "$processes" ]; thend - docker rm $processes - fi - images=`docker images -q -f dangling=true` - if [ -n "$images" ]; then - docker rmi $images - fi - } - ``` +``` +dclean() { + processes=`docker ps -q -f status=exited` + if [ -n "$processes" ]; thend + docker rm $processes + fi + + images=`docker images -q -f dangling=true` + if [ -n "$images" ]; then + docker rmi $images + fi +} +``` - If you frequently switch configurations for Laradock, you may find that adding the following and added to your `.bashrc` or equivalent useful: + ``` # remove laravel* containers # remove laravel_* images @@ -402,14 +413,14 @@ laradock_php-fpm_1 php-fpm Up 9000/tcp laradock_volumes_data_1 true Exit 0 laradock_volumes_source_1 true Exit 0 laradock_workspace_1 /sbin/my_init Up 0.0.0.0:2222->22/tcp - - ``` ## Enable xDebug on php-fpm + In a host terminal sitting in the laradock folder, run: `.php-fpm/xdebug status` You should see something like the following: + ``` xDebug status laradock_php-fpm_1 @@ -418,6 +429,7 @@ Copyright (c) 1997-2016 The PHP Group Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies with Xdebug v2.4.1, Copyright (c) 2002-2016, by Derick Rethans ``` + Other commands include `.php-fpm/xdebug start | stop`. If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will already be running when @@ -426,56 +438,57 @@ If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will ## PHPStorm Settings + - Here are some settings that are known to work: - `Settings/BuildDeploymentConnection` - - ![Settings/BuildDeploymentConnection](photos/PHPStorm/Settings/BuildDeploymentConnection.png) + - ![Settings/BuildDeploymentConnection](/images/photos/PHPStorm/Settings/BuildDeploymentConnection.png) - `Settings/BuildDeploymentConnectionMappings` - - ![Settings/BuildDeploymentConnectionMappings](photos/PHPStorm/Settings/BuildDeploymentConnectionMappings.png) + - ![Settings/BuildDeploymentConnectionMappings](/images/photos/PHPStorm/Settings/BuildDeploymentConnectionMappings.png) - `Settings/BuildDeploymentDebugger` - - ![Settings/BuildDeploymentDebugger](photos/PHPStorm/Settings/BuildDeploymentDebugger.png) + - ![Settings/BuildDeploymentDebugger](/images/photos/PHPStorm/Settings/BuildDeploymentDebugger.png) - `Settings/EditRunConfigurationRemoteWebDebug` - - ![Settings/EditRunConfigurationRemoteWebDebug](photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png) + - ![Settings/EditRunConfigurationRemoteWebDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png) - `Settings/EditRunConfigurationRemoteExampleTestDebug` - - ![Settings/EditRunConfigurationRemoteExampleTestDebug](photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png) + - ![Settings/EditRunConfigurationRemoteExampleTestDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png) - `Settings/LangsPHPDebug` - - ![Settings/LangsPHPDebug](photos/PHPStorm/Settings/LangsPHPDebug.png) + - ![Settings/LangsPHPDebug](/images/photos/PHPStorm/Settings/LangsPHPDebug.png) - `Settings/LangsPHPInterpreters` - - ![Settings/LangsPHPInterpreters](photos/PHPStorm/Settings/LangsPHPInterpreters.png) + - ![Settings/LangsPHPInterpreters](/images/photos/PHPStorm/Settings/LangsPHPInterpreters.png) - `Settings/LangsPHPPHPUnit` - - ![Settings/LangsPHPPHPUnit](photos/PHPStorm/Settings/LangsPHPPHPUnit.png) + - ![Settings/LangsPHPPHPUnit](/images/photos/PHPStorm/Settings/LangsPHPPHPUnit.png) - `Settings/LangsPHPServers` - - ![Settings/LangsPHPServers](photos/PHPStorm/Settings/LangsPHPServers.png) + - ![Settings/LangsPHPServers](/images/photos/PHPStorm/Settings/LangsPHPServers.png) - `RemoteHost` To switch on this view, go to: `Menu/Tools/Deployment/Browse Remote Host`. - - ![RemoteHost](photos/PHPStorm/RemoteHost.png) + - ![RemoteHost](/images/photos/PHPStorm/RemoteHost.png) - `RemoteWebDebug` - - ![DebugRemoteOn](photos/PHPStorm/DebugRemoteOn.png) + - ![DebugRemoteOn](/images/photos/PHPStorm/DebugRemoteOn.png) - `EditRunConfigurationRemoteWebDebug` Go to: `Menu/Run/Edit Configurations`. - - ![EditRunConfigurationRemoteWebDebug](photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png) + - ![EditRunConfigurationRemoteWebDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png) - `EditRunConfigurationRemoteExampleTestDebug` Go to: `Menu/Run/Edit Configurations`. - - ![EditRunConfigurationRemoteExampleTestDebug](photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png) + - ![EditRunConfigurationRemoteExampleTestDebug](/images/photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png) - `WindowsFirewallAllowedApps` Go to: `Control Panel\All Control Panel Items\Windows Firewall\Allowed apps`. - - ![WindowsFirewallAllowedApps.png](photos/PHPStorm/Settings/WindowsFirewallAllowedApps.png) + - ![WindowsFirewallAllowedApps.png](/images/photos/PHPStorm/Settings/WindowsFirewallAllowedApps.png) - `hosts` Edit: `C:\Windows\System32\drivers\etc\hosts`. - - ![WindowsFirewallAllowedApps.png](photos/PHPStorm/Settings/hosts.png) + - ![WindowsFirewallAllowedApps.png](/images/photos/PHPStorm/Settings/hosts.png) - [Enable xDebug on php-fpm](#enablePhpXdebug) @@ -497,7 +510,7 @@ If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will - right-click on `tests/ExampleTest.php` - Select: `Debug 'ExampleTest.php'`. - Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH! - - ![Remote Test Debugging Success](photos/PHPStorm/RemoteTestDebuggingSuccess.png) + - ![Remote Test Debugging Success](/images/photos/PHPStorm/RemoteTestDebuggingSuccess.png) @@ -508,13 +521,13 @@ If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will `.php-fpm/xdebug stop` - Start Remote Debugging - - ![DebugRemoteOn](photos/PHPStorm/DebugRemoteOn.png) + - ![DebugRemoteOn](/images/photos/PHPStorm/DebugRemoteOn.png) - Open to edit: `bootstrap/app.php` - Add a BreakPoint on line 14: `$app = new Illuminate\Foundation\Application(` - Reload [Laravel Site](http://laravel/) - Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH! - - ![Remote Debugging Success](photos/PHPStorm/RemoteDebuggingSuccess.png) + - ![Remote Debugging Success](/images/photos/PHPStorm/RemoteDebuggingSuccess.png) @@ -533,14 +546,340 @@ Assuming that you are in laradock folder, type: [Kitty](http://www.9bis.net/kitty/) KiTTY is a fork from version 0.67 of PuTTY. - Here are some settings that are working for me: - - ![Session](photos/KiTTY/Session.png) - - ![Terminal](photos/KiTTY/Terminal.png) - - ![Window](photos/KiTTY/Window.png) - - ![WindowAppearance](photos/KiTTY/WindowAppearance.png) - - ![Connection](photos/KiTTY/Connection.png) - - ![ConnectionData](photos/KiTTY/ConnectionData.png) - - ![ConnectionSSH](photos/KiTTY/ConnectionSSH.png) - - ![ConnectionSSHAuth](photos/KiTTY/ConnectionSSHAuth.png) - - ![TerminalShell](photos/KiTTY/TerminalShell.png) + - ![Session](/images/photos/KiTTY/Session.png) + - ![Terminal](/images/photos/KiTTY/Terminal.png) + - ![Window](/images/photos/KiTTY/Window.png) + - ![WindowAppearance](/images/photos/KiTTY/WindowAppearance.png) + - ![Connection](/images/photos/KiTTY/Connection.png) + - ![ConnectionData](/images/photos/KiTTY/ConnectionData.png) + - ![ConnectionSSH](/images/photos/KiTTY/ConnectionSSH.png) + - ![ConnectionSSHAuth](/images/photos/KiTTY/ConnectionSSHAuth.png) + - ![TerminalShell](/images/photos/KiTTY/TerminalShell.png) + +
+
+
+
+
+ + +# Running Laravel Dusk Tests + +- [Option 1: Without Selenium](#option1-dusk) +- [Option 2: With Selenium](#option2-dusk) + + +## Option 1: Without Selenium + +- [Intro](#option1-dusk-intro) +- [Workspace Setup](#option1-workspace-setup) +- [Application Setup](#option1-application-setup) +- [Choose Chrome Driver Version (Optional)](#option1-choose-chrome-driver-version) +- [Run Dusk Tests](#option1-run-dusk-tests) + + +### Intro + +This is a guide to run Dusk tests in your `workspace` container with headless +google-chrome and chromedriver. It has been tested with Laravel 5.4 and 5.5. + + +### Workspace Setup + +Update your .env with following entries: + +``` +... +# Install Laravel installer bin to setup demo app +WORKSPACE_INSTALL_LARAVEL_INSTALLER=true +... +# Install all the necessary dependencies for running Dusk tests +WORKSPACE_INSTALL_DUSK_DEPS=true +... +``` + +Then run below to build your workspace. + +``` +docker-compose build workspace +``` + + +### Application Setup + +Run a `workspace` container and you will be inside the container at `/var/www` directory. + +``` +docker-compose run workspace bash + +/var/www#> _ +``` + +Create new Laravel application named `dusk-test` and install Laravel Dusk package. + +``` +/var/www> laravel new dusk-test +/var/www> cd dusk-test +/var/www/dusk-test> composer require --dev laravel/dusk +/var/www/dusk-test> php artisan dusk:install +``` + +Create `.env.dusk.local` by copying from `.env` file. + +``` +/var/www/dusk-test> cp .env .env.dusk.local +``` + +Update the `APP_URL` entry in `.env.dusk.local` to local Laravel server. + +``` +APP_URL=http://localhost:8000 +``` + +You will need to run chromedriver with `headless` and `no-sandbox` flag. In Laravel Dusk 2.x it is +already set `headless` so you just need to add `no-sandbox` flag. If you on previous version 1.x, +you will need to update your `DustTestCase#driver` as shown below. +``` +addArguments([ + '--disable-gpu', + '--headless', + '--no-sandbox' + ]); + + return RemoteWebDriver::create( + 'http://localhost:9515', DesiredCapabilities::chrome()->setCapability( + ChromeOptions::CAPABILITY, $options + ) + ); + } +} +``` + + +### Choose Chrome Driver Version (Optional) + +You could choose to use either: + +1. Chrome Driver shipped with Laravel Dusk. (Default) +2. Chrome Driver installed in `workspace` container. (Required tweak on DuskTestCase class) + +For Laravel 2.x, you need to update `DuskTestCase#prepare` method if you wish to go with option #2. + +``` + +setPrefix('chromedriver') + ->getProcess() + ->setEnv(static::chromeEnvironment()); + } + + ... +} +``` + + +### Run Dusk Tests + +Run local server in `workspace` container and run Dusk tests. + +``` +# alias to run Laravel server in the background (php artisan serve --quiet &) +/var/www/dusk-test> serve +# alias to run Dusk tests (php artisan dusk) +/var/www/dusk-test> dusk + +PHPUnit 6.4.0 by Sebastian Bergmann and contributors. + +. 1 / 1 (100%) + +Time: 837 ms, Memory: 6.00MB +``` + + +## Option 2: With Selenium + +- [Intro](#dusk-intro) +- [DNS Setup](#dns-setup) +- [Docker Compose Setup](#docker-compose) +- [Laravel Dusk Setup](#laravel-dusk-setup) +- [Running Laravel Dusk Tests](#running-tests) + + +### Intro +Setting up Laravel Dusk tests to run with Laradock appears be something that +eludes most Laradock users. This guide is designed to show you how to wire them +up to work together. This guide is written with macOS and Linux in mind. As such, +it's only been tested on macOS. Feel free to create pull requests to update the guide +for Windows-specific instructions. + +This guide assumes you know how to use a DNS forwarder such as `dnsmasq` or are comfortable +with editing the `/etc/hosts` file for one-off DNS changes. + + +### DNS Setup +According to RFC-2606, only four TLDs are reserved for local testing[^1]: + +- `.test` +- `.example` +- `.invalid` +- `.localhost` + +A common TLD used for local development is `.dev`, but newer versions of Google +Chrome (such as the one bundled with the Selenium Docker image), will fail to +resolve that DNS as there will appear to be a name collision. + +The recommended extension is `.test` for your Laravel web apps because you're +running tests. Using a DNS forwarder such as `dnsmasq` or by editing the `/etc/hosts` +file, configure the host to point to `localhost`. + +For example, in your `/etc/hosts` file: +``` +## +# Host Database +# +# localhost is used to configure the loopback interface +# when the system is booting. Do not change this entry. +## +127.0.0.1 localhost +255.255.255.255 broadcasthost +::1 localhost +127.0.0.1 myapp.test +``` + +This will ensure that when navigating to `myapp.test`, it will route the +request to `127.0.0.1` which will be handled by Nginx in Laradock. + + +### Docker Compose setup +In order to make the Selenium container talk to the Nginx container appropriately, +the `docker-compose.yml` needs to be edited to accommodate this. Make the following +changes: + +```yaml +... +selenium: + ... + depends_on: + - nginx + links: + - nginx: +``` + +This allows network communication between the Nginx and Selenium containers +and it also ensures that when starting the Selenium container, the Nginx +container starts up first unless it's already running. This allows +the Selenium container to make requests to the Nginx container, which is +necessary for running Dusk tests. These changes also link the `nginx` environment +variable to the domain you wired up in your hosts file. + + +### Laravel Dusk Setup + +In order to make Laravel Dusk make the proper request to the Selenium container, +you have to edit the `DuskTestCase.php` file that's provided on the initial +installation of Laravel Dusk. The change you have to make deals with the URL the +Remote Web Driver attempts to use to set up the Selenium session. + +One recommendation for this is to add a separate config option in your `.env.dusk.local` +so it's still possible to run your Dusk tests locally should you want to. + +#### .env.dusk.local +``` +... +USE_SELENIUM=true +``` + +#### DuskTestCase.php +```php +abstract class DuskTestCase extends BaseTestCase +{ +... + protected function driver() + { + if (env('USE_SELENIUM', 'false') == 'true') { + return RemoteWebDriver::create( + 'http://selenium:4444/wd/hub', DesiredCapabilities::chrome() + ); + } else { + return RemoteWebDriver::create( + 'http://localhost:9515', DesiredCapabilities::chrome() + ); + } + } +} +``` + + +### Running Laravel Dusk Tests + +Now that you have everything set up, to run your Dusk tests, you have to SSH +into the workspace container as you normally would: +```docker-compose exec --user=laradock workspace bash``` + +Once inside, you can change directory to your application and run: + +```php artisan dusk``` + +One way to make this easier from your project is to create a helper script. Here's one such example: +```bash +#!/usr/bin/env sh + +LARADOCK_HOME="path/to/laradock" + +pushd ${LARADOCK_HOME} + +docker-compose exec --user=laradock workspace bash -c "cd my-project && php artisan dusk && exit" +``` + +This invokes the Dusk command from inside the workspace container but when the script completes +execution, it returns your session to your project directory. + +[^1]: [Don't Use .dev for Development](https://iyware.com/dont-use-dev-for-development/) diff --git a/DOCUMENTATION/content/index.md b/DOCUMENTATION/content/index.md deleted file mode 100644 index 56c08a8f..00000000 --- a/DOCUMENTATION/content/index.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: Welcome -type: index -weight: 0 ---- diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 22b34018..115a79c6 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -83,17 +83,21 @@ In adhering to the separation of concerns principle as promoted by Docker, Larad You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm. - **Database Engines:** -MySQL - MariaDB - Percona - MongoDB - Neo4j - RethinkDB - MSSQL - PostgreSQL - Postgres Postgis. +MySQL - MariaDB - Percona - MongoDB - Neo4j - RethinkDB - MSSQL - PostgreSQL - Postgres-PostGIS. +- **Database Management:** +PhpMyAdmin - Adminer - PgAdmin - **Cache Engines:** Redis - Memcached - Aerospike - **PHP Servers:** NGINX - Apache2 - Caddy - **PHP Compilers:** PHP FPM - HHVM -- **Message Queuing:** -Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console - PHP Worker -- **Tools:** -HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varnish - PhpMyAdmin - Adminer - PgAdmin - MailHog - [Blackfire](https://blackfire.io)... +- **Message Queueing:** +Beanstalkd - RabbitMQ - PHP Worker +- **Queueing Management:** +Beanstalkd Console - RabbitMQ Console +- **Random Tools:** +HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Mailhog - Minio - Varnish - Swoole - Laravel Echo... Laradock introduces the **Workspace** Image, as a development environment. It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose. @@ -108,7 +112,7 @@ You can choose, which tools to install in your workspace container and other con -If you can't find your Software in the list, build it yourself and sumit it. Contributions are welcomed :) +If you can't find your Software in the list, build it yourself and submit it. Contributions are welcomed :) @@ -118,8 +122,10 @@ If you can't find your Software in the list, build it yourself and sumit it. Con ## What is Docker? -[Docker](https://www.docker.com) is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of [operating-system-level virtualization](https://en.wikipedia.org/wiki/Operating-system-level_virtualization) on Linux, Mac OS and Windows. - +[Docker](https://www.docker.com) is an open platform for developing, shipping, and running applications. +Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. +With Docker, you can manage your infrastructure in the same ways you manage your applications. +By taking advantage of Docker’s methodologies for shipping, testing, and deploying code quickly, you can significantly reduce the delay between writing code and running it in production. @@ -146,7 +152,7 @@ Most importantly Docker can run on Development and on Production (same environme What's better than a **Demo Video**: -- Laradock v5.* (soon or never) +- Laradock v5.* (should be next!) - Laradock [v4.*](https://www.youtube.com/watch?v=TQii1jDa96Y) - Laradock [v2.*](https://www.youtube.com/watch?v=-DamFMczwDA) - Laradock [v0.3](https://www.youtube.com/watch?v=jGkyO6Is_aI) diff --git a/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/linux/configuration/debugConfiguration.png b/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/linux/configuration/debugConfiguration.png new file mode 100644 index 0000000000000000000000000000000000000000..e69d539502c859d5c438befc18d2e1041d656095 GIT binary patch literal 87122 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 literal 0 HcmV?d00001 diff --git a/README.md b/README.md deleted file mode 100644 index 0333f9ff..00000000 --- a/README.md +++ /dev/null @@ -1,29 +0,0 @@ -[![Build Status](https://travis-ci.org/laradock/laradock.svg?branch=master)](https://travis-ci.org/laradock/laradock) - -![](https://s19.postimg.org/jblfytw9f/laradock-logo.jpg) - -> Use Docker first and learn about it later. - -A Docker PHP development environment that facilitates running **PHP** Apps on **Docker**. - -[![forthebadge](http://forthebadge.com/images/badges/built-by-developers.svg)](http://zalt.me) - -## Documentation - -[**Full Documentation Here**](http://laradock.io) - -## Credits - -**Maintainers:** - -- [Mahmoud Zalt](https://github.com/Mahmoudz) @mahmoudz | [Twitter](https://twitter.com/Mahmoud_Zalt) | [Site](http://zalt.me) -- [Bo-Yi Wu](https://github.com/appleboy) @appleboy | [Twitter](https://twitter.com/appleboy) -- [Philippe Trépanier](https://github.com/philtrep) @philtrep -- [Mike Erickson](https://github.com/mikeerickson) @mikeerickson -- [Dwi Fahni Denni](https://github.com/zeroc0d3) @zeroc0d3 -- [Thor Erik](https://github.com/thorerik) @thorerik -- [Winfried van Loon](https://github.com/winfried-van-loon) @winfried-van-loon - -## License - -[MIT License](https://github.com/laradock/laradock/blob/master/LICENSE) (MIT) diff --git a/adminer/Dockerfile b/adminer/Dockerfile index 058170cc..818c8e13 100644 --- a/adminer/Dockerfile +++ b/adminer/Dockerfile @@ -1,9 +1,29 @@ -FROM adminer:latest +FROM adminer:4.3.0 + +# Version 4.3.1 contains PostgreSQL login errors. See docs. +# See https://sourceforge.net/p/adminer/bugs-and-features/548/ MAINTAINER Patrick Artounian # Add volume for sessions to allow session persistence VOLUME /sessions +##################################### +# SQL SERVER: +##################################### +USER root +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + set -xe \ + && apk --update add --no-cache --virtual .phpize-deps $PHPIZE_DEPS unixodbc unixodbc-dev \ + && pecl channel-update pecl.php.net \ + && pecl install pdo_sqlsrv-4.1.8preview sqlsrv-4.1.8preview \ + && echo "extension=sqlsrv.so" > /usr/local/etc/php/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /usr/local/etc/php/conf.d/20-pdo_sqlsrv.ini \ +;fi + +USER adminer + # We expose Adminer on port 8080 (Adminer's default) EXPOSE 8080 diff --git a/apache2/Dockerfile b/apache2/Dockerfile index e2b4ce41..9624d975 100644 --- a/apache2/Dockerfile +++ b/apache2/Dockerfile @@ -2,17 +2,21 @@ FROM webdevops/apache:ubuntu-16.04 MAINTAINER Eric Pfeiffer -ARG PHP_SOCKET=php-fpm:9000 +ARG PHP_UPSTREAM_CONTAINER=php-fpm +ARG PHP_UPSTREAM_PORT=9000 +ARG PHP_UPSTREAM_TIMEOUT=60 -ENV WEB_PHP_SOCKET=$PHP_SOCKET +ENV WEB_PHP_SOCKET=${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT} ENV WEB_DOCUMENT_ROOT=/var/www/ +ENV WEB_PHP_TIMEOUT=${PHP_UPSTREAM_TIMEOUT} + EXPOSE 80 443 WORKDIR /var/www/ -ADD vhost.conf /etc/apache2/sites-enabled/vhost.conf +COPY vhost.conf /etc/apache2/sites-enabled/vhost.conf ENTRYPOINT ["/opt/docker/bin/entrypoint.sh"] diff --git a/apache2/sites/default.apache.conf b/apache2/sites/default.apache.conf index 2d15dafc..18ee6de5 100644 --- a/apache2/sites/default.apache.conf +++ b/apache2/sites/default.apache.conf @@ -1,9 +1,9 @@ ServerName laradock.dev - DocumentRoot /var/www/html/ + DocumentRoot /var/www/ Options Indexes FollowSymLinks - + AllowOverride All Allow from all diff --git a/aws/.gitignore b/aws/.gitignore new file mode 100644 index 00000000..46194830 --- /dev/null +++ b/aws/.gitignore @@ -0,0 +1 @@ +./ssh_keys diff --git a/aws/Dockerfile b/aws/Dockerfile new file mode 100644 index 00000000..4f03e9dc --- /dev/null +++ b/aws/Dockerfile @@ -0,0 +1,17 @@ +FROM python:slim + +MAINTAINER melchabcede@gmail.com + +RUN pip install --upgrade --no-cache-dir awsebcli +RUN apt-get -yqq update && apt-get -yqq install git-all + +#NOTE: make sure ssh keys are added to ssh_keys folder + +RUN mkdir root/tmp_ssh +COPY /ssh_keys/. /root/.ssh/ +RUN cd /root/.ssh && chmod 600 * && chmod 644 *.pub + +# Set default work directory +WORKDIR /var/www + + diff --git a/caddy/Caddyfile b/caddy/Caddyfile index 269b62a1..288d9d3b 100644 --- a/caddy/Caddyfile +++ b/caddy/Caddyfile @@ -1,28 +1,30 @@ # Docs: https://caddyserver.com/docs/caddyfile -0.0.0.0:80 -root /var/www/public -fastcgi / php-fpm:9000 php { - index index.php +0.0.0.0:80 { + root /var/www/public + fastcgi / php-fpm:9000 php { + index index.php + } + + # To handle .html extensions with laravel change ext to + # ext / .html + + rewrite { + to {path} {path}/ /index.php?{query} + } + gzip + browse + log /var/log/caddy/access.log + errors /var/log/caddy/error.log + # Uncomment to enable TLS (HTTPS) + # Change the first list to listen on port 443 when enabling TLS + #tls self_signed + + # To use Lets encrpt tls with a DNS provider uncomment these + # lines and change the provider as required + #tls { + # dns cloudflare + #} } - -# To handle .html extensions with laravel change ext to -# ext / .html - -rewrite { - r .* - ext / - to /index.php?{query} +laradock.demo { + root /var/www/public } -gzip -browse -log /var/log/caddy/access.log -errors /var/log/caddy/error.log -# Uncomment to enable TLS (HTTPS) -# Change the first list to listen on port 443 when enabling TLS -#tls self_signed - -# To use Lets encrpt tls with a DNS provider uncomment these -# lines and change the provider as required -#tls { -# dns cloudflare -#} diff --git a/caddy/Dockerfile b/caddy/Dockerfile index b10a9f52..d88fe390 100644 --- a/caddy/Dockerfile +++ b/caddy/Dockerfile @@ -1,18 +1,19 @@ -FROM alpine:3.4 +FROM alpine:3.5 MAINTAINER Eric Pfeiffer -ENV caddy_version=0.10.0 +ENV caddy_version=0.10.5 +ARG plugins=http.git LABEL caddy_version="$caddy_version" architecture="amd64" RUN apk update \ && apk upgrade \ - && apk add tar curl git + && apk add --no-cache openssh-client git tar curl RUN curl --silent --show-error --fail --location \ --header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \ - "https://caddyserver.com/download/linux/amd64?plugins=http.cgi,http.cors,http.expires,http.filemanager,http.git,http.ipfilter,http.realip,tls.dns.cloudflare,tls.dns.digitalocean,tls.dns.dnspod,tls.dns.dyn,tls.dns.googlecloud,tls.dns.linode,tls.dns.namecheap,tls.dns.ovh,tls.dns.route53,tls.dns.vultr" \ + "https://caddyserver.com/download/linux/amd64?plugins=${plugins}" \ | tar --no-same-owner -C /usr/bin/ -xz caddy \ && mv /usr/bin/caddy /usr/bin/caddy \ && chmod 0755 /usr/bin/caddy diff --git a/docker-compose.sync.yml b/docker-compose.sync.yml new file mode 100644 index 00000000..20bb016a --- /dev/null +++ b/docker-compose.sync.yml @@ -0,0 +1,17 @@ +version: '2' + +services: + +### Applications Code Container ############################# + + applications: + image: tianon/true + volumes: + - applications-sync:/var/www:nocopy # nocopy is required + +### Volumes Setup ############################################# + +volumes: + applications-sync: + external: + name: "applications-docker-sync" diff --git a/docker-compose.yml b/docker-compose.yml index 8020d2d1..e0fee7de 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,20 +18,32 @@ services: - INSTALL_XDEBUG=${WORKSPACE_INSTALL_XDEBUG} - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE} - INSTALL_SOAP=${WORKSPACE_INSTALL_SOAP} + - INSTALL_LDAP=${WORKSPACE_INSTALL_LDAP} - INSTALL_MONGO=${WORKSPACE_INSTALL_MONGO} + - INSTALL_PHPREDIS=${WORKSPACE_INSTALL_PHPREDIS} + - INSTALL_MSSQL=${WORKSPACE_INSTALL_MSSQL} - INSTALL_NODE=${WORKSPACE_INSTALL_NODE} - INSTALL_YARN=${WORKSPACE_INSTALL_YARN} - INSTALL_DRUSH=${WORKSPACE_INSTALL_DRUSH} - - INSTALL_AEROSPIKE_EXTENSION=${WORKSPACE_INSTALL_AEROSPIKE_EXTENSION} - - INSTALL_V8JS_EXTENSION=${WORKSPACE_INSTALL_INSTALL_V8JS_EXTENSION} + - INSTALL_DRUPAL_CONSOLE=${WORKSPACE_INSTALL_DRUPAL_CONSOLE} + - INSTALL_AEROSPIKE=${WORKSPACE_INSTALL_AEROSPIKE} + - INSTALL_V8JS=${WORKSPACE_INSTALL_V8JS} - COMPOSER_GLOBAL_INSTALL=${WORKSPACE_COMPOSER_GLOBAL_INSTALL} - INSTALL_WORKSPACE_SSH=${WORKSPACE_INSTALL_WORKSPACE_SSH} - INSTALL_LARAVEL_ENVOY=${WORKSPACE_INSTALL_LARAVEL_ENVOY} + - INSTALL_LARAVEL_INSTALLER=${WORKSPACE_INSTALL_LARAVEL_INSTALLER} - INSTALL_DEPLOYER=${WORKSPACE_INSTALL_DEPLOYER} - INSTALL_LINUXBREW=${WORKSPACE_INSTALL_LINUXBREW} - INSTALL_MC=${WORKSPACE_INSTALL_MC} + - INSTALL_SYMFONY=${WORKSPACE_INSTALL_SYMFONY} + - INSTALL_PYTHON=${WORKSPACE_INSTALL_PYTHON} + - INSTALL_IMAGE_OPTIMIZERS=${WORKSPACE_INSTALL_IMAGE_OPTIMIZERS} + - INSTALL_IMAGEMAGICK=${WORKSPACE_INSTALL_IMAGEMAGICK} + - INSTALL_TERRAFORM=${WORKSPACE_INSTALL_TERRAFORM} + - INSTALL_DUSK_DEPS=${WORKSPACE_INSTALL_DUSK_DEPS} - PUID=${WORKSPACE_PUID} - PGID=${WORKSPACE_PGID} + - CHROME_DRIVER_VERSION=${WORKSPACE_CHROME_DRIVER_VERSION} - NODE_VERSION=${WORKSPACE_NODE_VERSION} - YARN_VERSION=${WORKSPACE_YARN_VERSION} - TZ=${WORKSPACE_TIMEZONE} @@ -59,17 +71,22 @@ services: - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE} - INSTALL_SOAP=${PHP_FPM_INSTALL_SOAP} - INSTALL_MONGO=${PHP_FPM_INSTALL_MONGO} + - INSTALL_MSSQL=${PHP_FPM_INSTALL_MSSQL} - INSTALL_ZIP_ARCHIVE=${PHP_FPM_INSTALL_ZIP_ARCHIVE} - INSTALL_BCMATH=${PHP_FPM_INSTALL_BCMATH} - INSTALL_PHPREDIS=${PHP_FPM_INSTALL_PHPREDIS} - INSTALL_MEMCACHED=${PHP_FPM_INSTALL_MEMCACHED} - INSTALL_OPCACHE=${PHP_FPM_INSTALL_OPCACHE} - INSTALL_EXIF=${PHP_FPM_INSTALL_EXIF} - - INSTALL_AEROSPIKE_EXTENSION=${PHP_FPM_INSTALL_AEROSPIKE_EXTENSION} + - INSTALL_AEROSPIKE=${PHP_FPM_INSTALL_AEROSPIKE} - INSTALL_MYSQLI=${PHP_FPM_INSTALL_MYSQLI} - INSTALL_TOKENIZER=${PHP_FPM_INSTALL_TOKENIZER} - INSTALL_INTL=${PHP_FPM_INSTALL_INTL} - INSTALL_GHOSTSCRIPT=${PHP_FPM_INSTALL_GHOSTSCRIPT} + - INSTALL_LDAP=${PHP_FPM_INSTALL_LDAP} + - INSTALL_SWOOLE=${PHP_FPM_INSTALL_SWOOLE} + - INSTALL_IMAGE_OPTIMIZERS=${PHP_FPM_INSTALL_IMAGE_OPTIMIZERS} + - INSTALL_IMAGEMAGICK=${PHP_FPM_INSTALL_IMAGEMAGICK} dockerfile: "Dockerfile-${PHP_VERSION}" volumes_from: - applications @@ -91,20 +108,24 @@ services: php-worker: build: context: ./php-worker + dockerfile: "Dockerfile-${PHP_VERSION}" volumes_from: - applications depends_on: - workspace + extra_hosts: + - "dockerhost:${DOCKER_HOST_IP}" networks: - backend -### Nginx Server Container ################################## +### NGINX Server Container ################################## nginx: build: context: ./nginx args: - - PHP_UPSTREAM=php-fpm + - PHP_UPSTREAM_CONTAINER=${NGINX_PHP_UPSTREAM_CONTAINER} + - PHP_UPSTREAM_PORT=${NGINX_PHP_UPSTREAM_PORT} volumes_from: - applications volumes: @@ -137,12 +158,14 @@ services: build: context: ./apache2 args: - - PHP_SOCKET=${PHP_SOCKET} + - PHP_UPSTREAM_CONTAINER=${APACHE_PHP_UPSTREAM_CONTAINER} + - PHP_UPSTREAM_PORT=${APACHE_PHP_UPSTREAM_PORT} + - PHP_UPSTREAM_TIMEOUT=${APACHE_PHP_UPSTREAM_TIMEOUT} volumes_from: - applications volumes: - ${APACHE_HOST_LOG_PATH}:/var/log/apache2 - - ./apache2/sites:/etc/apache2/sites-available + - ${APACHE_SITES_PATH}:/etc/apache2/sites-available ports: - "${APACHE_HOST_HTTP_PORT}:80" - "${APACHE_HOST_HTTPS_PORT}:443" @@ -185,13 +208,17 @@ services: mysql: build: context: ./mysql + args: + - MYSQL_VERSION=${MYSQL_VERSION} environment: - MYSQL_DATABASE=${MYSQL_DATABASE} - MYSQL_USER=${MYSQL_USER} - MYSQL_PASSWORD=${MYSQL_PASSWORD} - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} + - TZ=${WORKSPACE_TIMEZONE} volumes: - ${DATA_SAVE_PATH}/mysql:/var/lib/mysql + - ${MYSQL_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d ports: - "${MYSQL_PORT}:3306" networks: @@ -208,7 +235,8 @@ services: - MYSQL_PASSWORD=${PERCONA_PASSWORD} - MYSQL_ROOT_PASSWORD=${PERCONA_ROOT_PASSWORD} volumes: - - percona:/var/lib/mysql + - ${DATA_SAVE_PATH}/percona:/var/lib/mysql + - ${PERCONA_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d ports: - "${PERCONA_PORT}:3306" networks: @@ -236,6 +264,7 @@ services: build: ./mariadb volumes: - ${DATA_SAVE_PATH}/mariadb:/var/lib/mysql + - ${MARIADB_ENTRYPOINT_INITDB}:/docker-entrypoint-initdb.d ports: - "${MARIADB_PORT}:3306" environment: @@ -295,7 +324,7 @@ services: mongo: build: ./mongo ports: - - "27017:27017" + - "${MONGODB_PORT}:27017" volumes: - ${DATA_SAVE_PATH}/mongo:/data/db networks: @@ -306,7 +335,7 @@ services: rethinkdb: build: ./rethinkdb ports: - - "8090:8080" + - "${RETHINKDB_PORT}:8080" volumes: - ${DATA_SAVE_PATH}/rethinkdb:/data/rethinkdb_data networks: @@ -319,7 +348,7 @@ services: volumes: - ${DATA_SAVE_PATH}/redis:/data ports: - - "6379:6379" + - "${REDIS_PORT}:6379" networks: - backend @@ -332,10 +361,10 @@ services: volumes: - ${DATA_SAVE_PATH}/aerospike:/opt/aerospike/data ports: - - "3000:3000" - - "3001:3001" - - "3002:3002" - - "3003:3003" + - "${AEROSPIKE_SERVICE_PORT}:3000" + - "${AEROSPIKE_FABRIC_PORT}:3001" + - "${AEROSPIKE_HEARTBEAT_PORT}:3002" + - "${AEROSPIKE_INFO_PORT}:3003" networks: - backend @@ -396,16 +425,15 @@ services: caddy: build: ./caddy - ports: - - "80:80" - - "443:443" - - "2015:2015" volumes_from: - applications volumes: - - ./caddy/Caddyfile:/etc/Caddyfile - - ./logs/caddy:/var/log/caddy - - caddy:/root/.caddy + - ${CADDY_CUSTOM_CADDYFILE}:/etc/Caddyfile + - ${CADDY_HOST_LOG_PATH}:/var/log/caddy + - ${DATA_SAVE_PATH}:/root/.caddy + ports: + - "${CADDY_HOST_HTTP_PORT}:80" + - "${CADDY_HOST_HTTPS_PORT}:443" depends_on: - php-fpm networks: @@ -432,7 +460,10 @@ services: ### Adminer Container #################################### adminer: - build: ./adminer + build: + context: ./adminer + args: + - INSTALL_MSSQL=${ADM_INSTALL_MSSQL} ports: - "${ADM_PORT}:8080" depends_on: @@ -447,12 +478,15 @@ services: build: ./pgadmin ports: - "5050:5050" + volumes: + - ${DATA_SAVE_PATH}/pgadmin-backup:/var/lib/pgadmin4/data/storage/pgadmin4 depends_on: - postgres networks: - frontend - backend + ### ElasticSearch Container ################################# elasticsearch: @@ -460,6 +494,15 @@ services: volumes: - elasticsearch-data:/usr/share/elasticsearch/data - elasticsearch-plugins:/usr/share/elasticsearch/plugins + environment: + - cluster.name=laradock-cluster + - bootstrap.memory_lock=true + - "ES_JAVA_OPTS=-Xms256m -Xmx256m" + ulimits: + memlock: + soft: -1 + hard: -1 + mem_limit: 512m ports: - "${ELASTICSEARCH_HOST_HTTP_PORT}:9200" - "${ELASTICSEARCH_HOST_TRANSPORT_PORT}:9300" @@ -469,6 +512,19 @@ services: - frontend - backend + +### Kibana Container ####################################### + + kibana: + build: ./kibana + ports: + - "${KIBANA_HTTP_PORT}:5601" + depends_on: + - elasticsearch + networks: + - frontend + - backend + ### Certbot Container ################################## certbot: @@ -492,6 +548,7 @@ services: - "8025:8025" networks: - frontend + - backend ### Selenium Container ######################################## @@ -555,6 +612,7 @@ services: - proxy2 ### Jenkins ################################################### + jenkins: build: ./jenkins environment: @@ -566,6 +624,33 @@ services: volumes: - ${JENKINS_HOME}:/var/jenkins_home - /var/run/docker.sock:/var/run/docker.sock + networks: + - frontend + - backend + +### Laravel Echo Server ####################################### + laravel-echo-server: + build: + context: ./laravel-echo-server + volumes: + - ./laravel-echo-server/laravel-echo-server.json:/app/laravel-echo-server.json:ro + ports: + - "${LARAVEL_ECHO_SERVER_PORT}:6001" + links: + - redis + networks: + - frontend + - backend + +### AWS EB-CLI #### + aws: + build: + context: ./aws + volumes_from: + - applications + depends_on: + - workspace + tty: true ### Networks Setup ############################################ diff --git a/docker-sync.yml b/docker-sync.yml new file mode 100644 index 00000000..bb70a26e --- /dev/null +++ b/docker-sync.yml @@ -0,0 +1,13 @@ +version: "2" + +options: + verbose: true +syncs: + applications-docker-sync: # name of the intermediary sync volume + compose-dev-file-path: 'docker-compose.sync.yml' # docker-compose override file + + src: '${APPLICATION}' # host source directory + sync_userid: 1000 # giving permissions to www-data user (as defined in nginx and php-fpm Dockerfiles) + sync_strategy: '${DOCKER_SYNC_STRATEGY}' # for osx use 'native_osx', for windows use 'unison' + + sync_excludes: ['laradock', 'ignored_folder_example'] # ignored directories diff --git a/docs/CNAME b/docs/CNAME deleted file mode 100644 index df75fb6b..00000000 --- a/docs/CNAME +++ /dev/null @@ -1 +0,0 @@ -laradock.io \ No newline at end of file diff --git a/docs/contributing/index.html b/docs/contributing/index.html deleted file mode 100644 index 9974ffe4..00000000 --- a/docs/contributing/index.html +++ /dev/null @@ -1,670 +0,0 @@ - - - - - - - - - - - - Contributing - Laradock - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- - - - - -
- - -
- -
-
- - -
- -
-
-

Contributing

- - - -

Your contribution is more than welcome.

- -

I have a Question/Problem

- -

If you have questions about how to use Laradock, please direct your questions to the discussion on Gitter. If you believe your question could help others, then consider opening an Issue (it will be labeled as Question) And you can still seek help on Gitter for it.

- -

I found an Issue

- -

If have an issue or you found a typo in the documentation, you can help us by -opnening an Issue.

- -

Steps to do before opening an Issue:

- -
    -
  1. Before you submit your issue search the archive, maybe your question was already answered couple hours ago (search in the closed Issues as well).

  2. - -
  3. Decide if the Issue belongs to this project or to Docker itself! or even the tool you are using such as Nginx or MongoDB…

  4. -
- -

If your issue appears to be a bug, and hasn’t been reported, then open a new issue.

- -

This Help us to maximize the effort we can spend fixing issues and adding new -features, by not reporting duplicate issues.

- -

I want a Feature

- -

You can request a new feature by submitting an Issue (it will be labeled as Feature Suggestion). If you would like to implement a new feature then consider submitting a Pull Request yourself.

- -

I want to update the Documentation (Site)

- -

Laradock uses Hugo as website generator tool, with the Material Docs theme. You might need to check their docs quickly.

- -

Go the DOCUMENTATION/content and search for the markdown file you want to edit

- -

Note: Every folder represents a section in the sidebar “Menu”. And every page and sidebar has a weight number to show it’s position in the site.

- -

To update the sidebar or add a new section to it, you can edit this DOCUMENTATION/config.toml toml file.

- -
-

The site will be auto-generated in the docs/ folder by Travis CI.

-
- -


- -

To Host the website locally

- -
    -
  1. Install Hugo on your machine.
  2. -
  3. Edit the DOCUMENTATION/content.
  4. -
  5. Delete the /docs folder from the root.
  6. -
  7. After you finish the editing, go to DOCUMENTATION/ and run the hugo command to generate the HTML docs (inside a new /docs folder).
  8. -
- -

How to support new Software (Add new Container)

- -
    -
  • Create folder with the software name.

  • - -
  • Add a Dockerfile, write your code there.

  • - -
  • You may add additional files in the software folder.

  • - -
  • Add the software to the docker-compose.yml file.

  • - -
  • Make sure you follow our commenting style.

  • - -
  • Add the software in the Documentation.

  • -
- -

Edit existing Software (Edit a Container)

- -
    -
  • Open the software (container) folder.

  • - -
  • Edit the files you want to update.

  • - -
  • Note: If you want to edit the base image of the Workspace or the php-fpm Containers, -you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the Laradock repository.

  • - -
  • Make sure to update the Documentation in case you made any changes.

  • -
- -

Pull Request

- -

1. Before Submitting a Pull Request (PR)

- -

Always Test everything and make sure its working:

- -
    -
  • Pull the latest updates (or fork of you don’t have permission)
  • -
  • Before editing anything: - -
      -
    • Test building the container (docker-compose build –no-cache container-name) build with no cache first.
    • -
    • Test running the container with some other containers in real app and see of everything is working fine.
    • -
  • -
  • Now edit the container (edit section by section and test rebuilding the container after every edited section) - -
      -
    • Testing building the container (docker-compose build container-name) with no errors.
    • -
    • Test it in a real App if possible.
    • -
  • -
- -

2. Submitting a PR

- -

Consider the following guidelines:

- -
    -
  • Search GitHub for an open or closed Pull Request that relates to your submission. You don’t want to duplicate efforts.

  • - -
  • Make your changes in a new git branch:

    - -
     git checkout -b my-fix-branch master
    -
  • - -
  • Commit your changes using a descriptive commit message.

  • - -
  • Push your branch to GitHub:

    - -
    git push origin my-fix-branch
    -
  • - -
  • In GitHub, send a pull request to laradock:master.

  • - -
  • If we suggest changes then:

    - -
      -
    • Make the required updates.
    • -
    • Commit your changes to your branch (e.g. my-fix-branch).
    • -
    • Push the changes to your GitHub repository (this will update your Pull Request).
    • -
  • -
- -
-

If the PR gets too outdated we may ask you to rebase and force push to update the PR:

-
- -
git rebase master -i
-git push origin my-fix-branch -f
-
- -

WARNING. Squashing or reverting commits and forced push thereafter may remove GitHub comments on code that were previously made by you and others in your commits.

- -

3. After your PR is merged

- -

After your pull request is merged, you can safely delete your branch and pull the changes from the main (upstream) repository:

- -
    -
  • Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:

    - -
    git push origin --delete my-fix-branch
    -
  • - -
  • Check out the master branch:

    - -
    git checkout master -f
    -
  • - -
  • Delete the local branch:

    - -
    git branch -D my-fix-branch
    -
  • - -
  • Update your master with the latest upstream version:

    - -
    git pull --ff upstream master
    -
  • -
- -


- -

Happy Coding :)

- - - - - -
-
- -
-
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - diff --git a/docs/contributing/index.xml b/docs/contributing/index.xml deleted file mode 100644 index bbd50dd7..00000000 --- a/docs/contributing/index.xml +++ /dev/null @@ -1,196 +0,0 @@ - - - - Contributings on Laradock - http://laradock.io/contributing/index.xml - Recent content in Contributings on Laradock - Hugo -- gohugo.io - en-us - - - - Contributing - http://laradock.io/contributing/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/contributing/ - - -<p>Your contribution is more than welcome.</p> - -<h2 id="i-have-a-question-problem">I have a Question/Problem</h2> - -<p>If you have questions about how to use Laradock, please direct your questions to the discussion on <a href="https://gitter.im/Laradock/laradock">Gitter</a>. If you believe your question could help others, then consider opening an <a href="https://github.com/laradock/laradock/issues">Issue</a> (it will be labeled as <code>Question</code>) And you can still seek help on Gitter for it.</p> - -<h2 id="i-found-an-issue">I found an Issue</h2> - -<p>If have an issue or you found a typo in the documentation, you can help us by -opnening an <a href="https://github.com/laradock/laradock/issues">Issue</a>.</p> - -<p><strong>Steps to do before opening an Issue:</strong></p> - -<ol> -<li><p>Before you submit your issue search the archive, maybe your question was already answered couple hours ago (search in the closed Issues as well).</p></li> - -<li><p>Decide if the Issue belongs to this project or to <a href="https://github.com/docker">Docker</a> itself! or even the tool you are using such as Nginx or MongoDB&hellip;</p></li> -</ol> - -<p>If your issue appears to be a bug, and hasn&rsquo;t been reported, then open a new issue.</p> - -<p><em>This Help us to maximize the effort we can spend fixing issues and adding new -features, by not reporting duplicate issues.</em></p> - -<h2 id="i-want-a-feature">I want a Feature</h2> - -<p>You can request a new feature by submitting an <a href="https://github.com/laradock/laradock/issues">Issue</a> (it will be labeled as <code>Feature Suggestion</code>). If you would like to implement a new feature then consider submitting a Pull Request yourself.</p> - -<h2 id="i-want-to-update-the-documentation-site">I want to update the Documentation (Site)</h2> - -<p>Laradock uses <a href="https://gohugo.io/">Hugo</a> as website generator tool, with the <a href="http://themes.gohugo.io/theme/material-docs/">Material Docs theme</a>. You might need to check their docs quickly.</p> - -<p>Go the <code>DOCUMENTATION/content</code> and search for the markdown file you want to edit</p> - -<p>Note: Every folder represents a section in the sidebar &ldquo;Menu&rdquo;. And every page and sidebar has a <code>weight</code> number to show it&rsquo;s position in the site.</p> - -<p>To update the sidebar or add a new section to it, you can edit this <code>DOCUMENTATION/config.toml</code> toml file.</p> - -<blockquote> -<p>The site will be auto-generated in the <code>docs/</code> folder by <a href="https://travis-ci.org/laradock/laradock/">Travis CI</a>.</p> -</blockquote> - -<p><br></p> - -<h3 id="to-host-the-website-locally">To Host the website locally</h3> - -<ol> -<li>Install <a href="https://gohugo.io/">Hugo</a> on your machine.</li> -<li>Edit the <code>DOCUMENTATION/content</code>.</li> -<li>Delete the <code>/docs</code> folder from the root.</li> -<li>After you finish the editing, go to <code>DOCUMENTATION/</code> and run the <code>hugo</code> command to generate the HTML docs (inside a new <code>/docs</code> folder).</li> -</ol> - -<h2 id="how-to-support-new-software-add-new-container">How to support new Software (Add new Container)</h2> - -<ul> -<li><p>Create folder with the software name.</p></li> - -<li><p>Add a <code>Dockerfile</code>, write your code there.</p></li> - -<li><p>You may add additional files in the software folder.</p></li> - -<li><p>Add the software to the <code>docker-compose.yml</code> file.</p></li> - -<li><p>Make sure you follow our commenting style.</p></li> - -<li><p>Add the software in the <code>Documentation</code>.</p></li> -</ul> - -<h2 id="edit-existing-software-edit-a-container">Edit existing Software (Edit a Container)</h2> - -<ul> -<li><p>Open the software (container) folder.</p></li> - -<li><p>Edit the files you want to update.</p></li> - -<li><p><strong>Note:</strong> If you want to edit the base image of the <code>Workspace</code> or the <code>php-fpm</code> Containers, -you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the Laradock repository.</p></li> - -<li><p>Make sure to update the <code>Documentation</code> in case you made any changes.</p></li> -</ul> - -<h2 id="pull-request">Pull Request</h2> - -<h3 id="1-before-submitting-a-pull-request-pr">1. Before Submitting a Pull Request (PR)</h3> - -<p>Always Test everything and make sure its working:</p> - -<ul> -<li>Pull the latest updates (or fork of you don’t have permission)</li> -<li>Before editing anything: - -<ul> -<li>Test building the container (docker-compose build &ndash;no-cache container-name) build with no cache first.</li> -<li>Test running the container with some other containers in real app and see of everything is working fine.</li> -</ul></li> -<li>Now edit the container (edit section by section and test rebuilding the container after every edited section) - -<ul> -<li>Testing building the container (docker-compose build container-name) with no errors.</li> -<li>Test it in a real App if possible.</li> -</ul></li> -</ul> - -<h3 id="2-submitting-a-pr">2. Submitting a PR</h3> - -<p>Consider the following guidelines:</p> - -<ul> -<li><p>Search <a href="https://github.com/laradock/laradock/pulls">GitHub</a> for an open or closed Pull Request that relates to your submission. You don&rsquo;t want to duplicate efforts.</p></li> - -<li><p>Make your changes in a new git branch:</p> - -<pre><code class="language-shell"> git checkout -b my-fix-branch master -</code></pre></li> - -<li><p>Commit your changes using a descriptive commit message.</p></li> - -<li><p>Push your branch to GitHub:</p> - -<pre><code class="language-shell">git push origin my-fix-branch -</code></pre></li> - -<li><p>In GitHub, send a pull request to <code>laradock:master</code>.</p></li> - -<li><p>If we suggest changes then:</p> - -<ul> -<li>Make the required updates.</li> -<li>Commit your changes to your branch (e.g. <code>my-fix-branch</code>).</li> -<li>Push the changes to your GitHub repository (this will update your Pull Request).</li> -</ul></li> -</ul> - -<blockquote> -<p>If the PR gets too outdated we may ask you to rebase and force push to update the PR:</p> -</blockquote> - -<pre><code class="language-shell">git rebase master -i -git push origin my-fix-branch -f -</code></pre> - -<p><em>WARNING. Squashing or reverting commits and forced push thereafter may remove GitHub comments on code that were previously made by you and others in your commits.</em></p> - -<h3 id="3-after-your-pr-is-merged">3. After your PR is merged</h3> - -<p>After your pull request is merged, you can safely delete your branch and pull the changes from the main (upstream) repository:</p> - -<ul> -<li><p>Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:</p> - -<pre><code class="language-shell">git push origin --delete my-fix-branch -</code></pre></li> - -<li><p>Check out the master branch:</p> - -<pre><code class="language-shell">git checkout master -f -</code></pre></li> - -<li><p>Delete the local branch:</p> - -<pre><code class="language-shell">git branch -D my-fix-branch -</code></pre></li> - -<li><p>Update your master with the latest upstream version:</p> - -<pre><code class="language-shell">git pull --ff upstream master -</code></pre></li> -</ul> - -<p><br></p> - -<h4 id="happy-coding">Happy Coding :)</h4> - - - - - \ No newline at end of file diff --git a/docs/documentation/index.html b/docs/documentation/index.html deleted file mode 100644 index 905dfa10..00000000 --- a/docs/documentation/index.html +++ /dev/null @@ -1,1725 +0,0 @@ - - - - - - - - - - - - Documentation - Laradock - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- - - - - -
- - -
- -
-
- - -
- -
-
-

Documentation

- - - -

- -

List current running Containers

- -
docker ps
-
- -

You can also use the following command if you want to see only this project containers:

- -
docker-compose ps
-
- -


-

- -

Close all running Containers

- -
docker-compose stop
-
- -

To stop single container do:

- -
docker-compose stop {container-name}
-
- -


-

- -

Delete all existing Containers

- -
docker-compose down
-
- -


-

- -

Enter a Container (run commands in a running Container)

- -

1 - First list the current running containers with docker ps

- -

2 - Enter any container using:

- -
docker-compose exec {container-name} bash
-
- -

Example: enter MySQL container

- -
docker-compose exec mysql bash
-
- -

Example: enter to MySQL prompt within MySQL container

- -
docker-compose exec mysql mysql -u homestead -psecret
-
- -

3 - To exit a container, type exit.

- -


-

- -

Edit default container configuration

- -

Open the docker-compose.yml and change anything you want.

- -

Examples:

- -

Change MySQL Database Name:

- -
    environment:
-        MYSQL_DATABASE: laradock
-    ...
-
- -

Change Redis default port to 1111:

- -
    ports:
-        - "1111:6379"
-    ...
-
- -


-

- -

Edit a Docker Image

- -

1 - Find the Dockerfile of the image you want to edit, -
-example for mysql it will be mysql/Dockerfile.

- -

2 - Edit the file the way you want.

- -

3 - Re-build the container:

- -
docker-compose build mysql
-
- -

More info on Containers rebuilding here.

- -


-

- -

Build/Re-build Containers

- -

If you do any change to any Dockerfile make sure you run this command, for the changes to take effect:

- -
docker-compose build
-
- -

Optionally you can specify which container to rebuild (instead of rebuilding all the containers):

- -
docker-compose build {container-name}
-
- -

You might use the --no-cache option if you want full rebuilding (docker-compose build --no-cache {container-name}).

- -


-

- -

Add more Software (Docker Images)

- -

To add an image (software), just edit the docker-compose.yml and add your container details, to do so you need to be familiar with the docker compose file syntax.

- -


-

- -

View the Log files

- -

The NGINX Log file is stored in the logs/nginx directory.

- -

However to view the logs of all the other containers (MySQL, PHP-FPM,…) you can run this:

- -
docker logs {container-name}
-
- -

More options

- -
docker logs -f {container-name}
-
- -


-

- -

- -

Install PHP Extensions

- -

Before installing PHP extensions, you have to decide whether you need for the FPM or CLI because each lives on a different container, if you need it for both you have to edit both containers.

- -

The PHP-FPM extensions should be installed in php-fpm/Dockerfile-XX. (replace XX with your default PHP version number). -
-The PHP-CLI extensions should be installed in workspace/Dockerfile.

- -


-

- -

Change the (PHP-FPM) Version

- -

By default PHP-FPM 7.0 is running.

- -
-

The PHP-FPM is responsible of serving your application code, you don’t have to change the PHP-CLI version if you are planning to run your application on different PHP-FPM version.

-
- -

A) Switch from PHP 7.0 to PHP 5.6

- -

1 - Open the docker-compose.yml.

- -

2 - Search for Dockerfile-70 in the PHP container section.

- -

3 - Change the version number, by replacing Dockerfile-70 with Dockerfile-56, like this:

- -
    php-fpm:
-        build:
-            context: ./php-fpm
-            dockerfile: Dockerfile-70
-    ...
-
- -

4 - Finally rebuild the container

- -
docker-compose build php-fpm
-
- -
-

For more details about the PHP base image, visit the official PHP docker images.

-
- -

B) Switch from PHP 7.0 or 5.6 to PHP 5.5

- -

We do not natively support PHP 5.5 anymore, but you can get it in few steps:

- -

1 - Clone https://github.com/laradock/php-fpm.

- -

3 - Rename Dockerfile-56 to Dockerfile-55.

- -

3 - Edit the file FROM php:5.6-fpm to FROM php:5.5-fpm.

- -

4 - Build an image from Dockerfile-55.

- -

5 - Open the docker-compose.yml file.

- -

6 - Point php-fpm to your Dockerfile-55 file.

- -


-

- -

Change the PHP-CLI Version

- -

By default PHP-CLI 7.0 is running.

- -
-

Note: it’s not very essential to edit the PHP-CLI version. The PHP-CLI is only used for the Artisan Commands & Composer. It doesn’t serve your Application code, this is the PHP-FPM job.

-
- -

The PHP-CLI is installed in the Workspace container. To change the PHP-CLI version you need to edit the workspace/Dockerfile.

- -

Right now you have to manually edit the Dockerfile or create a new one like it’s done for the PHP-FPM. (consider contributing).

- -


-

- -

Install xDebug

- -

1 - First install xDebug in the Workspace and the PHP-FPM Containers: -
-a) open the docker-compose.yml file -
-b) search for the INSTALL_XDEBUG argument under the Workspace Container -
-c) set it to true -
-d) search for the INSTALL_XDEBUG argument under the PHP-FPM Container -
-e) set it to true

- -

It should be like this:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - INSTALL_XDEBUG=true
-    ...
-    php-fpm:
-        build:
-            context: ./php-fpm
-            args:
-                - INSTALL_XDEBUG=true
-    ...
-
- -

2 - Re-build the containers docker-compose build workspace php-fpm

- -

3 - Open laradock/workspace/xdebug.ini and/or laradock/php-fpm/xdebug.ini and enable at least the following configurations:

- -
xdebug.remote_autostart=1
-xdebug.remote_enable=1
-xdebug.remote_connect_back=1
-
- -

For information on how to configure xDebug with your IDE and work it out, check this Repository.

- -


-

- -

Start/Stop xDebug:

- -

By installing xDebug, you are enabling it to run on startup by default.

- -

To control the behavior of xDebug (in the php-fpm Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose):

- -
    -
  • Stop xDebug from running by default: .php-fpm/xdebug stop.
  • -
  • Start xDebug by default: .php-fpm/xdebug start.
  • -
  • See the status: .php-fpm/xdebug status.
  • -
- -

Note: If .php-fpm/xdebug doesn’t execute and gives Permission Denied error the problem can be that file xdebug doesn’t have execution access. This can be fixed by running chmod command with desired access permissions.

- -


-

- -

Install Deployer (Deployment tool for PHP)

- -

1 - Open the docker-compose.yml file -
-2 - Search for the INSTALL_DEPLOYER argument under the Workspace Container -
-3 - Set it to true -

- -

It should be like this:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - INSTALL_DEPLOYER=true
-    ...
-
- -

4 - Re-build the containers docker-compose build workspace

- -

Deployer Documentation Here

- -


-

- -


-

- -

Prepare Laradock for Production

- -

It’s recommended for production to create a custom docker-compose.yml file. For that reason, Laradock is shipped with production-docker-compose.yml which should contain only the containers you are planning to run on production (usage example: docker-compose -f production-docker-compose.yml up -d nginx mysql redis ...).

- -

Note: The Database (MySQL/MariaDB/…) ports should not be forwarded on production, because Docker will automatically publish the port on the host, which is quite insecure, unless specifically told not to. So make sure to remove these lines:

- -
ports:
-    - "3306:3306"
-
- -

To learn more about how Docker publishes ports, please read this excellent post on the subject.

- -


-

- -

Setup Laravel and Docker on Digital Ocean

- -

Full Guide Here

- -


-

- -

- -

Install Laravel from a Docker Container

- -

1 - First you need to enter the Workspace Container.

- -

2 - Install Laravel.

- -

Example using Composer

- -
composer create-project laravel/laravel my-cool-app "5.2.*"
-
- -
-

We recommend using composer create-project instead of the Laravel installer, to install Laravel.

-
- -

For more about the Laravel installation click here.

- -

3 - Edit docker-compose.yml to Map the new application path:

- -

By default, Laradock assumes the Laravel application is living in the parent directory of the laradock folder.

- -

Since the new Laravel application is in the my-cool-app folder, we need to replace ../:/var/www with ../my-cool-app/:/var/www, as follow:

- -
    application:
-		 image: tianon/true
-        volumes:
-            - ../my-cool-app/:/var/www
-    ...
-
- -

4 - Go to that folder and start working..

- -
cd my-cool-app
-
- -

5 - Go back to the Laradock installation steps to see how to edit the .env file.

- -


-

- -

Run Artisan Commands

- -

You can run artisan commands and many other Terminal commands from the Workspace container.

- -

1 - Make sure you have the workspace container running.

- -
docker-compose up -d workspace // ..and all your other containers
-
- -

2 - Find the Workspace container name:

- -
docker-compose ps
-
- -

3 - Enter the Workspace container:

- -
docker-compose exec workspace bash
-
- -

Add --user=laradock (example docker-compose exec --user=laradock workspace bash) to have files created as your host’s user.

- -

4 - Run anything you want :)

- -
php artisan
-
- -
Composer update
-
- -
phpunit
-
- -


-

- -

Run Laravel Queue Worker

- -

1 - First add php-worker container. It will be similar as like PHP-FPM Container. -
-a) open the docker-compose.yml file -
-b) add a new service container by simply copy-paste this section below PHP-FPM container

- -
    php-worker:
-      build:
-        context: ./php-fpm
-        dockerfile: Dockerfile-70 # or Dockerfile-56, choose your PHP-FPM container setting
-      volumes_from:
-        - applications
-      command: php artisan queue:work
-
- -

2 - Start everything up

- -
docker-compose up -d php-worker
-
- -


-

- -

Use Redis

- -

1 - First make sure you run the Redis Container (redis) with the docker-compose up command.

- -
docker-compose up -d redis
-
- -

2 - Open your Laravel’s .env file and set the REDIS_HOST to redis

- -
REDIS_HOST=redis
-
- -

If you don’t find the REDIS_HOST variable in your .env file. Go to the database configuration file config/database.php and replace the default 127.0.0.1 IP with redis for Redis like this:

- -
'redis' => [
-    'cluster' => false,
-    'default' => [
-        'host'     => 'redis',
-        'port'     => 6379,
-        'database' => 0,
-    ],
-],
-
- -

3 - To enable Redis Caching and/or for Sessions Management. Also from the .env file set CACHE_DRIVER and SESSION_DRIVER to redis instead of the default file.

- -
CACHE_DRIVER=redis
-SESSION_DRIVER=redis
-
- -

4 - Finally make sure you have the predis/predis package (~1.0) installed via Composer:

- -
composer require predis/predis:^1.0
-
- -

5 - You can manually test it from Laravel with this code:

- -
\Cache::store('redis')->put('Laradock', 'Awesome', 10);
-
- -


-

- -

Use Mongo

- -

1 - First install mongo in the Workspace and the PHP-FPM Containers: -
-a) open the docker-compose.yml file -
-b) search for the INSTALL_MONGO argument under the Workspace Container -
-c) set it to true -
-d) search for the INSTALL_MONGO argument under the PHP-FPM Container -
-e) set it to true

- -

It should be like this:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - INSTALL_MONGO=true
-    ...
-    php-fpm:
-        build:
-            context: ./php-fpm
-            args:
-                - INSTALL_MONGO=true
-    ...
-
- -

2 - Re-build the containers docker-compose build workspace php-fpm

- -

3 - Run the MongoDB Container (mongo) with the docker-compose up command.

- -
docker-compose up -d mongo
-
- -

4 - Add the MongoDB configurations to the config/database.php configuration file:

- -
'connections' => [
-
-    'mongodb' => [
-        'driver'   => 'mongodb',
-        'host'     => env('DB_HOST', 'localhost'),
-        'port'     => env('DB_PORT', 27017),
-        'database' => env('DB_DATABASE', 'database'),
-        'username' => '',
-        'password' => '',
-        'options'  => [
-            'database' => '',
-        ]
-    ],
-
-	// ...
-
-],
-
- -

5 - Open your Laravel’s .env file and update the following variables:

- -
    -
  • set the DB_HOST to your mongo.
  • -
  • set the DB_PORT to 27017.
  • -
  • set the DB_DATABASE to database.
  • -
- -

6 - Finally make sure you have the jenssegers/mongodb package installed via Composer and its Service Provider is added.

- -
composer require jenssegers/mongodb
-
- -

More details about this here.

- -

7 - Test it:

- -
    -
  • First let your Models extend from the Mongo Eloquent Model. Check the documentation.
  • -
  • Enter the Workspace Container.
  • -
  • Migrate the Database php artisan migrate.
  • -
- -


-

- -

Use PhpMyAdmin

- -

1 - Run the phpMyAdmin Container (phpmyadmin) with the docker-compose up command. Example:

- -
# use with mysql
-docker-compose up -d mysql phpmyadmin
-
-# use with mariadb
-docker-compose up -d mariadb phpmyadmin
-
- -

2 - Open your browser and visit the localhost on port 8080: http://localhost:8080

- -


-

- -

Use Adminer

- -

1 - Run the Adminer Container (adminer) with the docker-compose up command. Example:

- -
docker-compose up -d adminer  
-
- -

2 - Open your browser and visit the localhost on port 8080: http://localhost:8080

- -


-

- -

Use PgAdmin

- -

1 - Run the pgAdmin Container (pgadmin) with the docker-compose up command. Example:

- -
docker-compose up -d postgres pgadmin
-
- -

2 - Open your browser and visit the localhost on port 5050: http://localhost:5050

- -


-

- -

Use Beanstalkd

- -

1 - Run the Beanstalkd Container:

- -
docker-compose up -d beanstalkd
-
- -

2 - Configure Laravel to connect to that container by editing the config/queue.php config file.

- -

a. first set beanstalkd as default queue driver -b. set the queue host to beanstalkd : QUEUE_HOST=beanstalkd

- -

beanstalkd is now available on default port 11300.

- -

3 - Require the dependency package pda/pheanstalk using composer.

- -

Optionally you can use the Beanstalkd Console Container to manage your Queues from a web interface.

- -

1 - Run the Beanstalkd Console Container:

- -
docker-compose up -d beanstalkd-console
-
- -

2 - Open your browser and visit http://localhost:2080/

- -

3 - Add the server

- -
    -
  • Host: beanstalkd
  • -
  • Port: 11300
  • -
- -

4 - Done.

- -


-

- -

Use ElasticSearch

- -

1 - Run the ElasticSearch Container (elasticsearch) with the docker-compose up command:

- -
docker-compose up -d elasticsearch
-
- -

2 - Open your browser and visit the localhost on port 9200: http://localhost:9200

- -

Install ElasticSearch Plugin

- -

1 - Install the ElasticSearch plugin like delete-by-query.

- -
docker exec {container-name} /usr/share/elasticsearch/bin/plugin install delete-by-query
-
- -

2 - Restart elasticsearch container

- -
docker restart {container-name}
-
- -


-

- -

Use Selenium

- -

1 - Run the Selenium Container (selenium) with the docker-compose up command. Example:

- -
docker-compose up -d selenium
-
- -

2 - Open your browser and visit the localhost on port 4444 at the following URL: http://localhost:4444/wd/hub

- -


-

- -

Use RethinkDB

- -

The RethinkDB is an open-source Database for Real-time Web (RethinkDB). -A package (Laravel RethinkDB) is being developed and was released a version for Laravel 5.2 (experimental).

- -

1 - Run the RethinkDB Container (rethinkdb) with the docker-compose up command.

- -
docker-compose up -d rethinkdb
-
- -

2 - Access the RethinkDB Administration Console http://localhost:8090/#tables for create a database called database.

- -

3 - Add the RethinkDB configurations to the config/database.php configuration file:

- -
'connections' => [
-
-	'rethinkdb' => [
-		'name'      => 'rethinkdb',
-		'driver'    => 'rethinkdb',
-		'host'      => env('DB_HOST', 'rethinkdb'),
-		'port'      => env('DB_PORT', 28015),
-		'database'  => env('DB_DATABASE', 'test'),
-	]
-
-	// ...
-
-],
-
- -

4 - Open your Laravel’s .env file and update the following variables:

- -
    -
  • set the DB_CONNECTION to your rethinkdb.
  • -
  • set the DB_HOST to rethinkdb.
  • -
  • set the DB_PORT to 28015.
  • -
  • set the DB_DATABASE to database.
  • -
- -


-

- -

Use Minio

- -

1 - Configure Minio: - - On the workspace container, change INSTALL_MC to true to get the client - - Set MINIO_ACCESS_KEY and MINIO_ACCESS_SECRET if you wish to set proper keys

- -

2 - Run the Minio Container (minio) with the docker-compose up command. Example:

- -
docker-compose up -d minio
-
- -

3 - Open your browser and visit the localhost on port 9000 at the following URL: http://localhost:9000

- -

4 - Create a bucket either through the webui or using the mc client:

- -
  mc mb minio/bucket
-
- -

5 - When configuring your other clients use the following details:

- -
  S3_HOST=http://minio
-  S3_KEY=access
-  S3_SECRET=secretkey
-  S3_REGION=us-east-1
-  S3_BUCKET=bucket
-
- -


-

- -


-

- -

Install CodeIgniter

- -

To install CodeIgniter 3 on Laradock all you have to do is the following simple steps:

- -

1 - Open the docker-compose.yml file.

- -

2 - Change CODEIGNITER=false to CODEIGNITER=true.

- -

3 - Re-build your PHP-FPM Container docker-compose build php-fpm.

- -


-

- -

Miscellaneous

- -


-

- -

Change the timezone

- -

To change the timezone for the workspace container, modify the TZ build argument in the Docker Compose file to one in the TZ database.

- -

For example, if I want the timezone to be New York:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - TZ=America/New_York
-    ...
-
- -

We also recommend setting the timezone in Laravel.

- -


-

- -

Adding cron jobs

- -

You can add your cron jobs to workspace/crontab/root after the php artisan line.

- -
* * * * * php /var/www/artisan schedule:run >> /dev/null 2>&1
-
-# Custom cron
-* * * * * root echo "Every Minute" > /var/log/cron.log 2>&1
-
- -

Make sure you change the timezone if you don’t want to use the default (UTC).

- -


-

- -

Access workspace via ssh

- -

You can access the workspace container through localhost:2222 by setting the INSTALL_WORKSPACE_SSH build argument to true.

- -

To change the default forwarded port for ssh:

- -
    workspace:
-		ports:
-			- "2222:22" # Edit this line
-    ...
-
- -


-

- -

MySQL access from host

- -

You can forward the MySQL/MariaDB port to your host by making sure these lines are added to the mysql or mariadb section of the docker-compose.yml or in your environment specific Compose file.

- -
ports:
-    - "3306:3306"
-
- -


-

- -

MySQL root access

- -

The default username and password for the root MySQL user are root and root.

- -

1 - Enter the MySQL container: docker-compose exec mysql bash.

- -

2 - Enter mysql: mysql -uroot -proot for non root access use mysql -uhomestead -psecret.

- -

3 - See all users: SELECT User FROM mysql.user;

- -

4 - Run any commands show databases, show tables, select * from......

- -


-

- -

Change MySQL port

- -

Modify the mysql/my.cnf file to set your port number, 1234 is used as an example.

- -
[mysqld]
-port=1234
-
- -

If you need MySQL access from your host, do not forget to change the internal port number ("3306:3306" -> "3306:1234") in the docker-compose configuration file.

- -


-

- -

Use custom Domain (instead of the Docker IP)

- -

Assuming your custom domain is laravel.dev

- -

1 - Open your /etc/hosts file and map your localhost address 127.0.0.1 to the laravel.dev domain, by adding the following:

- -
127.0.0.1    laravel.dev
-
- -

2 - Open your browser and visit {http://laravel.dev}

- -

Optionally you can define the server name in the NGINX configuration file, like this:

- -
server_name laravel.dev;
-
- -


-

- -

Enable Global Composer Build Install

- -

Enabling Global Composer Install during the build for the container allows you to get your composer requirements installed and available in the container after the build is done.

- -

1 - Open the docker-compose.yml file

- -

2 - Search for the COMPOSER_GLOBAL_INSTALL argument under the Workspace Container and set it to true

- -

It should be like this:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - COMPOSER_GLOBAL_INSTALL=true
-    ...
-
- -

3 - Now add your dependencies to workspace/composer.json

- -

4 - Re-build the Workspace Container docker-compose build workspace

- -


-

- -

Install Prestissimo

- -

Prestissimo is a plugin for composer which enables parallel install functionality.

- -

1 - Enable Running Global Composer Install during the Build:

- -

Click on this Enable Global Composer Build Install and do steps 1 and 2 only then continue here.

- -

2 - Add prestissimo as requirement in Composer:

- -

a - Now open the workspace/composer.json file

- -

b - Add "hirak/prestissimo": "^0.3" as requirement

- -

c - Re-build the Workspace Container docker-compose build workspace

- -


-

- -

Install Node + NVM

- -

To install NVM and NodeJS in the Workspace container

- -

1 - Open the docker-compose.yml file

- -

2 - Search for the INSTALL_NODE argument under the Workspace Container and set it to true

- -

It should be like this:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - INSTALL_NODE=true
-    ...
-
- -

3 - Re-build the container docker-compose build workspace

- -


-

- -

Install Node + YARN

- -

Yarn is a new package manager for JavaScript. It is so faster than npm, which you can find here.To install NodeJS and Yarn in the Workspace container:

- -

1 - Open the docker-compose.yml file

- -

2 - Search for the INSTALL_NODE and INSTALL_YARN argument under the Workspace Container and set it to true

- -

It should be like this:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - INSTALL_NODE=true
-                - INSTALL_YARN=true
-    ...
-
- -

3 - Re-build the container docker-compose build workspace

- -


-

- -

Install Linuxbrew

- -

Linuxbrew is a package manager for Linux. It is the Linux version of MacOS Homebrew and can be found here. To install Linuxbrew in the Workspace container:

- -

1 - Open the docker-compose.yml file

- -

2 - Search for the INSTALL_LINUXBREW argument under the Workspace Container and set it to true

- -

It should be like this:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - INSTALL_LINUXBREW=true
-    ...
-
- -

3 - Re-build the container docker-compose build workspace

- -


- -

- -

Common Terminal Aliases

- -

When you start your docker container, Laradock will copy the aliases.sh file located in the laradock/workspace directory and add sourcing to the container ~/.bashrc file.

- -

You are free to modify the aliases.sh as you see fit, adding your own aliases (or function macros) to suit your requirements.

- -


-

- -

Install Aerospike extension

- -

1 - First install aerospike in the Workspace and the PHP-FPM Containers: -
-a) open the docker-compose.yml file -
-b) search for the INSTALL_AEROSPIKE_EXTENSION argument under the Workspace Container -
-c) set it to true -
-d) search for the INSTALL_AEROSPIKE_EXTENSION argument under the PHP-FPM Container -
-e) set it to true

- -

It should be like this:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - INSTALL_AEROSPIKE_EXTENSION=true
-    ...
-    php-fpm:
-        build:
-            context: ./php-fpm
-            args:
-                - INSTALL_AEROSPIKE_EXTENSION=true
-    ...
-
- -

2 - Re-build the containers docker-compose build workspace php-fpm

- -


-

- -

Install Laravel Envoy (Envoy Task Runner)

- -

1 - Open the docker-compose.yml file -
-2 - Search for the INSTALL_LARAVEL_ENVOY argument under the Workspace Container -
-3 - Set it to true -

- -

It should be like this:

- -
    workspace:
-        build:
-            context: ./workspace
-            args:
-                - INSTALL_LARAVEL_ENVOY=true
-    ...
-
- -

4 - Re-build the containers docker-compose build workspace

- -

Laravel Envoy Documentation Here

- -


-

- -

PHPStorm Debugging Guide

- -

Remote debug Laravel web and phpunit tests.

- -

Debugging Guide Here

- -


-

- -

Keep track of your Laradock changes

- -
    -
  1. Fork the Laradock repository.
  2. -
  3. Use that fork as a submodule.
  4. -
  5. Commit all your changes to your fork.
  6. -
  7. Pull new stuff from the main repository from time to time.
  8. -
- -


-

- -

Upgrading Laradock

- -

Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requires upgrading Laradock from v3.* to v4.*:

- -
    -
  1. Stop the docker VM docker-machine stop {default}
  2. -
  3. Install Docker for Mac or Windows.
  4. -
  5. Upgrade Laradock to v4.*.* (git pull origin master)
  6. -
  7. Use Laradock as you used to do: docker-compose up -d nginx mysql.
  8. -
- -

Note: If you face any problem with the last step above: rebuild all your containers -docker-compose build --no-cache -“Warning Containers Data might be lost!”

- -


-

- -

Improve speed on MacOS

- -

Sharing code into Docker containers with osxfs have very poor performance compared to Linux. Likely there are some workarounds:

- -

Workaround A: using dinghy

- -

Dinghy creates its own VM using docker-machine, it will not modify your existing docker-machine VMs.

- -

Quick Setup giude, (we recommend you check their docs)

- -

1) brew tap codekitchen/dinghy

- -

2) brew install dinghy

- -

3) dinghy create --provider virtualbox (must have virtualbox installed, but they support other providers if you prefer)

- -

4) after the above command is done it will display some env variables, copy them to the bash profile or zsh or.. (this will instruct docker to use the server running inside the VM)

- -

5) docker-compose up ...

- -

Workaround B: using d4m-nfs

- -

D4m-nfs automatically mount NFS volume instead of osxfs one.

- -

1) Update the Docker [File Sharing] preferences:

- -

Click on the Docker Icon > Preferences > (remove everything form the list except /tmp).

- -

2) Restart Docker.

- -

3) Clone the d4m-nfs repository to your home directory.

- -
git clone https://github.com/IFSight/d4m-nfs ~/d4m-nfs
-
- -

4) Create (or edit) the file ~/d4m-nfs/etc/d4m-nfs-mounts.txt, and write the follwing configuration in it:

- -
/Users:/Users
-
- -

5) Create (or edit) the file /etc/exports, make sure it exists and is empty. (There may be collisions if you come from Vagrant or if you already executed the d4m-nfs.sh script before).

- -

6) Run the d4m-nfs.sh script (might need Sudo):

- -
~/d4m-nfs/d4m-nfs.sh
-
- -

That’s it! Run your containers.. Example:

- -
docker-compose up ...
-
- -

Note: If you faced any errors, try restarting Docker, and make sure you have no spaces in the d4m-nfs-mounts.txt file, and your /etc/exports file is clear.

- -

Other good workarounds:

- - - -

More details about this issue here.

- -


-

- -

Common Problems

- -

Here’s a list of the common problems you might face, and the possible solutions.

- -


- -

I see a blank (white) page instead of the Laravel ‘Welcome’ page!

- -

Run the following command from the Laravel root directory:

- -
sudo chmod -R 777 storage bootstrap/cache
-
- -


- -

I see “Welcome to nginx” instead of the Laravel App!

- -

Use http://127.0.0.1 instead of http://localhost in your browser.

- -


- -

I see an error message containing address already in use or port is already allocated

- -

Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in apache/httpd service or other development tools you have installed.

- -


- -

I get NGINX error 404 Not Found on Windows.

- -
    -
  1. Go to docker Settings on your Windows machine.
  2. -
  3. Click on the Shared Drives tab and check the drive that contains your project files.
  4. -
  5. Enter your windows username and password.
  6. -
  7. Go to the reset tab and click restart docker.
  8. -
- -


- -

The time in my services does not match the current time

- -
    -
  1. Make sure you’ve changed the timezone.
  2. -
  3. Stop and rebuild the containers (docker-compose up -d --build <services>)
  4. -
- -


- -

I get MySQL connection refused

- -

This error sometimes happens because your Laravel application isn’t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:

- -
    -
  • Option A - -
      -
    1. Check your running Laravel application IP by dumping Request::ip() variable using dd(Request::ip()) anywhere on your application. The result is the IP of your Laravel container.
    2. -
    3. Change the DB_HOST variable on env with the IP that you received from previous step.
    4. -
  • -
  • Option B - -
      -
    1. Change the DB_HOST value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as mysql
    2. -
  • -
- - - - - -
-
- -
-
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - diff --git a/docs/documentation/index.xml b/docs/documentation/index.xml deleted file mode 100644 index f1db1822..00000000 --- a/docs/documentation/index.xml +++ /dev/null @@ -1,1251 +0,0 @@ - - - - Documentations on Laradock - http://laradock.io/documentation/index.xml - Recent content in Documentations on Laradock - Hugo -- gohugo.io - en-us - - - - Documentation - http://laradock.io/documentation/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/documentation/ - - -<p><a name="List-current-running-Containers"></a></p> - -<h2 id="list-current-running-containers">List current running Containers</h2> - -<pre><code class="language-bash">docker ps -</code></pre> - -<p>You can also use the following command if you want to see only this project containers:</p> - -<pre><code class="language-bash">docker-compose ps -</code></pre> - -<p><br> -<a name="Close-all-running-Containers"></a></p> - -<h2 id="close-all-running-containers">Close all running Containers</h2> - -<pre><code class="language-bash">docker-compose stop -</code></pre> - -<p>To stop single container do:</p> - -<pre><code class="language-bash">docker-compose stop {container-name} -</code></pre> - -<p><br> -<a name="Delete-all-existing-Containers"></a></p> - -<h2 id="delete-all-existing-containers">Delete all existing Containers</h2> - -<pre><code class="language-bash">docker-compose down -</code></pre> - -<p><br> -<a name="Enter-Container"></a></p> - -<h2 id="enter-a-container-run-commands-in-a-running-container">Enter a Container (run commands in a running Container)</h2> - -<p>1 - First list the current running containers with <code>docker ps</code></p> - -<p>2 - Enter any container using:</p> - -<pre><code class="language-bash">docker-compose exec {container-name} bash -</code></pre> - -<p><em>Example: enter MySQL container</em></p> - -<pre><code class="language-bash">docker-compose exec mysql bash -</code></pre> - -<p><em>Example: enter to MySQL prompt within MySQL container</em></p> - -<pre><code class="language-bash">docker-compose exec mysql mysql -u homestead -psecret -</code></pre> - -<p>3 - To exit a container, type <code>exit</code>.</p> - -<p><br> -<a name="Edit-Container"></a></p> - -<h2 id="edit-default-container-configuration">Edit default container configuration</h2> - -<p>Open the <code>docker-compose.yml</code> and change anything you want.</p> - -<p>Examples:</p> - -<p>Change MySQL Database Name:</p> - -<pre><code class="language-yml"> environment: - MYSQL_DATABASE: laradock - ... -</code></pre> - -<p>Change Redis default port to 1111:</p> - -<pre><code class="language-yml"> ports: - - &quot;1111:6379&quot; - ... -</code></pre> - -<p><br> -<a name="Edit-a-Docker-Image"></a></p> - -<h2 id="edit-a-docker-image">Edit a Docker Image</h2> - -<p>1 - Find the <code>Dockerfile</code> of the image you want to edit, -<br> -example for <code>mysql</code> it will be <code>mysql/Dockerfile</code>.</p> - -<p>2 - Edit the file the way you want.</p> - -<p>3 - Re-build the container:</p> - -<pre><code class="language-bash">docker-compose build mysql -</code></pre> - -<p>More info on Containers rebuilding <a href="#Build-Re-build-Containers">here</a>.</p> - -<p><br> -<a name="Build-Re-build-Containers"></a></p> - -<h2 id="build-re-build-containers">Build/Re-build Containers</h2> - -<p>If you do any change to any <code>Dockerfile</code> make sure you run this command, for the changes to take effect:</p> - -<pre><code class="language-bash">docker-compose build -</code></pre> - -<p>Optionally you can specify which container to rebuild (instead of rebuilding all the containers):</p> - -<pre><code class="language-bash">docker-compose build {container-name} -</code></pre> - -<p>You might use the <code>--no-cache</code> option if you want full rebuilding (<code>docker-compose build --no-cache {container-name}</code>).</p> - -<p><br> -<a name="Add-Docker-Images"></a></p> - -<h2 id="add-more-software-docker-images">Add more Software (Docker Images)</h2> - -<p>To add an image (software), just edit the <code>docker-compose.yml</code> and add your container details, to do so you need to be familiar with the <a href="https://docs.docker.com/compose/compose-file/">docker compose file syntax</a>.</p> - -<p><br> -<a name="View-the-Log-files"></a></p> - -<h2 id="view-the-log-files">View the Log files</h2> - -<p>The NGINX Log file is stored in the <code>logs/nginx</code> directory.</p> - -<p>However to view the logs of all the other containers (MySQL, PHP-FPM,&hellip;) you can run this:</p> - -<pre><code class="language-bash">docker logs {container-name} -</code></pre> - -<p>More <a href="https://docs.docker.com/compose/reference/logs/">options</a></p> - -<pre><code class="language-bash">docker logs -f {container-name} -</code></pre> - -<p><br> -<a name="PHP"></a></p> - -<p><a name="Install-PHP-Extensions"></a></p> - -<h2 id="install-php-extensions">Install PHP Extensions</h2> - -<p>Before installing PHP extensions, you have to decide whether you need for the <code>FPM</code> or <code>CLI</code> because each lives on a different container, if you need it for both you have to edit both containers.</p> - -<p>The PHP-FPM extensions should be installed in <code>php-fpm/Dockerfile-XX</code>. <em>(replace XX with your default PHP version number)</em>. -<br> -The PHP-CLI extensions should be installed in <code>workspace/Dockerfile</code>.</p> - -<p><br> -<a name="Change-the-PHP-FPM-Version"></a></p> - -<h2 id="change-the-php-fpm-version">Change the (PHP-FPM) Version</h2> - -<p>By default <strong>PHP-FPM 7.0</strong> is running.</p> - -<blockquote> -<p>The PHP-FPM is responsible of serving your application code, you don&rsquo;t have to change the PHP-CLI version if you are planning to run your application on different PHP-FPM version.</p> -</blockquote> - -<h3 id="a-switch-from-php-7-0-to-php-5-6">A) Switch from PHP <code>7.0</code> to PHP <code>5.6</code></h3> - -<p>1 - Open the <code>docker-compose.yml</code>.</p> - -<p>2 - Search for <code>Dockerfile-70</code> in the PHP container section.</p> - -<p>3 - Change the version number, by replacing <code>Dockerfile-70</code> with <code>Dockerfile-56</code>, like this:</p> - -<pre><code class="language-yml"> php-fpm: - build: - context: ./php-fpm - dockerfile: Dockerfile-70 - ... -</code></pre> - -<p>4 - Finally rebuild the container</p> - -<pre><code class="language-bash">docker-compose build php-fpm -</code></pre> - -<blockquote> -<p>For more details about the PHP base image, visit the <a href="https://hub.docker.com/_/php/">official PHP docker images</a>.</p> -</blockquote> - -<h3 id="b-switch-from-php-7-0-or-5-6-to-php-5-5">B) Switch from PHP <code>7.0</code> or <code>5.6</code> to PHP <code>5.5</code></h3> - -<p>We do not natively support PHP 5.5 anymore, but you can get it in few steps:</p> - -<p>1 - Clone <code>https://github.com/laradock/php-fpm</code>.</p> - -<p>3 - Rename <code>Dockerfile-56</code> to <code>Dockerfile-55</code>.</p> - -<p>3 - Edit the file <code>FROM php:5.6-fpm</code> to <code>FROM php:5.5-fpm</code>.</p> - -<p>4 - Build an image from <code>Dockerfile-55</code>.</p> - -<p>5 - Open the <code>docker-compose.yml</code> file.</p> - -<p>6 - Point <code>php-fpm</code> to your <code>Dockerfile-55</code> file.</p> - -<p><br> -<a name="Change-the-PHP-CLI-Version"></a></p> - -<h2 id="change-the-php-cli-version">Change the PHP-CLI Version</h2> - -<p>By default <strong>PHP-CLI 7.0</strong> is running.</p> - -<blockquote> -<p>Note: it&rsquo;s not very essential to edit the PHP-CLI version. The PHP-CLI is only used for the Artisan Commands &amp; Composer. It doesn&rsquo;t serve your Application code, this is the PHP-FPM job.</p> -</blockquote> - -<p>The PHP-CLI is installed in the Workspace container. To change the PHP-CLI version you need to edit the <code>workspace/Dockerfile</code>.</p> - -<p>Right now you have to manually edit the <code>Dockerfile</code> or create a new one like it&rsquo;s done for the PHP-FPM. (consider contributing).</p> - -<p><br> -<a name="Install-xDebug"></a></p> - -<h2 id="install-xdebug">Install xDebug</h2> - -<p>1 - First install <code>xDebug</code> in the Workspace and the PHP-FPM Containers: -<br> -a) open the <code>docker-compose.yml</code> file -<br> -b) search for the <code>INSTALL_XDEBUG</code> argument under the Workspace Container -<br> -c) set it to <code>true</code> -<br> -d) search for the <code>INSTALL_XDEBUG</code> argument under the PHP-FPM Container -<br> -e) set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_XDEBUG=true - ... - php-fpm: - build: - context: ./php-fpm - args: - - INSTALL_XDEBUG=true - ... -</code></pre> - -<p>2 - Re-build the containers <code>docker-compose build workspace php-fpm</code></p> - -<p>3 - Open <code>laradock/workspace/xdebug.ini</code> and/or <code>laradock/php-fpm/xdebug.ini</code> and enable at least the following configurations:</p> - -<pre><code>xdebug.remote_autostart=1 -xdebug.remote_enable=1 -xdebug.remote_connect_back=1 -</code></pre> - -<p>For information on how to configure xDebug with your IDE and work it out, check this <a href="https://github.com/LarryEitel/laravel-laradock-phpstorm">Repository</a>.</p> - -<p><br> -<a name="Control-xDebug"></a></p> - -<h2 id="start-stop-xdebug">Start/Stop xDebug:</h2> - -<p>By installing xDebug, you are enabling it to run on startup by default.</p> - -<p>To control the behavior of xDebug (in the <code>php-fpm</code> Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose):</p> - -<ul> -<li>Stop xDebug from running by default: <code>.php-fpm/xdebug stop</code>.</li> -<li>Start xDebug by default: <code>.php-fpm/xdebug start</code>.</li> -<li>See the status: <code>.php-fpm/xdebug status</code>.</li> -</ul> - -<p>Note: If <code>.php-fpm/xdebug</code> doesn&rsquo;t execute and gives <code>Permission Denied</code> error the problem can be that file <code>xdebug</code> doesn&rsquo;t have execution access. This can be fixed by running <code>chmod</code> command with desired access permissions.</p> - -<p><br> -<a name="Install-Deployer"></a></p> - -<h2 id="install-deployer-deployment-tool-for-php">Install Deployer (Deployment tool for PHP)</h2> - -<p>1 - Open the <code>docker-compose.yml</code> file -<br> -2 - Search for the <code>INSTALL_DEPLOYER</code> argument under the Workspace Container -<br> -3 - Set it to <code>true</code> -<br></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_DEPLOYER=true - ... -</code></pre> - -<p>4 - Re-build the containers <code>docker-compose build workspace</code></p> - -<p><a href="https://deployer.org/docs"><strong>Deployer Documentation Here</strong></a></p> - -<p><br> -<a name="Production"></a></p> - -<p><br> -<a name="Laradock-for-Production"></a></p> - -<h2 id="prepare-laradock-for-production">Prepare Laradock for Production</h2> - -<p>It&rsquo;s recommended for production to create a custom <code>docker-compose.yml</code> file. For that reason, Laradock is shipped with <code>production-docker-compose.yml</code> which should contain only the containers you are planning to run on production (usage example: <code>docker-compose -f production-docker-compose.yml up -d nginx mysql redis ...</code>).</p> - -<p>Note: The Database (MySQL/MariaDB/&hellip;) ports should not be forwarded on production, because Docker will automatically publish the port on the host, which is quite insecure, unless specifically told not to. So make sure to remove these lines:</p> - -<pre><code>ports: - - &quot;3306:3306&quot; -</code></pre> - -<p>To learn more about how Docker publishes ports, please read <a href="https://fralef.me/docker-and-iptables.html">this excellent post on the subject</a>.</p> - -<p><br> -<a name="Digital-Ocean"></a></p> - -<h2 id="setup-laravel-and-docker-on-digital-ocean">Setup Laravel and Docker on Digital Ocean</h2> - -<h3 id="full-guide-here-https-github-com-laradock-laradock-blob-master-guides-digital-ocean-md"><a href="https://github.com/laradock/laradock/blob/master/_guides/digital_ocean.md">Full Guide Here</a></h3> - -<p><br> -<a name="Laravel"></a></p> - -<p><a name="Install-Laravel"></a></p> - -<h2 id="install-laravel-from-a-docker-container">Install Laravel from a Docker Container</h2> - -<p>1 - First you need to enter the Workspace Container.</p> - -<p>2 - Install Laravel.</p> - -<p>Example using Composer</p> - -<pre><code class="language-bash">composer create-project laravel/laravel my-cool-app &quot;5.2.*&quot; -</code></pre> - -<blockquote> -<p>We recommend using <code>composer create-project</code> instead of the Laravel installer, to install Laravel.</p> -</blockquote> - -<p>For more about the Laravel installation click <a href="https://laravel.com/docs/master#installing-laravel">here</a>.</p> - -<p>3 - Edit <code>docker-compose.yml</code> to Map the new application path:</p> - -<p>By default, Laradock assumes the Laravel application is living in the parent directory of the laradock folder.</p> - -<p>Since the new Laravel application is in the <code>my-cool-app</code> folder, we need to replace <code>../:/var/www</code> with <code>../my-cool-app/:/var/www</code>, as follow:</p> - -<pre><code class="language-yaml"> application: - image: tianon/true - volumes: - - ../my-cool-app/:/var/www - ... -</code></pre> - -<p>4 - Go to that folder and start working..</p> - -<pre><code class="language-bash">cd my-cool-app -</code></pre> - -<p>5 - Go back to the Laradock installation steps to see how to edit the <code>.env</code> file.</p> - -<p><br> -<a name="Run-Artisan-Commands"></a></p> - -<h2 id="run-artisan-commands">Run Artisan Commands</h2> - -<p>You can run artisan commands and many other Terminal commands from the Workspace container.</p> - -<p>1 - Make sure you have the workspace container running.</p> - -<pre><code class="language-bash">docker-compose up -d workspace // ..and all your other containers -</code></pre> - -<p>2 - Find the Workspace container name:</p> - -<pre><code class="language-bash">docker-compose ps -</code></pre> - -<p>3 - Enter the Workspace container:</p> - -<pre><code class="language-bash">docker-compose exec workspace bash -</code></pre> - -<p>Add <code>--user=laradock</code> (example <code>docker-compose exec --user=laradock workspace bash</code>) to have files created as your host&rsquo;s user.</p> - -<p>4 - Run anything you want :)</p> - -<pre><code class="language-bash">php artisan -</code></pre> - -<pre><code class="language-bash">Composer update -</code></pre> - -<pre><code class="language-bash">phpunit -</code></pre> - -<p><br> -<a name="Run-Laravel-Queue-Worker"></a></p> - -<h2 id="run-laravel-queue-worker">Run Laravel Queue Worker</h2> - -<p>1 - First add <code>php-worker</code> container. It will be similar as like PHP-FPM Container. -<br> -a) open the <code>docker-compose.yml</code> file -<br> -b) add a new service container by simply copy-paste this section below PHP-FPM container</p> - -<pre><code class="language-yaml"> php-worker: - build: - context: ./php-fpm - dockerfile: Dockerfile-70 # or Dockerfile-56, choose your PHP-FPM container setting - volumes_from: - - applications - command: php artisan queue:work -</code></pre> - -<p>2 - Start everything up</p> - -<pre><code class="language-bash">docker-compose up -d php-worker -</code></pre> - -<p><br> -<a name="Use-Redis"></a></p> - -<h2 id="use-redis">Use Redis</h2> - -<p>1 - First make sure you run the Redis Container (<code>redis</code>) with the <code>docker-compose up</code> command.</p> - -<pre><code class="language-bash">docker-compose up -d redis -</code></pre> - -<p>2 - Open your Laravel&rsquo;s <code>.env</code> file and set the <code>REDIS_HOST</code> to <code>redis</code></p> - -<pre><code class="language-env">REDIS_HOST=redis -</code></pre> - -<p>If you don&rsquo;t find the <code>REDIS_HOST</code> variable in your <code>.env</code> file. Go to the database configuration file <code>config/database.php</code> and replace the default <code>127.0.0.1</code> IP with <code>redis</code> for Redis like this:</p> - -<pre><code class="language-php">'redis' =&gt; [ - 'cluster' =&gt; false, - 'default' =&gt; [ - 'host' =&gt; 'redis', - 'port' =&gt; 6379, - 'database' =&gt; 0, - ], -], -</code></pre> - -<p>3 - To enable Redis Caching and/or for Sessions Management. Also from the <code>.env</code> file set <code>CACHE_DRIVER</code> and <code>SESSION_DRIVER</code> to <code>redis</code> instead of the default <code>file</code>.</p> - -<pre><code class="language-env">CACHE_DRIVER=redis -SESSION_DRIVER=redis -</code></pre> - -<p>4 - Finally make sure you have the <code>predis/predis</code> package <code>(~1.0)</code> installed via Composer:</p> - -<pre><code class="language-bash">composer require predis/predis:^1.0 -</code></pre> - -<p>5 - You can manually test it from Laravel with this code:</p> - -<pre><code class="language-php">\Cache::store('redis')-&gt;put('Laradock', 'Awesome', 10); -</code></pre> - -<p><br> -<a name="Use-Mongo"></a></p> - -<h2 id="use-mongo">Use Mongo</h2> - -<p>1 - First install <code>mongo</code> in the Workspace and the PHP-FPM Containers: -<br> -a) open the <code>docker-compose.yml</code> file -<br> -b) search for the <code>INSTALL_MONGO</code> argument under the Workspace Container -<br> -c) set it to <code>true</code> -<br> -d) search for the <code>INSTALL_MONGO</code> argument under the PHP-FPM Container -<br> -e) set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_MONGO=true - ... - php-fpm: - build: - context: ./php-fpm - args: - - INSTALL_MONGO=true - ... -</code></pre> - -<p>2 - Re-build the containers <code>docker-compose build workspace php-fpm</code></p> - -<p>3 - Run the MongoDB Container (<code>mongo</code>) with the <code>docker-compose up</code> command.</p> - -<pre><code class="language-bash">docker-compose up -d mongo -</code></pre> - -<p>4 - Add the MongoDB configurations to the <code>config/database.php</code> configuration file:</p> - -<pre><code class="language-php">'connections' =&gt; [ - - 'mongodb' =&gt; [ - 'driver' =&gt; 'mongodb', - 'host' =&gt; env('DB_HOST', 'localhost'), - 'port' =&gt; env('DB_PORT', 27017), - 'database' =&gt; env('DB_DATABASE', 'database'), - 'username' =&gt; '', - 'password' =&gt; '', - 'options' =&gt; [ - 'database' =&gt; '', - ] - ], - - // ... - -], -</code></pre> - -<p>5 - Open your Laravel&rsquo;s <code>.env</code> file and update the following variables:</p> - -<ul> -<li>set the <code>DB_HOST</code> to your <code>mongo</code>.</li> -<li>set the <code>DB_PORT</code> to <code>27017</code>.</li> -<li>set the <code>DB_DATABASE</code> to <code>database</code>.</li> -</ul> - -<p>6 - Finally make sure you have the <code>jenssegers/mongodb</code> package installed via Composer and its Service Provider is added.</p> - -<pre><code class="language-bash">composer require jenssegers/mongodb -</code></pre> - -<p>More details about this <a href="https://github.com/jenssegers/laravel-mongodb#installation">here</a>.</p> - -<p>7 - Test it:</p> - -<ul> -<li>First let your Models extend from the Mongo Eloquent Model. Check the <a href="https://github.com/jenssegers/laravel-mongodb#eloquent">documentation</a>.</li> -<li>Enter the Workspace Container.</li> -<li>Migrate the Database <code>php artisan migrate</code>.</li> -</ul> - -<p><br> -<a name="Use-phpMyAdmin"></a></p> - -<h2 id="use-phpmyadmin">Use PhpMyAdmin</h2> - -<p>1 - Run the phpMyAdmin Container (<code>phpmyadmin</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash"># use with mysql -docker-compose up -d mysql phpmyadmin - -# use with mariadb -docker-compose up -d mariadb phpmyadmin -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>8080</strong>: <code>http://localhost:8080</code></p> - -<p><br> -<a name="Use-Adminer"></a></p> - -<h2 id="use-adminer">Use Adminer</h2> - -<p>1 - Run the Adminer Container (<code>adminer</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d adminer -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>8080</strong>: <code>http://localhost:8080</code></p> - -<p><br> -<a name="Use-pgAdmin"></a></p> - -<h2 id="use-pgadmin">Use PgAdmin</h2> - -<p>1 - Run the pgAdmin Container (<code>pgadmin</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d postgres pgadmin -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>5050</strong>: <code>http://localhost:5050</code></p> - -<p><br> -<a name="Use-Beanstalkd"></a></p> - -<h2 id="use-beanstalkd">Use Beanstalkd</h2> - -<p>1 - Run the Beanstalkd Container:</p> - -<pre><code class="language-bash">docker-compose up -d beanstalkd -</code></pre> - -<p>2 - Configure Laravel to connect to that container by editing the <code>config/queue.php</code> config file.</p> - -<p>a. first set <code>beanstalkd</code> as default queue driver -b. set the queue host to beanstalkd : <code>QUEUE_HOST=beanstalkd</code></p> - -<p><em>beanstalkd is now available on default port <code>11300</code>.</em></p> - -<p>3 - Require the dependency package <a href="https://github.com/pda/pheanstalk">pda/pheanstalk</a> using composer.</p> - -<p>Optionally you can use the Beanstalkd Console Container to manage your Queues from a web interface.</p> - -<p>1 - Run the Beanstalkd Console Container:</p> - -<pre><code class="language-bash">docker-compose up -d beanstalkd-console -</code></pre> - -<p>2 - Open your browser and visit <code>http://localhost:2080/</code></p> - -<p>3 - Add the server</p> - -<ul> -<li>Host: beanstalkd</li> -<li>Port: 11300</li> -</ul> - -<p>4 - Done.</p> - -<p><br> -<a name="Use-ElasticSearch"></a></p> - -<h2 id="use-elasticsearch">Use ElasticSearch</h2> - -<p>1 - Run the ElasticSearch Container (<code>elasticsearch</code>) with the <code>docker-compose up</code> command:</p> - -<pre><code class="language-bash">docker-compose up -d elasticsearch -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>9200</strong>: <code>http://localhost:9200</code></p> - -<h3 id="install-elasticsearch-plugin">Install ElasticSearch Plugin</h3> - -<p>1 - Install the ElasticSearch plugin like <a href="https://www.elastic.co/guide/en/elasticsearch/plugins/current/plugins-delete-by-query.html">delete-by-query</a>.</p> - -<pre><code class="language-bash">docker exec {container-name} /usr/share/elasticsearch/bin/plugin install delete-by-query -</code></pre> - -<p>2 - Restart elasticsearch container</p> - -<pre><code class="language-bash">docker restart {container-name} -</code></pre> - -<p><br> -<a name="Use-Selenium"></a></p> - -<h2 id="use-selenium">Use Selenium</h2> - -<p>1 - Run the Selenium Container (<code>selenium</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d selenium -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>4444</strong> at the following URL: <code>http://localhost:4444/wd/hub</code></p> - -<p><br> -<a name="Use-RethinkDB"></a></p> - -<h2 id="use-rethinkdb">Use RethinkDB</h2> - -<p>The RethinkDB is an open-source Database for Real-time Web (<a href="https://rethinkdb.com/">RethinkDB</a>). -A package (<a href="https://github.com/duxet/laravel-rethinkdb">Laravel RethinkDB</a>) is being developed and was released a version for Laravel 5.2 (experimental).</p> - -<p>1 - Run the RethinkDB Container (<code>rethinkdb</code>) with the <code>docker-compose up</code> command.</p> - -<pre><code class="language-bash">docker-compose up -d rethinkdb -</code></pre> - -<p>2 - Access the RethinkDB Administration Console <a href="http://localhost:8090/#tables">http://localhost:8090/#tables</a> for create a database called <code>database</code>.</p> - -<p>3 - Add the RethinkDB configurations to the <code>config/database.php</code> configuration file:</p> - -<pre><code class="language-php">'connections' =&gt; [ - - 'rethinkdb' =&gt; [ - 'name' =&gt; 'rethinkdb', - 'driver' =&gt; 'rethinkdb', - 'host' =&gt; env('DB_HOST', 'rethinkdb'), - 'port' =&gt; env('DB_PORT', 28015), - 'database' =&gt; env('DB_DATABASE', 'test'), - ] - - // ... - -], -</code></pre> - -<p>4 - Open your Laravel&rsquo;s <code>.env</code> file and update the following variables:</p> - -<ul> -<li>set the <code>DB_CONNECTION</code> to your <code>rethinkdb</code>.</li> -<li>set the <code>DB_HOST</code> to <code>rethinkdb</code>.</li> -<li>set the <code>DB_PORT</code> to <code>28015</code>.</li> -<li>set the <code>DB_DATABASE</code> to <code>database</code>.</li> -</ul> - -<p><br> -<a name="Use-Minio"></a></p> - -<h2 id="use-minio">Use Minio</h2> - -<p>1 - Configure Minio: - - On the workspace container, change <code>INSTALL_MC</code> to true to get the client - - Set <code>MINIO_ACCESS_KEY</code> and <code>MINIO_ACCESS_SECRET</code> if you wish to set proper keys</p> - -<p>2 - Run the Minio Container (<code>minio</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d minio -</code></pre> - -<p>3 - Open your browser and visit the localhost on port <strong>9000</strong> at the following URL: <code>http://localhost:9000</code></p> - -<p>4 - Create a bucket either through the webui or using the mc client:</p> - -<pre><code class="language-bash"> mc mb minio/bucket -</code></pre> - -<p>5 - When configuring your other clients use the following details:</p> - -<pre><code> S3_HOST=http://minio - S3_KEY=access - S3_SECRET=secretkey - S3_REGION=us-east-1 - S3_BUCKET=bucket -</code></pre> - -<p><br> -<a name="CodeIgniter"></a></p> - -<p><br> -<a name="Install-CodeIgniter"></a></p> - -<h2 id="install-codeigniter">Install CodeIgniter</h2> - -<p>To install CodeIgniter 3 on Laradock all you have to do is the following simple steps:</p> - -<p>1 - Open the <code>docker-compose.yml</code> file.</p> - -<p>2 - Change <code>CODEIGNITER=false</code> to <code>CODEIGNITER=true</code>.</p> - -<p>3 - Re-build your PHP-FPM Container <code>docker-compose build php-fpm</code>.</p> - -<p><br> -<a name="Misc"></a></p> - -<h2 id="miscellaneous">Miscellaneous</h2> - -<p><br> -<a name="Change-the-timezone"></a></p> - -<h2 id="change-the-timezone">Change the timezone</h2> - -<p>To change the timezone for the <code>workspace</code> container, modify the <code>TZ</code> build argument in the Docker Compose file to one in the <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">TZ database</a>.</p> - -<p>For example, if I want the timezone to be <code>New York</code>:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - TZ=America/New_York - ... -</code></pre> - -<p>We also recommend <a href="http://www.camroncade.com/managing-timezones-with-laravel/">setting the timezone in Laravel</a>.</p> - -<p><br> -<a name="CronJobs"></a></p> - -<h2 id="adding-cron-jobs">Adding cron jobs</h2> - -<p>You can add your cron jobs to <code>workspace/crontab/root</code> after the <code>php artisan</code> line.</p> - -<pre><code>* * * * * php /var/www/artisan schedule:run &gt;&gt; /dev/null 2&gt;&amp;1 - -# Custom cron -* * * * * root echo &quot;Every Minute&quot; &gt; /var/log/cron.log 2&gt;&amp;1 -</code></pre> - -<p>Make sure you <a href="#Change-the-timezone">change the timezone</a> if you don&rsquo;t want to use the default (UTC).</p> - -<p><br> -<a name="Workspace-ssh"></a></p> - -<h2 id="access-workspace-via-ssh">Access workspace via ssh</h2> - -<p>You can access the <code>workspace</code> container through <code>localhost:2222</code> by setting the <code>INSTALL_WORKSPACE_SSH</code> build argument to <code>true</code>.</p> - -<p>To change the default forwarded port for ssh:</p> - -<pre><code class="language-yml"> workspace: - ports: - - &quot;2222:22&quot; # Edit this line - ... -</code></pre> - -<p><br> -<a name="MySQL-access-from-host"></a></p> - -<h2 id="mysql-access-from-host">MySQL access from host</h2> - -<p>You can forward the MySQL/MariaDB port to your host by making sure these lines are added to the <code>mysql</code> or <code>mariadb</code> section of the <code>docker-compose.yml</code> or in your <a href="https://docs.docker.com/compose/extends/">environment specific Compose</a> file.</p> - -<pre><code>ports: - - &quot;3306:3306&quot; -</code></pre> - -<p><br> -<a name="MySQL-root-access"></a></p> - -<h2 id="mysql-root-access">MySQL root access</h2> - -<p>The default username and password for the root MySQL user are <code>root</code> and <code>root</code>.</p> - -<p>1 - Enter the MySQL container: <code>docker-compose exec mysql bash</code>.</p> - -<p>2 - Enter mysql: <code>mysql -uroot -proot</code> for non root access use <code>mysql -uhomestead -psecret</code>.</p> - -<p>3 - See all users: <code>SELECT User FROM mysql.user;</code></p> - -<p>4 - Run any commands <code>show databases</code>, <code>show tables</code>, <code>select * from.....</code>.</p> - -<p><br> -<a name="Change-MySQL-port"></a></p> - -<h2 id="change-mysql-port">Change MySQL port</h2> - -<p>Modify the <code>mysql/my.cnf</code> file to set your port number, <code>1234</code> is used as an example.</p> - -<pre><code>[mysqld] -port=1234 -</code></pre> - -<p>If you need <a href="#MySQL-access-from-host">MySQL access from your host</a>, do not forget to change the internal port number (<code>&quot;3306:3306&quot;</code> -&gt; <code>&quot;3306:1234&quot;</code>) in the docker-compose configuration file.</p> - -<p><br> -<a name="Use-custom-Domain"></a></p> - -<h2 id="use-custom-domain-instead-of-the-docker-ip">Use custom Domain (instead of the Docker IP)</h2> - -<p>Assuming your custom domain is <code>laravel.dev</code></p> - -<p>1 - Open your <code>/etc/hosts</code> file and map your localhost address <code>127.0.0.1</code> to the <code>laravel.dev</code> domain, by adding the following:</p> - -<pre><code class="language-bash">127.0.0.1 laravel.dev -</code></pre> - -<p>2 - Open your browser and visit <code>{http://laravel.dev}</code></p> - -<p>Optionally you can define the server name in the NGINX configuration file, like this:</p> - -<pre><code class="language-conf">server_name laravel.dev; -</code></pre> - -<p><br> -<a name="Enable-Global-Composer-Build-Install"></a></p> - -<h2 id="enable-global-composer-build-install">Enable Global Composer Build Install</h2> - -<p>Enabling Global Composer Install during the build for the container allows you to get your composer requirements installed and available in the container after the build is done.</p> - -<p>1 - Open the <code>docker-compose.yml</code> file</p> - -<p>2 - Search for the <code>COMPOSER_GLOBAL_INSTALL</code> argument under the Workspace Container and set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - COMPOSER_GLOBAL_INSTALL=true - ... -</code></pre> - -<p>3 - Now add your dependencies to <code>workspace/composer.json</code></p> - -<p>4 - Re-build the Workspace Container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Install-Prestissimo"></a></p> - -<h2 id="install-prestissimo">Install Prestissimo</h2> - -<p><a href="https://github.com/hirak/prestissimo">Prestissimo</a> is a plugin for composer which enables parallel install functionality.</p> - -<p>1 - Enable Running Global Composer Install during the Build:</p> - -<p>Click on this <a href="#Enable-Global-Composer-Build-Install">Enable Global Composer Build Install</a> and do steps 1 and 2 only then continue here.</p> - -<p>2 - Add prestissimo as requirement in Composer:</p> - -<p>a - Now open the <code>workspace/composer.json</code> file</p> - -<p>b - Add <code>&quot;hirak/prestissimo&quot;: &quot;^0.3&quot;</code> as requirement</p> - -<p>c - Re-build the Workspace Container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Install-Node"></a></p> - -<h2 id="install-node-nvm">Install Node + NVM</h2> - -<p>To install NVM and NodeJS in the Workspace container</p> - -<p>1 - Open the <code>docker-compose.yml</code> file</p> - -<p>2 - Search for the <code>INSTALL_NODE</code> argument under the Workspace Container and set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_NODE=true - ... -</code></pre> - -<p>3 - Re-build the container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Install-Yarn"></a></p> - -<h2 id="install-node-yarn">Install Node + YARN</h2> - -<p>Yarn is a new package manager for JavaScript. It is so faster than npm, which you can find <a href="http://yarnpkg.com/en/compare">here</a>.To install NodeJS and <a href="https://yarnpkg.com/">Yarn</a> in the Workspace container:</p> - -<p>1 - Open the <code>docker-compose.yml</code> file</p> - -<p>2 - Search for the <code>INSTALL_NODE</code> and <code>INSTALL_YARN</code> argument under the Workspace Container and set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_NODE=true - - INSTALL_YARN=true - ... -</code></pre> - -<p>3 - Re-build the container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Install-Linuxbrew"></a></p> - -<h2 id="install-linuxbrew">Install Linuxbrew</h2> - -<p>Linuxbrew is a package manager for Linux. It is the Linux version of MacOS Homebrew and can be found <a href="http://linuxbrew.sh">here</a>. To install Linuxbrew in the Workspace container:</p> - -<p>1 - Open the <code>docker-compose.yml</code> file</p> - -<p>2 - Search for the <code>INSTALL_LINUXBREW</code> argument under the Workspace Container and set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_LINUXBREW=true - ... -</code></pre> - -<p>3 - Re-build the container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Common-Aliases"></a> -<br></p> - -<h2 id="common-terminal-aliases">Common Terminal Aliases</h2> - -<p>When you start your docker container, Laradock will copy the <code>aliases.sh</code> file located in the <code>laradock/workspace</code> directory and add sourcing to the container <code>~/.bashrc</code> file.</p> - -<p>You are free to modify the <code>aliases.sh</code> as you see fit, adding your own aliases (or function macros) to suit your requirements.</p> - -<p><br> -<a name="Install-Aerospike-Extension"></a></p> - -<h2 id="install-aerospike-extension">Install Aerospike extension</h2> - -<p>1 - First install <code>aerospike</code> in the Workspace and the PHP-FPM Containers: -<br> -a) open the <code>docker-compose.yml</code> file -<br> -b) search for the <code>INSTALL_AEROSPIKE_EXTENSION</code> argument under the Workspace Container -<br> -c) set it to <code>true</code> -<br> -d) search for the <code>INSTALL_AEROSPIKE_EXTENSION</code> argument under the PHP-FPM Container -<br> -e) set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_AEROSPIKE_EXTENSION=true - ... - php-fpm: - build: - context: ./php-fpm - args: - - INSTALL_AEROSPIKE_EXTENSION=true - ... -</code></pre> - -<p>2 - Re-build the containers <code>docker-compose build workspace php-fpm</code></p> - -<p><br> -<a name="Install-Laravel-Envoy"></a></p> - -<h2 id="install-laravel-envoy-envoy-task-runner">Install Laravel Envoy (Envoy Task Runner)</h2> - -<p>1 - Open the <code>docker-compose.yml</code> file -<br> -2 - Search for the <code>INSTALL_LARAVEL_ENVOY</code> argument under the Workspace Container -<br> -3 - Set it to <code>true</code> -<br></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_LARAVEL_ENVOY=true - ... -</code></pre> - -<p>4 - Re-build the containers <code>docker-compose build workspace</code></p> - -<p><a href="https://laravel.com/docs/5.3/envoy"><strong>Laravel Envoy Documentation Here</strong></a></p> - -<p><br> -<a name="phpstorm-debugging"></a></p> - -<h2 id="phpstorm-debugging-guide">PHPStorm Debugging Guide</h2> - -<p>Remote debug Laravel web and phpunit tests.</p> - -<p><a href="https://github.com/laradock/laradock/blob/master/_guides/phpstorm.md"><strong>Debugging Guide Here</strong></a></p> - -<p><br> -<a name="keep-tracking-Laradock"></a></p> - -<h2 id="keep-track-of-your-laradock-changes">Keep track of your Laradock changes</h2> - -<ol> -<li>Fork the Laradock repository.</li> -<li>Use that fork as a submodule.</li> -<li>Commit all your changes to your fork.</li> -<li>Pull new stuff from the main repository from time to time.</li> -</ol> - -<p><br> -<a name="upgrading-laradock"></a></p> - -<h2 id="upgrading-laradock">Upgrading Laradock</h2> - -<p>Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requires upgrading Laradock from v3.* to v4.*:</p> - -<ol> -<li>Stop the docker VM <code>docker-machine stop {default}</code></li> -<li>Install Docker for <a href="https://docs.docker.com/docker-for-mac/">Mac</a> or <a href="https://docs.docker.com/docker-for-windows/">Windows</a>.</li> -<li>Upgrade Laradock to <code>v4.*.*</code> (<code>git pull origin master</code>)</li> -<li>Use Laradock as you used to do: <code>docker-compose up -d nginx mysql</code>.</li> -</ol> - -<p><strong>Note:</strong> If you face any problem with the last step above: rebuild all your containers -<code>docker-compose build --no-cache</code> -&ldquo;Warning Containers Data might be lost!&rdquo;</p> - -<p><br> -<a name="Speed-MacOS"></a></p> - -<h2 id="improve-speed-on-macos">Improve speed on MacOS</h2> - -<p>Sharing code into Docker containers with osxfs have very poor performance compared to Linux. Likely there are some workarounds:</p> - -<h3 id="workaround-a-using-dinghy">Workaround A: using dinghy</h3> - -<p><a href="https://github.com/codekitchen/dinghy">Dinghy</a> creates its own VM using docker-machine, it will not modify your existing docker-machine VMs.</p> - -<p>Quick Setup giude, (we recommend you check their docs)</p> - -<p>1) <code>brew tap codekitchen/dinghy</code></p> - -<p>2) <code>brew install dinghy</code></p> - -<p>3) <code>dinghy create --provider virtualbox</code> (must have virtualbox installed, but they support other providers if you prefer)</p> - -<p>4) after the above command is done it will display some env variables, copy them to the bash profile or zsh or.. (this will instruct docker to use the server running inside the VM)</p> - -<p>5) <code>docker-compose up ...</code></p> - -<h3 id="workaround-b-using-d4m-nfs">Workaround B: using d4m-nfs</h3> - -<p><a href="https://github.com/IFSight/d4m-nfs">D4m-nfs</a> automatically mount NFS volume instead of osxfs one.</p> - -<p>1) Update the Docker [File Sharing] preferences:</p> - -<p>Click on the Docker Icon &gt; Preferences &gt; (remove everything form the list except <code>/tmp</code>).</p> - -<p>2) Restart Docker.</p> - -<p>3) Clone the <a href="https://github.com/IFSight/d4m-nfs">d4m-nfs</a> repository to your <code>home</code> directory.</p> - -<pre><code class="language-bash">git clone https://github.com/IFSight/d4m-nfs ~/d4m-nfs -</code></pre> - -<p>4) Create (or edit) the file <code>~/d4m-nfs/etc/d4m-nfs-mounts.txt</code>, and write the follwing configuration in it:</p> - -<pre><code class="language-txt">/Users:/Users -</code></pre> - -<p>5) Create (or edit) the file <code>/etc/exports</code>, make sure it exists and is empty. (There may be collisions if you come from Vagrant or if you already executed the <code>d4m-nfs.sh</code> script before).</p> - -<p>6) Run the <code>d4m-nfs.sh</code> script (might need Sudo):</p> - -<pre><code class="language-bash">~/d4m-nfs/d4m-nfs.sh -</code></pre> - -<p>That&rsquo;s it! Run your containers.. Example:</p> - -<pre><code class="language-bash">docker-compose up ... -</code></pre> - -<p><em>Note: If you faced any errors, try restarting Docker, and make sure you have no spaces in the <code>d4m-nfs-mounts.txt</code> file, and your <code>/etc/exports</code> file is clear.</em></p> - -<h3 id="other-good-workarounds">Other good workarounds:</h3> - -<ul> -<li><a href="https://github.com/EugenMayer/docker-sync">docker-sync</a></li> -<li>Add more here..</li> -</ul> - -<p>More details about this issue <a href="https://github.com/docker/for-mac/issues/77">here</a>.</p> - -<p><br> -<a name="Common-Problems"></a></p> - -<h2 id="common-problems">Common Problems</h2> - -<p><em>Here&rsquo;s a list of the common problems you might face, and the possible solutions.</em></p> - -<p><br></p> - -<h2 id="i-see-a-blank-white-page-instead-of-the-laravel-welcome-page">I see a blank (white) page instead of the Laravel &lsquo;Welcome&rsquo; page!</h2> - -<p>Run the following command from the Laravel root directory:</p> - -<pre><code class="language-bash">sudo chmod -R 777 storage bootstrap/cache -</code></pre> - -<p><br></p> - -<h2 id="i-see-welcome-to-nginx-instead-of-the-laravel-app">I see &ldquo;Welcome to nginx&rdquo; instead of the Laravel App!</h2> - -<p>Use <code>http://127.0.0.1</code> instead of <code>http://localhost</code> in your browser.</p> - -<p><br></p> - -<h2 id="i-see-an-error-message-containing-address-already-in-use-or-port-is-already-allocated">I see an error message containing <code>address already in use</code> or <code>port is already allocated</code></h2> - -<p>Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in <code>apache</code>/<code>httpd</code> service or other development tools you have installed.</p> - -<p><br></p> - -<h2 id="i-get-nginx-error-404-not-found-on-windows">I get NGINX error 404 Not Found on Windows.</h2> - -<ol> -<li>Go to docker Settings on your Windows machine.</li> -<li>Click on the <code>Shared Drives</code> tab and check the drive that contains your project files.</li> -<li>Enter your windows username and password.</li> -<li>Go to the <code>reset</code> tab and click restart docker.</li> -</ol> - -<p><br></p> - -<h2 id="the-time-in-my-services-does-not-match-the-current-time">The time in my services does not match the current time</h2> - -<ol> -<li>Make sure you&rsquo;ve <a href="#Change-the-timezone">changed the timezone</a>.</li> -<li>Stop and rebuild the containers (<code>docker-compose up -d --build &lt;services&gt;</code>)</li> -</ol> - -<p><br></p> - -<h2 id="i-get-mysql-connection-refused">I get MySQL connection refused</h2> - -<p>This error sometimes happens because your Laravel application isn&rsquo;t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:</p> - -<ul> -<li>Option A - -<ol> -<li>Check your running Laravel application IP by dumping <code>Request::ip()</code> variable using <code>dd(Request::ip())</code> anywhere on your application. The result is the IP of your Laravel container.</li> -<li>Change the <code>DB_HOST</code> variable on env with the IP that you received from previous step.</li> -</ol></li> -<li>Option B - -<ol> -<li>Change the <code>DB_HOST</code> value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as <code>mysql</code></li> -</ol></li> -</ul> - - - - - diff --git a/docs/fonts/icon.eot b/docs/fonts/icon.eot deleted file mode 100755 index 8f81638c2de436e1b5cc77b6a2693b2b347a0151..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2224 zcmaJDYiN^K^qhP1ZcHEMVbZM4%Vs7uwoQ|)E~(XOx7OBXnq))T&RAn>*Cw^Cqp}}H zWH6912NR|+2m5JcjIkeMjv=!Q9249yfx%!u#)^-T>W{&MHQBjeBBo>Pe4KmF^E>CB z@7#O8&r|?g2oV@;1cVDHB*W2-a$#G6b3^#>-#P#loPbHlK$=uKI0z}2f>SUHNmw9> z5fUU>fJL$rHa6%4A9RqW){j^bqzea^bdbuq5*;Zk-LE^Cdn?+_Wk$3IeMJy!S`Wh)UMyN+J zdS?0mGDhF6kI!%~<+qJq>2&vEpxeis4jnV-TbREq7%~}5A-CPp7U&N8yNm|C!pSZ= z>RMgx`%^o6Qv2I!?&%)eT36VWFT?1`lcUl3`6$Mm(PLi)Z77M4~2lu_KixyTMMWFbEgdpD<-HjI^xqTD%xRVN3f% z27EufM7BCq_F{-eA6ANNH2Jt&hXy?n=(b9Pj&yDA7Bp1}?(gblf$p{dxyryAvDrJc zt^F=*bbI@7kDasKZ>5j8H`V(+mJUPmWnFWsN4v+*4sUM2nLSNzr@QTW$GB0}ROgND*=9A% zw1)nnmfd#y?v|l`gH~p?ZtFkf)fup1^YGd6?&$gJGyIAekox zZ*nZ1`&86Qhw@P=Z(>&x;ARp0>8hS~9}KyeD>li(=rCx4^e?QEnx+3`oEyA6+GNZnmZ#7YHL z5IITs5QomaULXEb^rwKI?mhVE*tF(gTJylu*7C253QKlw|iZm6P z(d9W@r8&tvtF(;hi7G9p>(o@G6(o;TX$^Ek_QYf+{q!nMq!t!WWYV@yU&nvnzqQ7- z^ug5BsoCVh#%sLRU?7uTvQ4GZsfFZH>X_~5Y1`mrW+anI`(Qx2;FrKgKL9DZ>czF6 gge97fk?bg(rg2dERTv>l@iX9~idJf0Tk{R{Kaui$V*mgE diff --git a/docs/fonts/icon.svg b/docs/fonts/icon.svg deleted file mode 100755 index 86250e7b..00000000 --- a/docs/fonts/icon.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - -Generated by IcoMoon - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/fonts/icon.ttf b/docs/fonts/icon.ttf deleted file mode 100755 index b5ab5601bed7765790037c721c2ee1c7d444a7a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2072 zcmaJ>ZD^ZS6h7zPd^bx!mX9TkZNApHq|4go%g&_h)~(vEUF()a8EswGW$kL4bZsXc z{#b?xf`|$Z+`tL`T!ufyAL2xYE5gLVlqDbt{t(MPB;9@p4s7DNZ{D%&kLTsw`<$

vJhI<5Xe z^&QFMB)b;UtBYWSqa?48?8v4UGUKsFzmfbg(%Sf&xy$DPi zbfnwchv86wxm^ZkGPbc`Pb6wFS)yL2t0NqW1bfUTqsq-LxEk6$od+|!dou?+Y3~h9 zY;P#-DOO?Z^y#tj#l>+<>OGUe-8Hl1=4scviv7i!dF-^PzW_;|q^3}((HZq>k@AFj za`SOHRw-aIR%U7}ZV;|qiIO54r&n>b%tw?$r;Xb*d)E+ zLNcE$rBZdZYot1yCMT7`AXeUd%+%!=(zRk6$#NWpFMS^h;0NI)@-?8k52LgOu-0U= zCBVG~G#Lq?*De7A**d&!XpsRA_VlrEs3T0F3b4l=&MtlXfX6<*vvZ`^$=Tkwvd6qz z8iPJtmnr?Sp|w$G)EeJ75P4^Ki&gI)c_r2P(eIxe!uGI<-PJcMj4@A(P2KKs_Ky0u zY-`}I-b1@A;pd_gcHE*z#F6Dju3&7>Vf1w|G`p?(`K!fQwLxu;wu}Bk^=rD%Wq6eY zc~C6oNH~UGRY!LKyE`J?ZP;y&M5){Wr@4s+Fxq9d^dSupt=(pox{WSsVA7_dyGQ%T zkLHfS+_m?{LzCx6wl?A1z80_B+wr_>(yVA{@F(`|uv-;+)4*`sUZ-@(rOxUz_){IXb+m(ESuc#BROaaae4B#(WznI{#M;k znD=Nk8f^~`59wO>`-Z2YR;7NICpfCtZB^K&&Rt51V#M4rnyDoB(|4iA;f>}+;x z5otP{++V0d0sZLTyuwn%euOGiis-N8X;i3RN$~RmPl`F;uH@0}4XCtm2B;alSGl#i zTDf&^@W;=v^QH}3D}UNqE(z!PfayTO(nue&J!2t7nh~I_*9l`!Y*`4VjnRT zN2H^_cpFT>oA54t4&T6Sd;!12+jyTTn2qcrYZJUi-4XPpI!TZh1AHOZh9ZTG8Fll3 zj5+Cd%2+}8sEn2L{p)3{B7Lunbzp;&lo1tL(rCz1!wd{CB4bYaZW${GPsvybX0XUu zMf$jmbr6F5sp(u6PQf(fAe+i8EuYF|9o>O0NI?dcV3|y000$i$fUbJydVDxDb7nrh z1cxbT2F}1dq+zMvVKA3nam-}0nWgkf=7i(;S;x?HZZwz624GN1utF(jC^{>pO~VT9 cCrEc3&eA$0)i+9>qL=`6wATCjoC1DrZ;vj6}9 diff --git a/docs/fonts/icon.woff b/docs/fonts/icon.woff deleted file mode 100755 index ed0f20d5b80ab98072f3557225b3333e01b78670..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2148 zcmaJ?U2M};6hG(Qeym;Bb)z4&t6RTVr5$BkzZkY-Fqm#^Y(iTNVUx0zjk&dB8w&A( z8e?KYjQT(#L^1J^5+8grk{BY32}Tk$w26s{CdP%2q=N?^NL=f=|NfEk;{E5G`#WF% zbMEQ+-@ZLQGz18=8fKtT+PBtZfuCRFM|SoCU;}B73uHeVHCj?Ez9{;wK zTUn*D_W$R{332`_ehf+gc8O7y@KJ5YhY&;!$@L2j^^(8?0P8LMM)d{^a3azm(bMIS zfRu%hoooWzi3=|~D5MA-b&3&2aI9i2uExtracIOW6c|0?H$$~W zZ9y!=*Vf_)tPsDs7NdhB6d}+3tSBZMy=t#;i_#gmKVB}!H#Q{BF2%~_Sb0P64eD(k z3OrBm<)9XEQD?aJn4IA}hfUH8DkSsCQYuwfJIy)O;WRm^6b7;K<`bqa$B>Q{+ent< zD0~4L6~GU|%jBy^bw5Ul2e8&;vn9a2dNdgcpw}(|J=r?F?P!q!5BB!6aHum(p$f3a z9nNlD$DqePv7>9W&&k=|ce2O5P0c}{t=p7-Mc>w}HEN7+9*Dd@(qz@SM_)~Kee(OK zhp;1TV)t|{3S-REYEyT3oPA^drmcrvRh&Z~^%oU97IgGw;hGw@_ zw{WdEr`D^@(GJmHsD4A|xdN||AP+eZdXI)&A~eej51Z$iVC(RU|96Bn+}^DBZUFQ1>X@m8%S;;ip%T zC`Qa3qnS!_KYb@^(9x;gEzTCV29c)2$^C^Y6wr_U&8sX$|R8 z@T8dYZAu>9)`&_AXLP3y-LKp}d$w}>{?LzKVAm}hwpISJ-KyNBN%K)miDJY&YUw3m zx5+}J)FAUE5{XIzOY|hKUAvk}<+<;l66GmTOp2rQJq25wUUv)C$xc41+%-H(AWe5A zm8g_hNz^3KLmYYUjpo?jVm`(C<=%tOpY8ImEbel;MWjV>(tSr4mRQ8ao9dULW~r$} z7|D5}0$p)g+KbO*$tLVVmn8BLQE{}iV1#!1Z+QzofG^=&xP!a!YrKOGn1b2JF0vZn zb?S~-Ppgvznd#vxxi%CjWX!0W2V~4izeC0f!bfGSr0-uRV-@N9WUK`noTQAX(2%Bq zEH%tP52G^Xr0R1(LwEqj{ug`Uae@E< diff --git a/docs/getting-started/index.html b/docs/getting-started/index.html deleted file mode 100644 index 51c198c4..00000000 --- a/docs/getting-started/index.html +++ /dev/null @@ -1,695 +0,0 @@ - - - - - - - - - - - - Getting Started - Laradock - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-
-
- - - - - -
- - -
- -
-
- - -
- -
-
-

Getting Started

- - - -

Requirements

- - - -

Installation

- -

Choose the setup the best suits your needs.

- - - -

- -

A) Setup for Single Project

- -
-

(Follow these steps if you want a separate Docker environment for each project)

-
- -

- -

A.1) Already have a PHP project:

- -

1 - Clone laradock on your project root directory:

- -
git submodule add https://github.com/Laradock/laradock.git
-
- -

Notes:

- -
    -
  • If you are not using Git yet for your project, you can use git clone instead of git submodule.

  • - -
  • Note 2: To keep track of your Laradock changes, between your projects and also keep Laradock updated. Check this

  • -
- -

Your folder structure should look like this:

- -
+ project-a
-	+ laradock-a
-+ project-b
-	+ laradock-b
-
- -

(It’s important to rename the folders differently in each project.)

- -
-

Now jump to the Usage section.

-
- -

- -

A.2) Don’t have a PHP project yet:

- -

1 - Clone this repository anywhere on your machine:

- -
git clone https://github.com/laradock/laradock.git
-
- -

Your folder structure should look like this:

- -
+ laradock
-+ project-z
-
- -

2 - Edit your web server sites configuration.

- -

In case of NGINX: open nginx/sites/default.conf and change the root from /var/www/public to /var/www/{my-project-folder-name}/public.

- -

Or you can keep default.conf as it is, and create a separate config my-site.conf file for it.

- -

In case of Apache: :P

- -


- -
-

Now jump to the Usage section.

-
- -

- -

B) Setup for Multiple Projects:

- -
-

(Follow these steps if you want a single Docker environment for all your project)

-
- -

1 - Clone this repository anywhere on your machine (similar to Steps A.2. from above):

- -
git clone https://github.com/laradock/laradock.git
-
- -

Your folder structure should look like this:

- -
+ laradock
-+ project-1
-+ project-2
-
- -

2 - Go to nginx/sites and create config files to point to different project directory when visiting different domains.

- -

Laradock by default includes project-1.conf and project-2.conf as working samples.

- -

3 - change the default names project-n:

- -

You can rename the config files, project folders and domains as you like, just make sure the root in the config files, is pointing to the correct project folder name.

- -

4 - Add the domains to the hosts files.

- -
127.0.0.1  project-1.dev
-127.0.0.1  project-2.dev
-
- -
-

Now jump to the Usage section.

-
- -

- -

Usage

- -

Read Before starting:

- -

If you are using Docker Toolbox (VM), do one of the following:

- - - -


- -
-

Warning: If you used an older version of Laradock it’s highly recommended to rebuild the containers you need to use see how you rebuild a container in order to prevent as much errors as possible.

-
- -


- -

1 - Enter the laradock folder and rename env-example to .env

- -
cp env-example .env
-
- -

You can edit the .env file to chose which software’s you want to be installed in your environment. You can always refer to the docker-compose.yml file to see how those variables are been used.

- -

2 - Build the enviroment and run it using docker-compose

- -

In this example we’ll see how to run NGINX (web server) and MySQL (database engine) to host a PHP Web Scripts:

- -
docker-compose up -d nginx mysql
-
- -

Note: The workspace and php-fpm will run automatically in most of the cases, so no need to specify them in the up command. If you couldn’t find them running then you need specify them as follow: docker-compose up -d nginx php-fpm mysql workspace.

- -

You can select your own combination of containers form this list.

- -

(Please note that sometimes we forget to update the docs, so check the docker-compose.yml file to see an updated list of all available containers).

- -


-3 - Enter the Workspace container, to execute commands like (Artisan, Composer, PHPUnit, Gulp, …)

- -
docker-compose exec workspace bash
-
- -

Alternatively, for Windows PowerShell users: execute the following command to enter any running container:

- -
docker exec -it {workspace-container-id} bash
-
- -

Note: You can add --user=laradock to have files created as your host’s user. Example:

- -
docker-compose exec --user=laradock workspace bash
-
- -

You can change the PUID (User id) and PGID (group id) variables from the .env file)

- -


-4 - Update your project configurations to use the database host

- -

Open your PHP project’s .env file or whichever configuration file you are reading from, and set the database host DB_HOST to mysql:

- -
DB_HOST=mysql
-
- -

If you want to install Laravel as PHP project, see How to Install Laravel in a Docker Container.

- -


-5 - Open your browser and visit your localhost address http://localhost/. If you followed the multiple projects setup, you can visit http://project-1.dev/ and http://project-2.dev/. But first don’t

- - - - - -
-
- -
-
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - diff --git a/docs/getting-started/index.xml b/docs/getting-started/index.xml deleted file mode 100644 index ade36fd4..00000000 --- a/docs/getting-started/index.xml +++ /dev/null @@ -1,221 +0,0 @@ - - - - Getting-starteds on Laradock - http://laradock.io/getting-started/index.xml - Recent content in Getting-starteds on Laradock - Hugo -- gohugo.io - en-us - - - - Getting Started - http://laradock.io/getting-started/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/getting-started/ - - -<h2 id="requirements">Requirements</h2> - -<ul> -<li><a href="https://git-scm.com/downloads">Git</a></li> -<li><a href="https://www.docker.com/products/docker/">Docker</a> <code>&gt;= 1.12</code></li> -</ul> - -<h2 id="installation">Installation</h2> - -<p>Choose the setup the best suits your needs.</p> - -<ul> -<li><a href="#A">A) Setup for Single Project</a> - -<ul> -<li><a href="#A1">A.1) Already have a PHP project</a></li> -<li><a href="#A2">A.2) Don&rsquo;t have a PHP project yet</a></li> -</ul></li> -<li><a href="#B">B) Setup for Multiple Projects</a></li> -</ul> - -<p><a name="A"></a></p> - -<h3 id="a-setup-for-single-project">A) Setup for Single Project</h3> - -<blockquote> -<p>(Follow these steps if you want a separate Docker environment for each project)</p> -</blockquote> - -<p><a name="A1"></a></p> - -<h3 id="a-1-already-have-a-php-project">A.1) Already have a PHP project:</h3> - -<p>1 - Clone laradock on your project root directory:</p> - -<pre><code class="language-bash">git submodule add https://github.com/Laradock/laradock.git -</code></pre> - -<p><strong>Notes:</strong></p> - -<ul> -<li><p>If you are not using Git yet for your project, you can use <code>git clone</code> instead of <code>git submodule</code>.</p></li> - -<li><p>Note 2: To keep track of your Laradock changes, between your projects and also keep Laradock updated. <a href="http://laradock.io/documentation/#keep-track-of-your-laradock-changes">Check this</a></p></li> -</ul> - -<p>Your folder structure should look like this:</p> - -<pre><code>+ project-a - + laradock-a -+ project-b - + laradock-b -</code></pre> - -<p>(It&rsquo;s important to rename the folders differently in each project.)</p> - -<blockquote> -<p><strong>Now jump to the <a href="#Usage">Usage</a> section.</strong></p> -</blockquote> - -<p><a name="A2"></a></p> - -<h3 id="a-2-don-t-have-a-php-project-yet">A.2) Don&rsquo;t have a PHP project yet:</h3> - -<p>1 - Clone this repository anywhere on your machine:</p> - -<pre><code class="language-bash">git clone https://github.com/laradock/laradock.git -</code></pre> - -<p>Your folder structure should look like this:</p> - -<pre><code>+ laradock -+ project-z -</code></pre> - -<p>2 - Edit your web server sites configuration.</p> - -<p><strong>In case of NGINX:</strong> open <code>nginx/sites/default.conf</code> and change the <code>root</code> from <code>/var/www/public</code> to <code>/var/www/{my-project-folder-name}/public</code>.</p> - -<p><em>Or you can keep <code>default.conf</code> as it is, and create a separate config <code>my-site.conf</code> file for it.</em></p> - -<p><strong>In case of Apache:</strong> :P</p> - -<p><br></p> - -<blockquote> -<p><strong>Now jump to the <a href="#Usage">Usage</a> section.</strong></p> -</blockquote> - -<p><a name="B"></a></p> - -<h3 id="b-setup-for-multiple-projects">B) Setup for Multiple Projects:</h3> - -<blockquote> -<p>(Follow these steps if you want a single Docker environment for all your project)</p> -</blockquote> - -<p>1 - Clone this repository anywhere on your machine (similar to <a href="#A2">Steps A.2. from above</a>):</p> - -<pre><code class="language-bash">git clone https://github.com/laradock/laradock.git -</code></pre> - -<p>Your folder structure should look like this:</p> - -<pre><code>+ laradock -+ project-1 -+ project-2 -</code></pre> - -<p>2 - Go to <code>nginx/sites</code> and create config files to point to different project directory when visiting different domains.</p> - -<p>Laradock by default includes <code>project-1.conf</code> and <code>project-2.conf</code> as working samples.</p> - -<p>3 - change the default names <code>project-n</code>:</p> - -<p>You can rename the config files, project folders and domains as you like, just make sure the <code>root</code> in the config files, is pointing to the correct project folder name.</p> - -<p>4 - Add the domains to the <strong>hosts</strong> files.</p> - -<pre><code>127.0.0.1 project-1.dev -127.0.0.1 project-2.dev -</code></pre> - -<blockquote> -<p><strong>Now jump to the <a href="#Usage">Usage</a> section.</strong></p> -</blockquote> - -<p><a name="Usage"></a></p> - -<h2 id="usage">Usage</h2> - -<p><strong>Read Before starting:</strong></p> - -<p>If you are using <strong>Docker Toolbox</strong> (VM), do one of the following:</p> - -<ul> -<li>Upgrade to Docker <a href="https://www.docker.com/products/docker">Native</a> for Mac/Windows (Recommended). Check out <a href="http://laradock.io/documentation/#upgrading-laradock">Upgrading Laradock</a></li> -<li>Use Laradock v3.*. Visit the <a href="https://github.com/laradock/laradock/tree/Laradock-ToolBox">Laradock-ToolBox</a> branch. <em>(outdated)</em></li> -</ul> - -<p><br></p> - -<blockquote> -<p><strong>Warning:</strong> If you used an older version of Laradock it&rsquo;s highly recommended to rebuild the containers you need to use <a href="#Build-Re-build-Containers">see how you rebuild a container</a> in order to prevent as much errors as possible.</p> -</blockquote> - -<p><br></p> - -<p>1 - Enter the laradock folder and rename <code>env-example</code> to <code>.env</code></p> - -<pre><code class="language-shell">cp env-example .env -</code></pre> - -<p>You can edit the <code>.env</code> file to chose which software&rsquo;s you want to be installed in your environment. You can always refer to the <code>docker-compose.yml</code> file to see how those variables are been used.</p> - -<p>2 - Build the enviroment and run it using <code>docker-compose</code></p> - -<p>In this example we&rsquo;ll see how to run NGINX (web server) and MySQL (database engine) to host a PHP Web Scripts:</p> - -<pre><code class="language-bash">docker-compose up -d nginx mysql -</code></pre> - -<p><strong>Note</strong>: The <code>workspace</code> and <code>php-fpm</code> will run automatically in most of the cases, so no need to specify them in the <code>up</code> command. If you couldn&rsquo;t find them running then you need specify them as follow: <code>docker-compose up -d nginx php-fpm mysql workspace</code>.</p> - -<p>You can select your own combination of containers form <a href="http://laradock.io/introduction/#supported-software-images">this list</a>.</p> - -<p><em>(Please note that sometimes we forget to update the docs, so check the <code>docker-compose.yml</code> file to see an updated list of all available containers).</em></p> - -<p><br> -3 - Enter the Workspace container, to execute commands like (Artisan, Composer, PHPUnit, Gulp, &hellip;)</p> - -<pre><code class="language-bash">docker-compose exec workspace bash -</code></pre> - -<p><em>Alternatively, for Windows PowerShell users: execute the following command to enter any running container:</em></p> - -<pre><code class="language-bash">docker exec -it {workspace-container-id} bash -</code></pre> - -<p><strong>Note:</strong> You can add <code>--user=laradock</code> to have files created as your host&rsquo;s user. Example:</p> - -<pre><code class="language-shell">docker-compose exec --user=laradock workspace bash -</code></pre> - -<p><em>You can change the PUID (User id) and PGID (group id) variables from the <code>.env</code> file)</em></p> - -<p><br> -4 - Update your project configurations to use the database host</p> - -<p>Open your PHP project&rsquo;s <code>.env</code> file or whichever configuration file you are reading from, and set the database host <code>DB_HOST</code> to <code>mysql</code>:</p> - -<pre><code class="language-env">DB_HOST=mysql -</code></pre> - -<p><em>If you want to install Laravel as PHP project, see <a href="#Install-Laravel">How to Install Laravel in a Docker Container</a>.</em></p> - -<p><br> -5 - Open your browser and visit your localhost address <code>http://localhost/</code>. If you followed the multiple projects setup, you can visit <code>http://project-1.dev/</code> and <code>http://project-2.dev/</code>. But first don&rsquo;t</p> - - - - - diff --git a/docs/help/index.html b/docs/help/index.html deleted file mode 100644 index 65beb98f..00000000 --- a/docs/help/index.html +++ /dev/null @@ -1,498 +0,0 @@ - - - - - - - - - - - - Help & Questions - Laradock - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- - - - - -
- - -
- -
-
- - -
- - - -
-
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - diff --git a/docs/help/index.xml b/docs/help/index.xml deleted file mode 100644 index e3380084..00000000 --- a/docs/help/index.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - Helps on Laradock - http://laradock.io/help/index.xml - Recent content in Helps on Laradock - Hugo -- gohugo.io - en-us - - - - Help & Questions - http://laradock.io/help/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/help/ - <p>Join the chat room on <a href="https://gitter.im/Laradock/laradock">Gitter</a> and get help and support from the community.</p> - -<p>You can as well can open an <a href="https://github.com/laradock/laradock/issues">issue</a> on Github (will be labeled as Question) and discuss it with people on <a href="https://gitter.im/Laradock/laradock">Gitter</a>.</p> - - - - - \ No newline at end of file diff --git a/docs/images/favicon.ico b/docs/images/favicon.ico deleted file mode 100644 index e85006a3ce1c6fd81faa6d5a13095519c4a6fc96..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1150 zcmd6lF-yZh9L1kl>(HSEK`2y^4yB6->f+$wD)=oNY!UheIt03Q=;qj=;8*Bap_4*& za8yAl;wmmx5Yyi^7dXN-WYdJ-{qNqpcez|5t#Fr0qTSYcPTG`I2PBk8r$~4kg^0zN zCJe(rhix3do!L$bZ+IuZ{i08x=JR3=e+M4pv0KsKA??{u_*EFfo|`p&t`Vf=jn{)F z1fKk9hWsmYwqWAP^JO*5u*R;*L&dX3H$%S7oB$f0{ISh{QVXuncnzN67WQH2`lip7 zhX+VI$6x$1+$8gMjh4+1l0N#8_0Fh=N#EwpKk{SeE!)SHFB@xQFX3y+8sF#_@!bDW eIdI-IC`$c%>bk?KbPeN9RHtL<1^)v~#xMt8oB^@` diff --git a/docs/images/logo.png b/docs/images/logo.png deleted file mode 100644 index e2d54a4427e7a0181836cf29fd0ecd7ca33d38be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145650 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

    %Ww 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 diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index a515354d..00000000 --- a/docs/index.html +++ /dev/null @@ -1,2938 +0,0 @@ - - - - - - - - - - - - Laradock - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - -
    - - -
    - -
    -
    - - -
    - -
    -
    - -

    Introduction

    - - - -

    A full PHP development environment for Docker.

    - -

    Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.

    - -

    Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal…

    - -

    - -

    Quick Overview

    - -

    Let’s see how easy it is to install NGINX, PHP, Composer, MySQL, Redis and Beanstalkd:

    - -

    1 - Clone Laradock inside your PHP project:

    - -
    git clone https://github.com/Laradock/laradock.git
    -
    - -

    2 - Enter the laradock folder and rename env-example to .env.

    - -
    cp env-example .env
    -
    - -

    3 - Run your containers:

    - -
    docker-compose up -d nginx mysql redis beanstalkd
    -
    - -

    4 - Open your project’s .env file and set the following:

    - -
    DB_HOST=mysql
    -REDIS_HOST=redis
    -QUEUE_HOST=beanstalkd
    -
    - -

    5 - Open your browser and visit localhost: http://localhost.

    - -
    That's it! enjoy :)
    -
    - -

    - -

    Features

    - -
      -
    • Easy switch between PHP versions: 7.1, 7.0, 5.6…
    • -
    • Choose your favorite database engine: MySQL, Postgres, MariaDB…
    • -
    • Run your own combination of software: Memcached, HHVM, Beanstalkd…
    • -
    • Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI…
    • -
    • Easy to customize any container, with simple edit to the Dockerfile.
    • -
    • All Images extends from an official base Image. (Trusted base Images).
    • -
    • Pre-configured NGINX to host any code at your root directory.
    • -
    • Can use Laradock per project, or single Laradock for all projects.
    • -
    • Easy to install/remove software’s in Containers using environment variables.
    • -
    • Clean and well structured Dockerfiles (Dockerfile).
    • -
    • Latest version of the Docker Compose file (docker-compose).
    • -
    • Everything is visible and editable.
    • -
    • Fast Images Builds.
    • -
    • More to come every week..
    • -
    - -

    - -

    Supported Software (Images)

    - -

    In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container. -You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.

    - -
      -
    • Database Engines: -MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - MSSQL - PostgreSQL - Postgres Postgis.
    • -
    • Cache Engines: -Redis - Memcached - Aerospike
    • -
    • PHP Servers: -NGINX - Apache2 - Caddy
    • -
    • PHP Compilers: -PHP FPM - HHVM
    • -
    • Message Queuing: -Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console - PHP Worker
    • -
    • Tools: -HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varnish - PhpMyAdmin - Adminer - PgAdmin - MailHog…
    • -
    - -

    Laradock introduces the Workspace Image, as a development environment. -It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.

    - -

    Workspace Image Tools -PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush…

    - -

    You can choose, which tools to install in your workspace container and other containers, from the .env file.

    - -
    -

    If you modify docker-compose.yml, .env or any dockerfile file, you must re-build your containers, to see those effects in the running instance.

    -
    - -

    If you can’t find your Software in the list, build it yourself and sumit it. Contributions are welcomed :)

    - -

    - -

    What is Docker?

    - -

    Docker is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of operating-system-level virtualization on Linux, Mac OS and Windows.

    - -

    - -

    Why Docker not Vagrant!?

    - -

    Vagrant creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.

    - -

    Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you lightweight Virtual Containers, that share the same kernel and allow to safely execute independent processes.

    - -

    In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.

    - -

    Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).

    - -

    - -

    Demo Video

    - -

    What’s better than a Demo Video:

    - -
      -
    • Laradock v5.* (soon or never)
    • -
    • Laradock v4.*
    • -
    • Laradock v2.*
    • -
    • Laradock v0.3
    • -
    • Laradock v0.1
    • -
    - -

    - -

    Chat with us

    - -

    You are welcome to join our chat room on Gitter.

    - -

    Gitter

    - - -

    Getting Started

    - - - -

    Requirements

    - - - -

    Installation

    - -

    Choose the setup the best suits your needs.

    - - - -

    - -

    A) Setup for Single Project

    - -
    -

    (Follow these steps if you want a separate Docker environment for each project)

    -
    - -

    - -

    A.1) Already have a PHP project:

    - -

    1 - Clone laradock on your project root directory:

    - -
    git submodule add https://github.com/Laradock/laradock.git
    -
    - -

    Notes:

    - -
      -
    • If you are not using Git yet for your project, you can use git clone instead of git submodule.

    • - -
    • Note 2: To keep track of your Laradock changes, between your projects and also keep Laradock updated. Check this

    • -
    - -

    Your folder structure should look like this:

    - -
    + project-a
    -	+ laradock-a
    -+ project-b
    -	+ laradock-b
    -
    - -

    (It’s important to rename the folders differently in each project.)

    - -
    -

    Now jump to the Usage section.

    -
    - -

    - -

    A.2) Don’t have a PHP project yet:

    - -

    1 - Clone this repository anywhere on your machine:

    - -
    git clone https://github.com/laradock/laradock.git
    -
    - -

    Your folder structure should look like this:

    - -
    + laradock
    -+ project-z
    -
    - -

    2 - Edit your web server sites configuration.

    - -

    In case of NGINX: open nginx/sites/default.conf and change the root from /var/www/public to /var/www/{my-project-folder-name}/public.

    - -

    Or you can keep default.conf as it is, and create a separate config my-site.conf file for it.

    - -

    In case of Apache: :P

    - -


    - -
    -

    Now jump to the Usage section.

    -
    - -

    - -

    B) Setup for Multiple Projects:

    - -
    -

    (Follow these steps if you want a single Docker environment for all your project)

    -
    - -

    1 - Clone this repository anywhere on your machine (similar to Steps A.2. from above):

    - -
    git clone https://github.com/laradock/laradock.git
    -
    - -

    Your folder structure should look like this:

    - -
    + laradock
    -+ project-1
    -+ project-2
    -
    - -

    2 - Go to nginx/sites and create config files to point to different project directory when visiting different domains.

    - -

    Laradock by default includes project-1.conf and project-2.conf as working samples.

    - -

    3 - change the default names project-n:

    - -

    You can rename the config files, project folders and domains as you like, just make sure the root in the config files, is pointing to the correct project folder name.

    - -

    4 - Add the domains to the hosts files.

    - -
    127.0.0.1  project-1.dev
    -127.0.0.1  project-2.dev
    -
    - -
    -

    Now jump to the Usage section.

    -
    - -

    - -

    Usage

    - -

    Read Before starting:

    - -

    If you are using Docker Toolbox (VM), do one of the following:

    - - - -


    - -
    -

    Warning: If you used an older version of Laradock it’s highly recommended to rebuild the containers you need to use see how you rebuild a container in order to prevent as much errors as possible.

    -
    - -


    - -

    1 - Enter the laradock folder and rename env-example to .env

    - -
    cp env-example .env
    -
    - -

    You can edit the .env file to chose which software’s you want to be installed in your environment. You can always refer to the docker-compose.yml file to see how those variables are been used.

    - -

    2 - Build the enviroment and run it using docker-compose

    - -

    In this example we’ll see how to run NGINX (web server) and MySQL (database engine) to host a PHP Web Scripts:

    - -
    docker-compose up -d nginx mysql
    -
    - -

    Note: The workspace and php-fpm will run automatically in most of the cases, so no need to specify them in the up command. If you couldn’t find them running then you need specify them as follow: docker-compose up -d nginx php-fpm mysql workspace.

    - -

    You can select your own combination of containers form this list.

    - -

    (Please note that sometimes we forget to update the docs, so check the docker-compose.yml file to see an updated list of all available containers).

    - -


    -3 - Enter the Workspace container, to execute commands like (Artisan, Composer, PHPUnit, Gulp, …)

    - -
    docker-compose exec workspace bash
    -
    - -

    Alternatively, for Windows PowerShell users: execute the following command to enter any running container:

    - -
    docker exec -it {workspace-container-id} bash
    -
    - -

    Note: You can add --user=laradock to have files created as your host’s user. Example:

    - -
    docker-compose exec --user=laradock workspace bash
    -
    - -

    You can change the PUID (User id) and PGID (group id) variables from the .env file)

    - -


    -4 - Update your project configurations to use the database host

    - -

    Open your PHP project’s .env file or whichever configuration file you are reading from, and set the database host DB_HOST to mysql:

    - -
    DB_HOST=mysql
    -
    - -

    If you want to install Laravel as PHP project, see How to Install Laravel in a Docker Container.

    - -


    -5 - Open your browser and visit your localhost address http://localhost/. If you followed the multiple projects setup, you can visit http://project-1.dev/ and http://project-2.dev/. But first don’t

    - - -

    Documentation

    - - - -

    - -

    List current running Containers

    - -
    docker ps
    -
    - -

    You can also use the following command if you want to see only this project containers:

    - -
    docker-compose ps
    -
    - -


    -

    - -

    Close all running Containers

    - -
    docker-compose stop
    -
    - -

    To stop single container do:

    - -
    docker-compose stop {container-name}
    -
    - -


    -

    - -

    Delete all existing Containers

    - -
    docker-compose down
    -
    - -


    -

    - -

    Enter a Container (run commands in a running Container)

    - -

    1 - First list the current running containers with docker ps

    - -

    2 - Enter any container using:

    - -
    docker-compose exec {container-name} bash
    -
    - -

    Example: enter MySQL container

    - -
    docker-compose exec mysql bash
    -
    - -

    Example: enter to MySQL prompt within MySQL container

    - -
    docker-compose exec mysql mysql -u homestead -psecret
    -
    - -

    3 - To exit a container, type exit.

    - -


    -

    - -

    Edit default container configuration

    - -

    Open the docker-compose.yml and change anything you want.

    - -

    Examples:

    - -

    Change MySQL Database Name:

    - -
        environment:
    -        MYSQL_DATABASE: laradock
    -    ...
    -
    - -

    Change Redis default port to 1111:

    - -
        ports:
    -        - "1111:6379"
    -    ...
    -
    - -


    -

    - -

    Edit a Docker Image

    - -

    1 - Find the Dockerfile of the image you want to edit, -
    -example for mysql it will be mysql/Dockerfile.

    - -

    2 - Edit the file the way you want.

    - -

    3 - Re-build the container:

    - -
    docker-compose build mysql
    -
    - -

    More info on Containers rebuilding here.

    - -


    -

    - -

    Build/Re-build Containers

    - -

    If you do any change to any Dockerfile make sure you run this command, for the changes to take effect:

    - -
    docker-compose build
    -
    - -

    Optionally you can specify which container to rebuild (instead of rebuilding all the containers):

    - -
    docker-compose build {container-name}
    -
    - -

    You might use the --no-cache option if you want full rebuilding (docker-compose build --no-cache {container-name}).

    - -


    -

    - -

    Add more Software (Docker Images)

    - -

    To add an image (software), just edit the docker-compose.yml and add your container details, to do so you need to be familiar with the docker compose file syntax.

    - -


    -

    - -

    View the Log files

    - -

    The NGINX Log file is stored in the logs/nginx directory.

    - -

    However to view the logs of all the other containers (MySQL, PHP-FPM,…) you can run this:

    - -
    docker logs {container-name}
    -
    - -

    More options

    - -
    docker logs -f {container-name}
    -
    - -


    -

    - -

    - -

    Install PHP Extensions

    - -

    Before installing PHP extensions, you have to decide whether you need for the FPM or CLI because each lives on a different container, if you need it for both you have to edit both containers.

    - -

    The PHP-FPM extensions should be installed in php-fpm/Dockerfile-XX. (replace XX with your default PHP version number). -
    -The PHP-CLI extensions should be installed in workspace/Dockerfile.

    - -


    -

    - -

    Change the (PHP-FPM) Version

    - -

    By default PHP-FPM 7.0 is running.

    - -
    -

    The PHP-FPM is responsible of serving your application code, you don’t have to change the PHP-CLI version if you are planning to run your application on different PHP-FPM version.

    -
    - -

    A) Switch from PHP 7.0 to PHP 5.6

    - -

    1 - Open the docker-compose.yml.

    - -

    2 - Search for Dockerfile-70 in the PHP container section.

    - -

    3 - Change the version number, by replacing Dockerfile-70 with Dockerfile-56, like this:

    - -
        php-fpm:
    -        build:
    -            context: ./php-fpm
    -            dockerfile: Dockerfile-70
    -    ...
    -
    - -

    4 - Finally rebuild the container

    - -
    docker-compose build php-fpm
    -
    - -
    -

    For more details about the PHP base image, visit the official PHP docker images.

    -
    - -

    B) Switch from PHP 7.0 or 5.6 to PHP 5.5

    - -

    We do not natively support PHP 5.5 anymore, but you can get it in few steps:

    - -

    1 - Clone https://github.com/laradock/php-fpm.

    - -

    3 - Rename Dockerfile-56 to Dockerfile-55.

    - -

    3 - Edit the file FROM php:5.6-fpm to FROM php:5.5-fpm.

    - -

    4 - Build an image from Dockerfile-55.

    - -

    5 - Open the docker-compose.yml file.

    - -

    6 - Point php-fpm to your Dockerfile-55 file.

    - -


    -

    - -

    Change the PHP-CLI Version

    - -

    By default PHP-CLI 7.0 is running.

    - -
    -

    Note: it’s not very essential to edit the PHP-CLI version. The PHP-CLI is only used for the Artisan Commands & Composer. It doesn’t serve your Application code, this is the PHP-FPM job.

    -
    - -

    The PHP-CLI is installed in the Workspace container. To change the PHP-CLI version you need to edit the workspace/Dockerfile.

    - -

    Right now you have to manually edit the Dockerfile or create a new one like it’s done for the PHP-FPM. (consider contributing).

    - -


    -

    - -

    Install xDebug

    - -

    1 - First install xDebug in the Workspace and the PHP-FPM Containers: -
    -a) open the docker-compose.yml file -
    -b) search for the INSTALL_XDEBUG argument under the Workspace Container -
    -c) set it to true -
    -d) search for the INSTALL_XDEBUG argument under the PHP-FPM Container -
    -e) set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_XDEBUG=true
    -    ...
    -    php-fpm:
    -        build:
    -            context: ./php-fpm
    -            args:
    -                - INSTALL_XDEBUG=true
    -    ...
    -
    - -

    2 - Re-build the containers docker-compose build workspace php-fpm

    - -

    3 - Open laradock/workspace/xdebug.ini and/or laradock/php-fpm/xdebug.ini and enable at least the following configurations:

    - -
    xdebug.remote_autostart=1
    -xdebug.remote_enable=1
    -xdebug.remote_connect_back=1
    -
    - -

    For information on how to configure xDebug with your IDE and work it out, check this Repository.

    - -


    -

    - -

    Start/Stop xDebug:

    - -

    By installing xDebug, you are enabling it to run on startup by default.

    - -

    To control the behavior of xDebug (in the php-fpm Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose):

    - -
      -
    • Stop xDebug from running by default: .php-fpm/xdebug stop.
    • -
    • Start xDebug by default: .php-fpm/xdebug start.
    • -
    • See the status: .php-fpm/xdebug status.
    • -
    - -

    Note: If .php-fpm/xdebug doesn’t execute and gives Permission Denied error the problem can be that file xdebug doesn’t have execution access. This can be fixed by running chmod command with desired access permissions.

    - -


    -

    - -

    Install Deployer (Deployment tool for PHP)

    - -

    1 - Open the docker-compose.yml file -
    -2 - Search for the INSTALL_DEPLOYER argument under the Workspace Container -
    -3 - Set it to true -

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_DEPLOYER=true
    -    ...
    -
    - -

    4 - Re-build the containers docker-compose build workspace

    - -

    Deployer Documentation Here

    - -


    -

    - -


    -

    - -

    Prepare Laradock for Production

    - -

    It’s recommended for production to create a custom docker-compose.yml file. For that reason, Laradock is shipped with production-docker-compose.yml which should contain only the containers you are planning to run on production (usage example: docker-compose -f production-docker-compose.yml up -d nginx mysql redis ...).

    - -

    Note: The Database (MySQL/MariaDB/…) ports should not be forwarded on production, because Docker will automatically publish the port on the host, which is quite insecure, unless specifically told not to. So make sure to remove these lines:

    - -
    ports:
    -    - "3306:3306"
    -
    - -

    To learn more about how Docker publishes ports, please read this excellent post on the subject.

    - -


    -

    - -

    Setup Laravel and Docker on Digital Ocean

    - -

    Full Guide Here

    - -


    -

    - -

    - -

    Install Laravel from a Docker Container

    - -

    1 - First you need to enter the Workspace Container.

    - -

    2 - Install Laravel.

    - -

    Example using Composer

    - -
    composer create-project laravel/laravel my-cool-app "5.2.*"
    -
    - -
    -

    We recommend using composer create-project instead of the Laravel installer, to install Laravel.

    -
    - -

    For more about the Laravel installation click here.

    - -

    3 - Edit docker-compose.yml to Map the new application path:

    - -

    By default, Laradock assumes the Laravel application is living in the parent directory of the laradock folder.

    - -

    Since the new Laravel application is in the my-cool-app folder, we need to replace ../:/var/www with ../my-cool-app/:/var/www, as follow:

    - -
        application:
    -		 image: tianon/true
    -        volumes:
    -            - ../my-cool-app/:/var/www
    -    ...
    -
    - -

    4 - Go to that folder and start working..

    - -
    cd my-cool-app
    -
    - -

    5 - Go back to the Laradock installation steps to see how to edit the .env file.

    - -


    -

    - -

    Run Artisan Commands

    - -

    You can run artisan commands and many other Terminal commands from the Workspace container.

    - -

    1 - Make sure you have the workspace container running.

    - -
    docker-compose up -d workspace // ..and all your other containers
    -
    - -

    2 - Find the Workspace container name:

    - -
    docker-compose ps
    -
    - -

    3 - Enter the Workspace container:

    - -
    docker-compose exec workspace bash
    -
    - -

    Add --user=laradock (example docker-compose exec --user=laradock workspace bash) to have files created as your host’s user.

    - -

    4 - Run anything you want :)

    - -
    php artisan
    -
    - -
    Composer update
    -
    - -
    phpunit
    -
    - -


    -

    - -

    Run Laravel Queue Worker

    - -

    1 - First add php-worker container. It will be similar as like PHP-FPM Container. -
    -a) open the docker-compose.yml file -
    -b) add a new service container by simply copy-paste this section below PHP-FPM container

    - -
        php-worker:
    -      build:
    -        context: ./php-fpm
    -        dockerfile: Dockerfile-70 # or Dockerfile-56, choose your PHP-FPM container setting
    -      volumes_from:
    -        - applications
    -      command: php artisan queue:work
    -
    - -

    2 - Start everything up

    - -
    docker-compose up -d php-worker
    -
    - -


    -

    - -

    Use Redis

    - -

    1 - First make sure you run the Redis Container (redis) with the docker-compose up command.

    - -
    docker-compose up -d redis
    -
    - -

    2 - Open your Laravel’s .env file and set the REDIS_HOST to redis

    - -
    REDIS_HOST=redis
    -
    - -

    If you don’t find the REDIS_HOST variable in your .env file. Go to the database configuration file config/database.php and replace the default 127.0.0.1 IP with redis for Redis like this:

    - -
    'redis' => [
    -    'cluster' => false,
    -    'default' => [
    -        'host'     => 'redis',
    -        'port'     => 6379,
    -        'database' => 0,
    -    ],
    -],
    -
    - -

    3 - To enable Redis Caching and/or for Sessions Management. Also from the .env file set CACHE_DRIVER and SESSION_DRIVER to redis instead of the default file.

    - -
    CACHE_DRIVER=redis
    -SESSION_DRIVER=redis
    -
    - -

    4 - Finally make sure you have the predis/predis package (~1.0) installed via Composer:

    - -
    composer require predis/predis:^1.0
    -
    - -

    5 - You can manually test it from Laravel with this code:

    - -
    \Cache::store('redis')->put('Laradock', 'Awesome', 10);
    -
    - -


    -

    - -

    Use Mongo

    - -

    1 - First install mongo in the Workspace and the PHP-FPM Containers: -
    -a) open the docker-compose.yml file -
    -b) search for the INSTALL_MONGO argument under the Workspace Container -
    -c) set it to true -
    -d) search for the INSTALL_MONGO argument under the PHP-FPM Container -
    -e) set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_MONGO=true
    -    ...
    -    php-fpm:
    -        build:
    -            context: ./php-fpm
    -            args:
    -                - INSTALL_MONGO=true
    -    ...
    -
    - -

    2 - Re-build the containers docker-compose build workspace php-fpm

    - -

    3 - Run the MongoDB Container (mongo) with the docker-compose up command.

    - -
    docker-compose up -d mongo
    -
    - -

    4 - Add the MongoDB configurations to the config/database.php configuration file:

    - -
    'connections' => [
    -
    -    'mongodb' => [
    -        'driver'   => 'mongodb',
    -        'host'     => env('DB_HOST', 'localhost'),
    -        'port'     => env('DB_PORT', 27017),
    -        'database' => env('DB_DATABASE', 'database'),
    -        'username' => '',
    -        'password' => '',
    -        'options'  => [
    -            'database' => '',
    -        ]
    -    ],
    -
    -	// ...
    -
    -],
    -
    - -

    5 - Open your Laravel’s .env file and update the following variables:

    - -
      -
    • set the DB_HOST to your mongo.
    • -
    • set the DB_PORT to 27017.
    • -
    • set the DB_DATABASE to database.
    • -
    - -

    6 - Finally make sure you have the jenssegers/mongodb package installed via Composer and its Service Provider is added.

    - -
    composer require jenssegers/mongodb
    -
    - -

    More details about this here.

    - -

    7 - Test it:

    - -
      -
    • First let your Models extend from the Mongo Eloquent Model. Check the documentation.
    • -
    • Enter the Workspace Container.
    • -
    • Migrate the Database php artisan migrate.
    • -
    - -


    -

    - -

    Use PhpMyAdmin

    - -

    1 - Run the phpMyAdmin Container (phpmyadmin) with the docker-compose up command. Example:

    - -
    # use with mysql
    -docker-compose up -d mysql phpmyadmin
    -
    -# use with mariadb
    -docker-compose up -d mariadb phpmyadmin
    -
    - -

    2 - Open your browser and visit the localhost on port 8080: http://localhost:8080

    - -


    -

    - -

    Use Adminer

    - -

    1 - Run the Adminer Container (adminer) with the docker-compose up command. Example:

    - -
    docker-compose up -d adminer  
    -
    - -

    2 - Open your browser and visit the localhost on port 8080: http://localhost:8080

    - -


    -

    - -

    Use PgAdmin

    - -

    1 - Run the pgAdmin Container (pgadmin) with the docker-compose up command. Example:

    - -
    docker-compose up -d postgres pgadmin
    -
    - -

    2 - Open your browser and visit the localhost on port 5050: http://localhost:5050

    - -


    -

    - -

    Use Beanstalkd

    - -

    1 - Run the Beanstalkd Container:

    - -
    docker-compose up -d beanstalkd
    -
    - -

    2 - Configure Laravel to connect to that container by editing the config/queue.php config file.

    - -

    a. first set beanstalkd as default queue driver -b. set the queue host to beanstalkd : QUEUE_HOST=beanstalkd

    - -

    beanstalkd is now available on default port 11300.

    - -

    3 - Require the dependency package pda/pheanstalk using composer.

    - -

    Optionally you can use the Beanstalkd Console Container to manage your Queues from a web interface.

    - -

    1 - Run the Beanstalkd Console Container:

    - -
    docker-compose up -d beanstalkd-console
    -
    - -

    2 - Open your browser and visit http://localhost:2080/

    - -

    3 - Add the server

    - -
      -
    • Host: beanstalkd
    • -
    • Port: 11300
    • -
    - -

    4 - Done.

    - -


    -

    - -

    Use ElasticSearch

    - -

    1 - Run the ElasticSearch Container (elasticsearch) with the docker-compose up command:

    - -
    docker-compose up -d elasticsearch
    -
    - -

    2 - Open your browser and visit the localhost on port 9200: http://localhost:9200

    - -

    Install ElasticSearch Plugin

    - -

    1 - Install the ElasticSearch plugin like delete-by-query.

    - -
    docker exec {container-name} /usr/share/elasticsearch/bin/plugin install delete-by-query
    -
    - -

    2 - Restart elasticsearch container

    - -
    docker restart {container-name}
    -
    - -


    -

    - -

    Use Selenium

    - -

    1 - Run the Selenium Container (selenium) with the docker-compose up command. Example:

    - -
    docker-compose up -d selenium
    -
    - -

    2 - Open your browser and visit the localhost on port 4444 at the following URL: http://localhost:4444/wd/hub

    - -


    -

    - -

    Use RethinkDB

    - -

    The RethinkDB is an open-source Database for Real-time Web (RethinkDB). -A package (Laravel RethinkDB) is being developed and was released a version for Laravel 5.2 (experimental).

    - -

    1 - Run the RethinkDB Container (rethinkdb) with the docker-compose up command.

    - -
    docker-compose up -d rethinkdb
    -
    - -

    2 - Access the RethinkDB Administration Console http://localhost:8090/#tables for create a database called database.

    - -

    3 - Add the RethinkDB configurations to the config/database.php configuration file:

    - -
    'connections' => [
    -
    -	'rethinkdb' => [
    -		'name'      => 'rethinkdb',
    -		'driver'    => 'rethinkdb',
    -		'host'      => env('DB_HOST', 'rethinkdb'),
    -		'port'      => env('DB_PORT', 28015),
    -		'database'  => env('DB_DATABASE', 'test'),
    -	]
    -
    -	// ...
    -
    -],
    -
    - -

    4 - Open your Laravel’s .env file and update the following variables:

    - -
      -
    • set the DB_CONNECTION to your rethinkdb.
    • -
    • set the DB_HOST to rethinkdb.
    • -
    • set the DB_PORT to 28015.
    • -
    • set the DB_DATABASE to database.
    • -
    - -


    -

    - -

    Use Minio

    - -

    1 - Configure Minio: - - On the workspace container, change INSTALL_MC to true to get the client - - Set MINIO_ACCESS_KEY and MINIO_ACCESS_SECRET if you wish to set proper keys

    - -

    2 - Run the Minio Container (minio) with the docker-compose up command. Example:

    - -
    docker-compose up -d minio
    -
    - -

    3 - Open your browser and visit the localhost on port 9000 at the following URL: http://localhost:9000

    - -

    4 - Create a bucket either through the webui or using the mc client:

    - -
      mc mb minio/bucket
    -
    - -

    5 - When configuring your other clients use the following details:

    - -
      S3_HOST=http://minio
    -  S3_KEY=access
    -  S3_SECRET=secretkey
    -  S3_REGION=us-east-1
    -  S3_BUCKET=bucket
    -
    - -


    -

    - -


    -

    - -

    Install CodeIgniter

    - -

    To install CodeIgniter 3 on Laradock all you have to do is the following simple steps:

    - -

    1 - Open the docker-compose.yml file.

    - -

    2 - Change CODEIGNITER=false to CODEIGNITER=true.

    - -

    3 - Re-build your PHP-FPM Container docker-compose build php-fpm.

    - -


    -

    - -

    Miscellaneous

    - -


    -

    - -

    Change the timezone

    - -

    To change the timezone for the workspace container, modify the TZ build argument in the Docker Compose file to one in the TZ database.

    - -

    For example, if I want the timezone to be New York:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - TZ=America/New_York
    -    ...
    -
    - -

    We also recommend setting the timezone in Laravel.

    - -


    -

    - -

    Adding cron jobs

    - -

    You can add your cron jobs to workspace/crontab/root after the php artisan line.

    - -
    * * * * * php /var/www/artisan schedule:run >> /dev/null 2>&1
    -
    -# Custom cron
    -* * * * * root echo "Every Minute" > /var/log/cron.log 2>&1
    -
    - -

    Make sure you change the timezone if you don’t want to use the default (UTC).

    - -


    -

    - -

    Access workspace via ssh

    - -

    You can access the workspace container through localhost:2222 by setting the INSTALL_WORKSPACE_SSH build argument to true.

    - -

    To change the default forwarded port for ssh:

    - -
        workspace:
    -		ports:
    -			- "2222:22" # Edit this line
    -    ...
    -
    - -


    -

    - -

    MySQL access from host

    - -

    You can forward the MySQL/MariaDB port to your host by making sure these lines are added to the mysql or mariadb section of the docker-compose.yml or in your environment specific Compose file.

    - -
    ports:
    -    - "3306:3306"
    -
    - -


    -

    - -

    MySQL root access

    - -

    The default username and password for the root MySQL user are root and root.

    - -

    1 - Enter the MySQL container: docker-compose exec mysql bash.

    - -

    2 - Enter mysql: mysql -uroot -proot for non root access use mysql -uhomestead -psecret.

    - -

    3 - See all users: SELECT User FROM mysql.user;

    - -

    4 - Run any commands show databases, show tables, select * from......

    - -


    -

    - -

    Change MySQL port

    - -

    Modify the mysql/my.cnf file to set your port number, 1234 is used as an example.

    - -
    [mysqld]
    -port=1234
    -
    - -

    If you need MySQL access from your host, do not forget to change the internal port number ("3306:3306" -> "3306:1234") in the docker-compose configuration file.

    - -


    -

    - -

    Use custom Domain (instead of the Docker IP)

    - -

    Assuming your custom domain is laravel.dev

    - -

    1 - Open your /etc/hosts file and map your localhost address 127.0.0.1 to the laravel.dev domain, by adding the following:

    - -
    127.0.0.1    laravel.dev
    -
    - -

    2 - Open your browser and visit {http://laravel.dev}

    - -

    Optionally you can define the server name in the NGINX configuration file, like this:

    - -
    server_name laravel.dev;
    -
    - -


    -

    - -

    Enable Global Composer Build Install

    - -

    Enabling Global Composer Install during the build for the container allows you to get your composer requirements installed and available in the container after the build is done.

    - -

    1 - Open the docker-compose.yml file

    - -

    2 - Search for the COMPOSER_GLOBAL_INSTALL argument under the Workspace Container and set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - COMPOSER_GLOBAL_INSTALL=true
    -    ...
    -
    - -

    3 - Now add your dependencies to workspace/composer.json

    - -

    4 - Re-build the Workspace Container docker-compose build workspace

    - -


    -

    - -

    Install Prestissimo

    - -

    Prestissimo is a plugin for composer which enables parallel install functionality.

    - -

    1 - Enable Running Global Composer Install during the Build:

    - -

    Click on this Enable Global Composer Build Install and do steps 1 and 2 only then continue here.

    - -

    2 - Add prestissimo as requirement in Composer:

    - -

    a - Now open the workspace/composer.json file

    - -

    b - Add "hirak/prestissimo": "^0.3" as requirement

    - -

    c - Re-build the Workspace Container docker-compose build workspace

    - -


    -

    - -

    Install Node + NVM

    - -

    To install NVM and NodeJS in the Workspace container

    - -

    1 - Open the docker-compose.yml file

    - -

    2 - Search for the INSTALL_NODE argument under the Workspace Container and set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_NODE=true
    -    ...
    -
    - -

    3 - Re-build the container docker-compose build workspace

    - -


    -

    - -

    Install Node + YARN

    - -

    Yarn is a new package manager for JavaScript. It is so faster than npm, which you can find here.To install NodeJS and Yarn in the Workspace container:

    - -

    1 - Open the docker-compose.yml file

    - -

    2 - Search for the INSTALL_NODE and INSTALL_YARN argument under the Workspace Container and set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_NODE=true
    -                - INSTALL_YARN=true
    -    ...
    -
    - -

    3 - Re-build the container docker-compose build workspace

    - -


    -

    - -

    Install Linuxbrew

    - -

    Linuxbrew is a package manager for Linux. It is the Linux version of MacOS Homebrew and can be found here. To install Linuxbrew in the Workspace container:

    - -

    1 - Open the docker-compose.yml file

    - -

    2 - Search for the INSTALL_LINUXBREW argument under the Workspace Container and set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_LINUXBREW=true
    -    ...
    -
    - -

    3 - Re-build the container docker-compose build workspace

    - -


    - -

    - -

    Common Terminal Aliases

    - -

    When you start your docker container, Laradock will copy the aliases.sh file located in the laradock/workspace directory and add sourcing to the container ~/.bashrc file.

    - -

    You are free to modify the aliases.sh as you see fit, adding your own aliases (or function macros) to suit your requirements.

    - -


    -

    - -

    Install Aerospike extension

    - -

    1 - First install aerospike in the Workspace and the PHP-FPM Containers: -
    -a) open the docker-compose.yml file -
    -b) search for the INSTALL_AEROSPIKE_EXTENSION argument under the Workspace Container -
    -c) set it to true -
    -d) search for the INSTALL_AEROSPIKE_EXTENSION argument under the PHP-FPM Container -
    -e) set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_AEROSPIKE_EXTENSION=true
    -    ...
    -    php-fpm:
    -        build:
    -            context: ./php-fpm
    -            args:
    -                - INSTALL_AEROSPIKE_EXTENSION=true
    -    ...
    -
    - -

    2 - Re-build the containers docker-compose build workspace php-fpm

    - -


    -

    - -

    Install Laravel Envoy (Envoy Task Runner)

    - -

    1 - Open the docker-compose.yml file -
    -2 - Search for the INSTALL_LARAVEL_ENVOY argument under the Workspace Container -
    -3 - Set it to true -

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_LARAVEL_ENVOY=true
    -    ...
    -
    - -

    4 - Re-build the containers docker-compose build workspace

    - -

    Laravel Envoy Documentation Here

    - -


    -

    - -

    PHPStorm Debugging Guide

    - -

    Remote debug Laravel web and phpunit tests.

    - -

    Debugging Guide Here

    - -


    -

    - -

    Keep track of your Laradock changes

    - -
      -
    1. Fork the Laradock repository.
    2. -
    3. Use that fork as a submodule.
    4. -
    5. Commit all your changes to your fork.
    6. -
    7. Pull new stuff from the main repository from time to time.
    8. -
    - -


    -

    - -

    Upgrading Laradock

    - -

    Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requires upgrading Laradock from v3.* to v4.*:

    - -
      -
    1. Stop the docker VM docker-machine stop {default}
    2. -
    3. Install Docker for Mac or Windows.
    4. -
    5. Upgrade Laradock to v4.*.* (git pull origin master)
    6. -
    7. Use Laradock as you used to do: docker-compose up -d nginx mysql.
    8. -
    - -

    Note: If you face any problem with the last step above: rebuild all your containers -docker-compose build --no-cache -“Warning Containers Data might be lost!”

    - -


    -

    - -

    Improve speed on MacOS

    - -

    Sharing code into Docker containers with osxfs have very poor performance compared to Linux. Likely there are some workarounds:

    - -

    Workaround A: using dinghy

    - -

    Dinghy creates its own VM using docker-machine, it will not modify your existing docker-machine VMs.

    - -

    Quick Setup giude, (we recommend you check their docs)

    - -

    1) brew tap codekitchen/dinghy

    - -

    2) brew install dinghy

    - -

    3) dinghy create --provider virtualbox (must have virtualbox installed, but they support other providers if you prefer)

    - -

    4) after the above command is done it will display some env variables, copy them to the bash profile or zsh or.. (this will instruct docker to use the server running inside the VM)

    - -

    5) docker-compose up ...

    - -

    Workaround B: using d4m-nfs

    - -

    D4m-nfs automatically mount NFS volume instead of osxfs one.

    - -

    1) Update the Docker [File Sharing] preferences:

    - -

    Click on the Docker Icon > Preferences > (remove everything form the list except /tmp).

    - -

    2) Restart Docker.

    - -

    3) Clone the d4m-nfs repository to your home directory.

    - -
    git clone https://github.com/IFSight/d4m-nfs ~/d4m-nfs
    -
    - -

    4) Create (or edit) the file ~/d4m-nfs/etc/d4m-nfs-mounts.txt, and write the follwing configuration in it:

    - -
    /Users:/Users
    -
    - -

    5) Create (or edit) the file /etc/exports, make sure it exists and is empty. (There may be collisions if you come from Vagrant or if you already executed the d4m-nfs.sh script before).

    - -

    6) Run the d4m-nfs.sh script (might need Sudo):

    - -
    ~/d4m-nfs/d4m-nfs.sh
    -
    - -

    That’s it! Run your containers.. Example:

    - -
    docker-compose up ...
    -
    - -

    Note: If you faced any errors, try restarting Docker, and make sure you have no spaces in the d4m-nfs-mounts.txt file, and your /etc/exports file is clear.

    - -

    Other good workarounds:

    - - - -

    More details about this issue here.

    - -


    -

    - -

    Common Problems

    - -

    Here’s a list of the common problems you might face, and the possible solutions.

    - -


    - -

    I see a blank (white) page instead of the Laravel ‘Welcome’ page!

    - -

    Run the following command from the Laravel root directory:

    - -
    sudo chmod -R 777 storage bootstrap/cache
    -
    - -


    - -

    I see “Welcome to nginx” instead of the Laravel App!

    - -

    Use http://127.0.0.1 instead of http://localhost in your browser.

    - -


    - -

    I see an error message containing address already in use or port is already allocated

    - -

    Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in apache/httpd service or other development tools you have installed.

    - -


    - -

    I get NGINX error 404 Not Found on Windows.

    - -
      -
    1. Go to docker Settings on your Windows machine.
    2. -
    3. Click on the Shared Drives tab and check the drive that contains your project files.
    4. -
    5. Enter your windows username and password.
    6. -
    7. Go to the reset tab and click restart docker.
    8. -
    - -


    - -

    The time in my services does not match the current time

    - -
      -
    1. Make sure you’ve changed the timezone.
    2. -
    3. Stop and rebuild the containers (docker-compose up -d --build <services>)
    4. -
    - -


    - -

    I get MySQL connection refused

    - -

    This error sometimes happens because your Laravel application isn’t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:

    - -
      -
    • Option A - -
        -
      1. Check your running Laravel application IP by dumping Request::ip() variable using dd(Request::ip()) anywhere on your application. The result is the IP of your Laravel container.
      2. -
      3. Change the DB_HOST variable on env with the IP that you received from previous step.
      4. -
    • -
    • Option B - -
        -
      1. Change the DB_HOST value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as mysql
      2. -
    • -
    - - -

    Guides

    - - - - - -

    - -

    Production Setup on Digital Ocean

    - -

    Install Docker

    - -
      -
    • Visit DigitalOcean and login.
    • -
    • Click the Create Droplet button.
    • -
    • Open the One-click apps tab.
    • -
    • Select Docker with your preferred version.
    • -
    • Continue creating the droplet as you normally would.
    • -
    • If needed, check your e-mail for the droplet root password.
    • -
    - -

    SSH to your Server

    - -

    Find the IP address of the droplet in the DigitalOcean interface. Use it to connect to the server.

    - -
    ssh root@ipaddress
    -
    - -

    You may be prompted for a password. Type the one you found within your e-mailbox. It’ll then ask you to change the password.

    - -

    You can now check if Docker is available:

    - -
    $root@server:~# docker
    -
    - -

    Set Up Your Laravel Project

    - -
    $root@server:~# apt-get install git
    -$root@server:~# git clone https://github.com/laravel/laravel
    -$root@server:~# cd laravel
    -$root@server:~/laravel/ git submodule add https://github.com/Laradock/laradock.git
    -$root@server:~/laravel/ cd laradock
    -
    - -

    Install docker-compose command

    - -
    $root@server:~/laravel/laradock# curl -L https://github.com/docker/compose/releases/download/1.8.0/run.sh > /usr/local/bin/docker-compose
    -$root@server:~/chmod +x /usr/local/bin/docker-compose
    -
    - -

    Create Your Laradock Containers

    - -
    $root@server:~/laravel/laradock# docker-compose up -d nginx mysql
    -
    - -

    Note that more containers are available, find them in the docs or the docker-compose.yml file.

    - -

    Go to Your Workspace

    - -
    docker-compose exec workspace bash
    -
    - -

    Install and configure Laravel

    - -

    Let’s install Laravel’s dependencies, add the .env file, generate the key and give proper permissions to the cache folder.

    - -
    $ root@workspace:/var/www# composer install
    -$ root@workspace:/var/www# cp .env.example .env
    -$ root@workspace:/var/www# php artisan key:generate
    -$ root@workspace:/var/www# exit
    -$root@server:~/laravel/laradock# cd ..
    -$root@server:~/laravel# sudo chmod -R 777 storage bootstrap/cache
    -
    - -

    You can then view your Laravel site by visiting the IP address of your server in your browser. For example:

    - -
    http://192.168.1.1
    -
    - -

    It should show you the Laravel default welcome page.

    - -

    However, we want it to show up using your custom domain name, as well.

    - -

    Using Your Own Domain Name

    - -

    Login to your DNS provider, such as Godaddy, Namecheap.

    - -

    Point the Custom Domain Name Server to:

    - -
    ns1.digitalocean.com
    -ns2.digitalocean.com
    -ns3.digitalocean.com
    -
    - -

    Within DigitalOcean, you’ll need to change some settings, too.

    - -

    Visit: https://cloud.digitalocean.com/networking/domains

    - -

    Add your domain name and choose the server IP you’d provision earlier.

    - -

    Serving Site With NGINX (HTTP ONLY)

    - -

    Go back to command line.

    - -
    $root@server:~/laravel/laradock# cd nginx
    -$root@server:~/laravel/laradock/nginx# vim laravel.conf
    -
    - -

    Remove default_server

    - -
        listen 80 default_server;
    -    listen [::]:80 default_server ipv6only=on;
    -
    - -

    And add server_name (your custom domain)

    - -
        listen 80;
    -    listen [::]:80 ipv6only=on;
    -    server_name yourdomain.com;
    -
    - -

    Rebuild Your Nginx

    - -
    $root@server:~/laravel/laradock/nginx# docker-compose down
    -$root@server:~/laravel/laradock/nginx# docker-compose build nginx
    -
    - -

    Re Run Your Containers MYSQL and NGINX

    - -
    $root@server:~/laravel/laradock/nginx# docker-compose up -d nginx mysql
    -
    - -

    View Your Site with HTTP ONLY (http://yourdomain.com)

    - -

    Run Site on SSL with Let’s Encrypt Certificate

    - -

    Note: You need to Use Caddy here Instead of Nginx

    - -

    To go Caddy Folders and Edit CaddyFile

    - -
    $root@server:~/laravel/laradock# cd caddy
    -$root@server:~/laravel/laradock/caddy# vim Caddyfile
    -
    - -

    Remove 0.0.0.0:80

    - -
    0.0.0.0:80
    -root /var/www/public
    -
    - -

    and replace with your https://yourdomain.com

    - -
    https://yourdomain.com
    -root /var/www/public
    -
    - -

    uncomment tls

    - -
    #tls self-signed
    -
    - -

    and replace self-signed with your email address

    - -
    tls serverbreaker@gmai.com
    -
    - -

    This is needed Prior to Creating Let’s Encypt

    - -

    Run Your Caddy Container without the -d flag and Generate SSL with Let’s Encrypt

    - -
    $root@server:~/laravel/laradock/caddy# docker-compose up  caddy
    -
    - -

    You’ll be prompt here to enter your email… you may enter it or not

    - -
    Attaching to laradock_mysql_1, laradock_caddy_1
    -caddy_1               | Activating privacy features...
    -caddy_1               | Your sites will be served over HTTPS automatically using Let's Encrypt.
    -caddy_1               | By continuing, you agree to the Let's Encrypt Subscriber Agreement at:
    -caddy_1               |   https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf
    -caddy_1               | Activating privacy features... done.
    -caddy_1               | https://yourdomain.com
    -caddy_1               | http://yourdomain.com
    -
    - -

    After it finishes, press Ctrl + C to exit.

    - -

    Stop All Containers and ReRun Caddy and Other Containers on Background

    - -
    $root@server:~/laravel/laradock/caddy# docker-compose down
    -$root@server:~/laravel/laradock/caddy# docker-compose up -d mysql caddy
    -
    - -

    View your Site in the Browser Securely Using HTTPS (https://yourdomain.com)

    - -

    Note that Certificate will be Automatically Renew By Caddy

    - -
    -

    References:

    - - -
    - -


    -
    -
    -
    -

    - -

    - -

    PHPStorm XDebug Setup

    - - - -

    - -

    Intro

    - -

    Wiring up Laravel, Laradock [Laravel+Docker] and PHPStorm to play nice together complete with remote xdebug’ing as icing on top! Although this guide is based on PHPStorm Windows, -you should be able to adjust accordingly. This guide was written based on Docker for Windows Native.

    - -

    - -

    Installation

    - -
      -
    • This guide assumes the following: - -
        -
      • you have already installed and are familiar with Laravel, Laradock and PHPStorm.
      • -
      • you have installed Laravel as a parent of laradock. This guide assumes /c/_dk/laravel.
      • -
    • -
    - -

    - -

    hosts

    - -
      -
    • Add laravel to your hosts file located on Windows 10 at C:\Windows\System32\drivers\etc\hosts. It should be set to the IP of your running container. Mine is: 10.0.75.2 -On Windows you can find it by opening Windows Hyper-V Manager.

      - -
        -
      • Windows Hyper-V Manager
      • -
    • - -
    • Hosts File Editor makes it easy to change your hosts file.

      - -
        -
      • Set laravel to your docker host IP. See Example.
      • -
    • -
    - -

    - -

    Firewall

    - -

    Your PHPStorm will need to be able to receive a connection from PHP xdebug either your running workspace or php-fpm containers on port 9000. This means that your Windows Firewall should either enable connections from the Application PHPStorm OR the port.

    - -
      -
    • It is important to note that if the Application PHPStorm is NOT enabled in the firewall, you will not be able to recreate a rule to override that.
    • -
    • Also be aware that if you are installing/upgrade different versions of PHPStorm, you MAY have orphaned references to PHPStorm in your Firewall! You may decide to remove orphaned references however in either case, make sure that they are set to receive public TCP traffic.
    • -
    - -

    Edit laradock/docker-compose.yml

    - -

    Set the following variables:

    - -
    ### Workspace Utilities Container ###############
    -
    -    workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_XDEBUG=true
    -                - INSTALL_WORKSPACE_SSH=true
    -                ...
    -
    -
    -### PHP-FPM Container #####################
    -
    -    php-fpm:
    -        build:
    -            context: ./php-fpm
    -            args:
    -                - INSTALL_XDEBUG=true
    -                ...
    -
    -
    - -

    Edit xdebug.ini files

    - -
      -
    • laradock/workspace/xdebug.ini
    • -
    • laradock/php-fpm/xdebug.ini
    • -
    - -

    Set the following variables:

    - -
    xdebug.remote_autostart=1
    -xdebug.remote_enable=1
    -xdebug.remote_connect_back=1
    -xdebug.cli_color=1
    -
    - -

    - -

    Need to clean house first?

    - -

    Make sure you are starting with a clean state. For example, do you have other Laradock containers and images? -Here are a few things I use to clean things up.

    - -
      -
    • Delete all containers using grep laradock_ on the names, see: Remove all containers based on docker image name. -docker ps -a | awk '{ print $1,$2 }' | grep laradock_ | awk '{print $1}' | xargs -I {} docker rm {}

    • - -
    • Delete all images containing laradock. -docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {} -Note: This will only delete images that were built with Laradock, NOT laradock/* which are pulled down by Laradock such as laradock/workspace, etc. -Note: Some may fail with: -Error response from daemon: conflict: unable to delete 3f38eaed93df (cannot be forced) - image has dependent child images

    • - -
    • I added this to my .bashrc to remove orphaned images.

      - -
      dclean() {
      -    processes=`docker ps -q -f status=exited`
      -    if [ -n "$processes" ]; thend
      -      docker rm $processes
      -    fi
      -
      -    images=`docker images -q -f dangling=true`
      -    if [ -n "$images" ]; then
      -      docker rmi $images
      -    fi
      -}
      -
    • - -
    • If you frequently switch configurations for Laradock, you may find that adding the following and added to your .bashrc or equivalent useful: -```

      - -

      remove laravel* containers

      - -

      remove laravel_* images

      - -

      dcleanlaradockfunction() -{ - echo ‘Removing ALL containers associated with laradock’ - docker ps -a | awk ‘{ print $1,$2 }’ | grep laradock | awk ‘{print $1}’ | xargs -I {} docker rm {}

    • -
    - -

    # remove ALL images associated with laradock_ - # does NOT delete laradock/* which are hub images - echo ‘Removing ALL images associated with laradock‘ - docker images | awk ‘{print $1,$2,$3}’ | grep laradock | awk ‘{print $3}’ | xargs -I {} docker rmi {}

    - -

    echo ‘Listing all laradock docker hub images…’ - docker images | grep laradock

    - -

    echo ‘dcleanlaradock completed’ -}

    - -

    associate the above function with an alias

    - -

    so can recall/lookup by typing ‘alias’

    - -

    alias dcleanlaradock=dcleanlaradockfunction

    - -
    
    -<a name="InstallLaradockDialTone"></a>
    -## Let's get a dial-tone with Laravel
    -
    -
    - -

    barebones at this point

    - -

    docker-compose up -d nginx mysql

    - -

    run

    - -

    docker-compose ps

    - -

    Should see:

    - -
          Name                        Command             State                     Ports
    -
    - -
    - -

    laradock_mysql_1 docker-entrypoint.sh mysqld Up 0.0.0.0:3306->3306/tcp -laradock_nginx_1 nginx Up 0.0.0.0:443->443/tcp, 0.0.0.0:80->80/tcp -laradock_php-fpm_1 php-fpm Up 9000/tcp -laradock_volumes_data_1 true Exit 0 -laradock_volumes_source_1 true Exit 0 -laradock_workspace_1 /sbin/my_init Up 0.0.0.0:2222->22/tcp

    - -
    
    -<a name="enablePhpXdebug"></a>
    -## Enable xDebug on php-fpm
    -In a host terminal sitting in the laradock folder, run: `.php-fpm/xdebug status`
    -You should see something like the following:
    -
    - -

    xDebug status -laradock_php-fpm_1 -PHP 7.0.9 (cli) (built: Aug 10 2016 19:45:48) ( NTS ) -Copyright © 1997-2016 The PHP Group -Zend Engine v3.0.0, Copyright © 1998-2016 Zend Technologies - with Xdebug v2.4.1, Copyright © 2002-2016, by Derick Rethans -`` -Other commands include.php-fpm/xdebug start | stop`.

    - -

    If you have enabled xdebug=true in docker-compose.yml/php-fpm, xdebug will already be running when -php-fpm is started and listening for debug info on port 9000.

    - -

    - -

    PHPStorm Settings

    - -
      -
    • Here are some settings that are known to work:

      - -
        -
      • Settings/BuildDeploymentConnection

        - -
          -
        • Settings/BuildDeploymentConnection
        • -
      • - -
      • Settings/BuildDeploymentConnectionMappings

        - -
          -
        • Settings/BuildDeploymentConnectionMappings
        • -
      • - -
      • Settings/BuildDeploymentDebugger

        - -
          -
        • Settings/BuildDeploymentDebugger
        • -
      • - -
      • Settings/EditRunConfigurationRemoteWebDebug

        - -
          -
        • Settings/EditRunConfigurationRemoteWebDebug
        • -
      • - -
      • Settings/EditRunConfigurationRemoteExampleTestDebug

        - -
          -
        • Settings/EditRunConfigurationRemoteExampleTestDebug
        • -
      • - -
      • Settings/LangsPHPDebug

        - -
          -
        • Settings/LangsPHPDebug
        • -
      • - -
      • Settings/LangsPHPInterpreters

        - -
          -
        • Settings/LangsPHPInterpreters
        • -
      • - -
      • Settings/LangsPHPPHPUnit

        - -
          -
        • Settings/LangsPHPPHPUnit
        • -
      • - -
      • Settings/LangsPHPServers

        - -
          -
        • Settings/LangsPHPServers
        • -
      • - -
      • RemoteHost -To switch on this view, go to: Menu/Tools/Deployment/Browse Remote Host.

        - -
          -
        • RemoteHost
        • -
      • - -
      • RemoteWebDebug

        - -
          -
        • DebugRemoteOn
        • -
      • - -
      • EditRunConfigurationRemoteWebDebug -Go to: Menu/Run/Edit Configurations.

        - -
          -
        • EditRunConfigurationRemoteWebDebug
        • -
      • - -
      • EditRunConfigurationRemoteExampleTestDebug -Go to: Menu/Run/Edit Configurations.

        - -
          -
        • EditRunConfigurationRemoteExampleTestDebug
        • -
      • - -
      • WindowsFirewallAllowedApps -Go to: Control Panel\All Control Panel Items\Windows Firewall\Allowed apps.

        - -
          -
        • WindowsFirewallAllowedApps.png
        • -
      • - -
      • hosts -Edit: C:\Windows\System32\drivers\etc\hosts.

        - -
      • -
    • -
    - -

    - -

    Usage

    - -

    - -

    Run ExampleTest

    - -
      -
    • right-click on tests/ExampleTest.php - -
        -
      • Select: Run 'ExampleTest.php' or Ctrl+Shift+F10.
      • -
      • Should pass!! You just ran a remote test via SSH!
      • -
    • -
    - -

    - -

    Debug ExampleTest

    - -
      -
    • Open to edit: tests/ExampleTest.php
    • -
    • Add a BreakPoint on line 16: $this->visit('/')
    • -
    • right-click on tests/ExampleTest.php - -
        -
      • Select: Debug 'ExampleTest.php'.
      • -
      • Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH!
      • -
      • Remote Test Debugging Success
      • -
    • -
    - -

    - -

    Debug WebSite

    - -
      -
    • In case xDebug is disabled, from the laradock folder run: -.php-fpm/xdebug start.

      - -
        -
      • To switch xdebug off, run: -.php-fpm/xdebug stop
      • -
    • - -
    • Start Remote Debugging

      - -
        -
      • DebugRemoteOn
      • -
    • - -
    • Open to edit: bootstrap/app.php

    • - -
    • Add a BreakPoint on line 14: $app = new Illuminate\Foundation\Application(

    • - -
    • Reload Laravel Site

      - -
        -
      • Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH!
      • -
      • Remote Debugging Success
      • -
    • -
    - -

    - -

    Let’s shell into workspace

    - -

    Assuming that you are in laradock folder, type: -ssh -i workspace/insecure_id_rsa -p2222 root@laravel -Cha Ching!!!! -- workspace/insecure_id_rsa.ppk may become corrupted. In which case: - - fire up puttygen - - import workspace/insecure_id_rsa - - save private key to workspace/insecure_id_rsa.ppk

    - -

    - -

    KiTTY

    - -

    Kitty KiTTY is a fork from version 0.67 of PuTTY.

    - -
      -
    • Here are some settings that are working for me: - -
        -
      • Session
      • -
      • Terminal
      • -
      • Window
      • -
      • WindowAppearance
      • -
      • Connection
      • -
      • ConnectionData
      • -
      • ConnectionSSH
      • -
      • ConnectionSSHAuth
      • -
      • TerminalShell
      • -
    • -
    - - -

    Help & Questions

    - -

    Join the chat room on Gitter and get help and support from the community.

    - -

    You can as well can open an issue on Github (will be labeled as Question) and discuss it with people on Gitter.

    - - -

    Related Projects

    - -

    Laradock related projects:

    - - - -

    If you want your project listed here, please open an issue.

    - - -

    Contributing

    - - - -

    Your contribution is more than welcome.

    - -

    I have a Question/Problem

    - -

    If you have questions about how to use Laradock, please direct your questions to the discussion on Gitter. If you believe your question could help others, then consider opening an Issue (it will be labeled as Question) And you can still seek help on Gitter for it.

    - -

    I found an Issue

    - -

    If have an issue or you found a typo in the documentation, you can help us by -opnening an Issue.

    - -

    Steps to do before opening an Issue:

    - -
      -
    1. Before you submit your issue search the archive, maybe your question was already answered couple hours ago (search in the closed Issues as well).

    2. - -
    3. Decide if the Issue belongs to this project or to Docker itself! or even the tool you are using such as Nginx or MongoDB…

    4. -
    - -

    If your issue appears to be a bug, and hasn’t been reported, then open a new issue.

    - -

    This Help us to maximize the effort we can spend fixing issues and adding new -features, by not reporting duplicate issues.

    - -

    I want a Feature

    - -

    You can request a new feature by submitting an Issue (it will be labeled as Feature Suggestion). If you would like to implement a new feature then consider submitting a Pull Request yourself.

    - -

    I want to update the Documentation (Site)

    - -

    Laradock uses Hugo as website generator tool, with the Material Docs theme. You might need to check their docs quickly.

    - -

    Go the DOCUMENTATION/content and search for the markdown file you want to edit

    - -

    Note: Every folder represents a section in the sidebar “Menu”. And every page and sidebar has a weight number to show it’s position in the site.

    - -

    To update the sidebar or add a new section to it, you can edit this DOCUMENTATION/config.toml toml file.

    - -
    -

    The site will be auto-generated in the docs/ folder by Travis CI.

    -
    - -


    - -

    To Host the website locally

    - -
      -
    1. Install Hugo on your machine.
    2. -
    3. Edit the DOCUMENTATION/content.
    4. -
    5. Delete the /docs folder from the root.
    6. -
    7. After you finish the editing, go to DOCUMENTATION/ and run the hugo command to generate the HTML docs (inside a new /docs folder).
    8. -
    - -

    How to support new Software (Add new Container)

    - -
      -
    • Create folder with the software name.

    • - -
    • Add a Dockerfile, write your code there.

    • - -
    • You may add additional files in the software folder.

    • - -
    • Add the software to the docker-compose.yml file.

    • - -
    • Make sure you follow our commenting style.

    • - -
    • Add the software in the Documentation.

    • -
    - -

    Edit existing Software (Edit a Container)

    - -
      -
    • Open the software (container) folder.

    • - -
    • Edit the files you want to update.

    • - -
    • Note: If you want to edit the base image of the Workspace or the php-fpm Containers, -you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the Laradock repository.

    • - -
    • Make sure to update the Documentation in case you made any changes.

    • -
    - -

    Pull Request

    - -

    1. Before Submitting a Pull Request (PR)

    - -

    Always Test everything and make sure its working:

    - -
      -
    • Pull the latest updates (or fork of you don’t have permission)
    • -
    • Before editing anything: - -
        -
      • Test building the container (docker-compose build –no-cache container-name) build with no cache first.
      • -
      • Test running the container with some other containers in real app and see of everything is working fine.
      • -
    • -
    • Now edit the container (edit section by section and test rebuilding the container after every edited section) - -
        -
      • Testing building the container (docker-compose build container-name) with no errors.
      • -
      • Test it in a real App if possible.
      • -
    • -
    - -

    2. Submitting a PR

    - -

    Consider the following guidelines:

    - -
      -
    • Search GitHub for an open or closed Pull Request that relates to your submission. You don’t want to duplicate efforts.

    • - -
    • Make your changes in a new git branch:

      - -
       git checkout -b my-fix-branch master
      -
    • - -
    • Commit your changes using a descriptive commit message.

    • - -
    • Push your branch to GitHub:

      - -
      git push origin my-fix-branch
      -
    • - -
    • In GitHub, send a pull request to laradock:master.

    • - -
    • If we suggest changes then:

      - -
        -
      • Make the required updates.
      • -
      • Commit your changes to your branch (e.g. my-fix-branch).
      • -
      • Push the changes to your GitHub repository (this will update your Pull Request).
      • -
    • -
    - -
    -

    If the PR gets too outdated we may ask you to rebase and force push to update the PR:

    -
    - -
    git rebase master -i
    -git push origin my-fix-branch -f
    -
    - -

    WARNING. Squashing or reverting commits and forced push thereafter may remove GitHub comments on code that were previously made by you and others in your commits.

    - -

    3. After your PR is merged

    - -

    After your pull request is merged, you can safely delete your branch and pull the changes from the main (upstream) repository:

    - -
      -
    • Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:

      - -
      git push origin --delete my-fix-branch
      -
    • - -
    • Check out the master branch:

      - -
      git checkout master -f
      -
    • - -
    • Delete the local branch:

      - -
      git branch -D my-fix-branch
      -
    • - -
    • Update your master with the latest upstream version:

      - -
      git pull --ff upstream master
      -
    • -
    - -


    - -

    Happy Coding :)

    - - -

    License

    - -

    MIT License (MIT)

    - - -

    Welcome

    - - - - - - - -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - diff --git a/docs/index.xml b/docs/index.xml deleted file mode 100644 index c020fbd3..00000000 --- a/docs/index.xml +++ /dev/null @@ -1,2517 +0,0 @@ - - - - Laradock - http://laradock.io/index.xml - Recent content on Laradock - Hugo -- gohugo.io - en-us - - - - Introduction - http://laradock.io/introduction/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/introduction/ - - -<p>A full PHP development environment for Docker.</p> - -<p>Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.</p> - -<p>Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal&hellip;</p> - -<p><img src="https://s19.postimg.org/jblfytw9f/laradock-logo.jpg" alt="" /></p> - -<h2 id="quick-overview">Quick Overview</h2> - -<p>Let&rsquo;s see how easy it is to install <code>NGINX</code>, <code>PHP</code>, <code>Composer</code>, <code>MySQL</code>, <code>Redis</code> and <code>Beanstalkd</code>:</p> - -<p>1 - Clone Laradock inside your PHP project:</p> - -<pre><code class="language-shell">git clone https://github.com/Laradock/laradock.git -</code></pre> - -<p>2 - Enter the laradock folder and rename <code>env-example</code> to <code>.env</code>.</p> - -<pre><code class="language-shell">cp env-example .env -</code></pre> - -<p>3 - Run your containers:</p> - -<pre><code class="language-shell">docker-compose up -d nginx mysql redis beanstalkd -</code></pre> - -<p>4 - Open your project&rsquo;s <code>.env</code> file and set the following:</p> - -<pre><code class="language-shell">DB_HOST=mysql -REDIS_HOST=redis -QUEUE_HOST=beanstalkd -</code></pre> - -<p>5 - Open your browser and visit localhost: <code>http://localhost</code>.</p> - -<pre><code class="language-shell">That's it! enjoy :) -</code></pre> - -<p><a name="features"></a></p> - -<h2 id="features">Features</h2> - -<ul> -<li>Easy switch between PHP versions: 7.1, 7.0, 5.6&hellip;</li> -<li>Choose your favorite database engine: MySQL, Postgres, MariaDB&hellip;</li> -<li>Run your own combination of software: Memcached, HHVM, Beanstalkd&hellip;</li> -<li>Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI&hellip;</li> -<li>Easy to customize any container, with simple edit to the <code>Dockerfile</code>.</li> -<li>All Images extends from an official base Image. (Trusted base Images).</li> -<li>Pre-configured NGINX to host any code at your root directory.</li> -<li>Can use Laradock per project, or single Laradock for all projects.</li> -<li>Easy to install/remove software&rsquo;s in Containers using environment variables.</li> -<li>Clean and well structured Dockerfiles (<code>Dockerfile</code>).</li> -<li>Latest version of the Docker Compose file (<code>docker-compose</code>).</li> -<li>Everything is visible and editable.</li> -<li>Fast Images Builds.</li> -<li>More to come every week..</li> -</ul> - -<p><a name="Supported-Containers"></a></p> - -<h2 id="supported-software-images">Supported Software (Images)</h2> - -<p>In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container. -You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.</p> - -<ul> -<li><strong>Database Engines:</strong> -MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - MSSQL - PostgreSQL - Postgres Postgis.</li> -<li><strong>Cache Engines:</strong> -Redis - Memcached - Aerospike</li> -<li><strong>PHP Servers:</strong> -NGINX - Apache2 - Caddy</li> -<li><strong>PHP Compilers:</strong> -PHP FPM - HHVM</li> -<li><strong>Message Queuing:</strong> -Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console - PHP Worker</li> -<li><strong>Tools:</strong> -HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varnish - PhpMyAdmin - Adminer - PgAdmin - MailHog&hellip;</li> -</ul> - -<p>Laradock introduces the <strong>Workspace</strong> Image, as a development environment. -It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.</p> - -<p><strong>Workspace Image Tools</strong> -PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush&hellip;</p> - -<p>You can choose, which tools to install in your workspace container and other containers, from the <code>.env</code> file.</p> - -<blockquote> -<p>If you modify <code>docker-compose.yml</code>, <code>.env</code> or any <code>dockerfile</code> file, you must re-build your containers, to see those effects in the running instance.</p> -</blockquote> - -<p>If you can&rsquo;t find your Software in the list, build it yourself and sumit it. Contributions are welcomed :)</p> - -<p><a name="what-is-docker"></a></p> - -<h2 id="what-is-docker">What is Docker?</h2> - -<p><a href="https://www.docker.com">Docker</a> is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of <a href="https://en.wikipedia.org/wiki/Operating-system-level_virtualization">operating-system-level virtualization</a> on Linux, Mac OS and Windows.</p> - -<p><a name="why-docker-not-vagrant"></a></p> - -<h2 id="why-docker-not-vagrant">Why Docker not Vagrant!?</h2> - -<p><a href="https://www.vagrantup.com">Vagrant</a> creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.</p> - -<p>Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you <strong>lightweight</strong> Virtual Containers, that share the same kernel and allow to safely execute independent processes.</p> - -<p>In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.</p> - -<p>Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).</p> - -<p><a name="Demo"></a></p> - -<h2 id="demo-video">Demo Video</h2> - -<p>What&rsquo;s better than a <strong>Demo Video</strong>:</p> - -<ul> -<li>Laradock v5.* (soon or never)</li> -<li>Laradock <a href="https://www.youtube.com/watch?v=TQii1jDa96Y">v4.*</a></li> -<li>Laradock <a href="https://www.youtube.com/watch?v=-DamFMczwDA">v2.*</a></li> -<li>Laradock <a href="https://www.youtube.com/watch?v=jGkyO6Is_aI">v0.3</a></li> -<li>Laradock <a href="https://www.youtube.com/watch?v=3YQsHe6oF80">v0.1</a></li> -</ul> - -<p><a name="Chat"></a></p> - -<h2 id="chat-with-us">Chat with us</h2> - -<p>You are welcome to join our chat room on Gitter.</p> - -<p><a href="https://gitter.im/Laradock/laradock?utm_source=badge&amp;utm_medium=badge&amp;utm_campaign=pr-badge"><img src="https://badges.gitter.im/Laradock/laradock.svg" alt="Gitter" /></a></p> - - - - - Getting Started - http://laradock.io/getting-started/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/getting-started/ - - -<h2 id="requirements">Requirements</h2> - -<ul> -<li><a href="https://git-scm.com/downloads">Git</a></li> -<li><a href="https://www.docker.com/products/docker/">Docker</a> <code>&gt;= 1.12</code></li> -</ul> - -<h2 id="installation">Installation</h2> - -<p>Choose the setup the best suits your needs.</p> - -<ul> -<li><a href="#A">A) Setup for Single Project</a> - -<ul> -<li><a href="#A1">A.1) Already have a PHP project</a></li> -<li><a href="#A2">A.2) Don&rsquo;t have a PHP project yet</a></li> -</ul></li> -<li><a href="#B">B) Setup for Multiple Projects</a></li> -</ul> - -<p><a name="A"></a></p> - -<h3 id="a-setup-for-single-project">A) Setup for Single Project</h3> - -<blockquote> -<p>(Follow these steps if you want a separate Docker environment for each project)</p> -</blockquote> - -<p><a name="A1"></a></p> - -<h3 id="a-1-already-have-a-php-project">A.1) Already have a PHP project:</h3> - -<p>1 - Clone laradock on your project root directory:</p> - -<pre><code class="language-bash">git submodule add https://github.com/Laradock/laradock.git -</code></pre> - -<p><strong>Notes:</strong></p> - -<ul> -<li><p>If you are not using Git yet for your project, you can use <code>git clone</code> instead of <code>git submodule</code>.</p></li> - -<li><p>Note 2: To keep track of your Laradock changes, between your projects and also keep Laradock updated. <a href="http://laradock.io/documentation/#keep-track-of-your-laradock-changes">Check this</a></p></li> -</ul> - -<p>Your folder structure should look like this:</p> - -<pre><code>+ project-a - + laradock-a -+ project-b - + laradock-b -</code></pre> - -<p>(It&rsquo;s important to rename the folders differently in each project.)</p> - -<blockquote> -<p><strong>Now jump to the <a href="#Usage">Usage</a> section.</strong></p> -</blockquote> - -<p><a name="A2"></a></p> - -<h3 id="a-2-don-t-have-a-php-project-yet">A.2) Don&rsquo;t have a PHP project yet:</h3> - -<p>1 - Clone this repository anywhere on your machine:</p> - -<pre><code class="language-bash">git clone https://github.com/laradock/laradock.git -</code></pre> - -<p>Your folder structure should look like this:</p> - -<pre><code>+ laradock -+ project-z -</code></pre> - -<p>2 - Edit your web server sites configuration.</p> - -<p><strong>In case of NGINX:</strong> open <code>nginx/sites/default.conf</code> and change the <code>root</code> from <code>/var/www/public</code> to <code>/var/www/{my-project-folder-name}/public</code>.</p> - -<p><em>Or you can keep <code>default.conf</code> as it is, and create a separate config <code>my-site.conf</code> file for it.</em></p> - -<p><strong>In case of Apache:</strong> :P</p> - -<p><br></p> - -<blockquote> -<p><strong>Now jump to the <a href="#Usage">Usage</a> section.</strong></p> -</blockquote> - -<p><a name="B"></a></p> - -<h3 id="b-setup-for-multiple-projects">B) Setup for Multiple Projects:</h3> - -<blockquote> -<p>(Follow these steps if you want a single Docker environment for all your project)</p> -</blockquote> - -<p>1 - Clone this repository anywhere on your machine (similar to <a href="#A2">Steps A.2. from above</a>):</p> - -<pre><code class="language-bash">git clone https://github.com/laradock/laradock.git -</code></pre> - -<p>Your folder structure should look like this:</p> - -<pre><code>+ laradock -+ project-1 -+ project-2 -</code></pre> - -<p>2 - Go to <code>nginx/sites</code> and create config files to point to different project directory when visiting different domains.</p> - -<p>Laradock by default includes <code>project-1.conf</code> and <code>project-2.conf</code> as working samples.</p> - -<p>3 - change the default names <code>project-n</code>:</p> - -<p>You can rename the config files, project folders and domains as you like, just make sure the <code>root</code> in the config files, is pointing to the correct project folder name.</p> - -<p>4 - Add the domains to the <strong>hosts</strong> files.</p> - -<pre><code>127.0.0.1 project-1.dev -127.0.0.1 project-2.dev -</code></pre> - -<blockquote> -<p><strong>Now jump to the <a href="#Usage">Usage</a> section.</strong></p> -</blockquote> - -<p><a name="Usage"></a></p> - -<h2 id="usage">Usage</h2> - -<p><strong>Read Before starting:</strong></p> - -<p>If you are using <strong>Docker Toolbox</strong> (VM), do one of the following:</p> - -<ul> -<li>Upgrade to Docker <a href="https://www.docker.com/products/docker">Native</a> for Mac/Windows (Recommended). Check out <a href="http://laradock.io/documentation/#upgrading-laradock">Upgrading Laradock</a></li> -<li>Use Laradock v3.*. Visit the <a href="https://github.com/laradock/laradock/tree/Laradock-ToolBox">Laradock-ToolBox</a> branch. <em>(outdated)</em></li> -</ul> - -<p><br></p> - -<blockquote> -<p><strong>Warning:</strong> If you used an older version of Laradock it&rsquo;s highly recommended to rebuild the containers you need to use <a href="#Build-Re-build-Containers">see how you rebuild a container</a> in order to prevent as much errors as possible.</p> -</blockquote> - -<p><br></p> - -<p>1 - Enter the laradock folder and rename <code>env-example</code> to <code>.env</code></p> - -<pre><code class="language-shell">cp env-example .env -</code></pre> - -<p>You can edit the <code>.env</code> file to chose which software&rsquo;s you want to be installed in your environment. You can always refer to the <code>docker-compose.yml</code> file to see how those variables are been used.</p> - -<p>2 - Build the enviroment and run it using <code>docker-compose</code></p> - -<p>In this example we&rsquo;ll see how to run NGINX (web server) and MySQL (database engine) to host a PHP Web Scripts:</p> - -<pre><code class="language-bash">docker-compose up -d nginx mysql -</code></pre> - -<p><strong>Note</strong>: The <code>workspace</code> and <code>php-fpm</code> will run automatically in most of the cases, so no need to specify them in the <code>up</code> command. If you couldn&rsquo;t find them running then you need specify them as follow: <code>docker-compose up -d nginx php-fpm mysql workspace</code>.</p> - -<p>You can select your own combination of containers form <a href="http://laradock.io/introduction/#supported-software-images">this list</a>.</p> - -<p><em>(Please note that sometimes we forget to update the docs, so check the <code>docker-compose.yml</code> file to see an updated list of all available containers).</em></p> - -<p><br> -3 - Enter the Workspace container, to execute commands like (Artisan, Composer, PHPUnit, Gulp, &hellip;)</p> - -<pre><code class="language-bash">docker-compose exec workspace bash -</code></pre> - -<p><em>Alternatively, for Windows PowerShell users: execute the following command to enter any running container:</em></p> - -<pre><code class="language-bash">docker exec -it {workspace-container-id} bash -</code></pre> - -<p><strong>Note:</strong> You can add <code>--user=laradock</code> to have files created as your host&rsquo;s user. Example:</p> - -<pre><code class="language-shell">docker-compose exec --user=laradock workspace bash -</code></pre> - -<p><em>You can change the PUID (User id) and PGID (group id) variables from the <code>.env</code> file)</em></p> - -<p><br> -4 - Update your project configurations to use the database host</p> - -<p>Open your PHP project&rsquo;s <code>.env</code> file or whichever configuration file you are reading from, and set the database host <code>DB_HOST</code> to <code>mysql</code>:</p> - -<pre><code class="language-env">DB_HOST=mysql -</code></pre> - -<p><em>If you want to install Laravel as PHP project, see <a href="#Install-Laravel">How to Install Laravel in a Docker Container</a>.</em></p> - -<p><br> -5 - Open your browser and visit your localhost address <code>http://localhost/</code>. If you followed the multiple projects setup, you can visit <code>http://project-1.dev/</code> and <code>http://project-2.dev/</code>. But first don&rsquo;t</p> - - - - - Documentation - http://laradock.io/documentation/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/documentation/ - - -<p><a name="List-current-running-Containers"></a></p> - -<h2 id="list-current-running-containers">List current running Containers</h2> - -<pre><code class="language-bash">docker ps -</code></pre> - -<p>You can also use the following command if you want to see only this project containers:</p> - -<pre><code class="language-bash">docker-compose ps -</code></pre> - -<p><br> -<a name="Close-all-running-Containers"></a></p> - -<h2 id="close-all-running-containers">Close all running Containers</h2> - -<pre><code class="language-bash">docker-compose stop -</code></pre> - -<p>To stop single container do:</p> - -<pre><code class="language-bash">docker-compose stop {container-name} -</code></pre> - -<p><br> -<a name="Delete-all-existing-Containers"></a></p> - -<h2 id="delete-all-existing-containers">Delete all existing Containers</h2> - -<pre><code class="language-bash">docker-compose down -</code></pre> - -<p><br> -<a name="Enter-Container"></a></p> - -<h2 id="enter-a-container-run-commands-in-a-running-container">Enter a Container (run commands in a running Container)</h2> - -<p>1 - First list the current running containers with <code>docker ps</code></p> - -<p>2 - Enter any container using:</p> - -<pre><code class="language-bash">docker-compose exec {container-name} bash -</code></pre> - -<p><em>Example: enter MySQL container</em></p> - -<pre><code class="language-bash">docker-compose exec mysql bash -</code></pre> - -<p><em>Example: enter to MySQL prompt within MySQL container</em></p> - -<pre><code class="language-bash">docker-compose exec mysql mysql -u homestead -psecret -</code></pre> - -<p>3 - To exit a container, type <code>exit</code>.</p> - -<p><br> -<a name="Edit-Container"></a></p> - -<h2 id="edit-default-container-configuration">Edit default container configuration</h2> - -<p>Open the <code>docker-compose.yml</code> and change anything you want.</p> - -<p>Examples:</p> - -<p>Change MySQL Database Name:</p> - -<pre><code class="language-yml"> environment: - MYSQL_DATABASE: laradock - ... -</code></pre> - -<p>Change Redis default port to 1111:</p> - -<pre><code class="language-yml"> ports: - - &quot;1111:6379&quot; - ... -</code></pre> - -<p><br> -<a name="Edit-a-Docker-Image"></a></p> - -<h2 id="edit-a-docker-image">Edit a Docker Image</h2> - -<p>1 - Find the <code>Dockerfile</code> of the image you want to edit, -<br> -example for <code>mysql</code> it will be <code>mysql/Dockerfile</code>.</p> - -<p>2 - Edit the file the way you want.</p> - -<p>3 - Re-build the container:</p> - -<pre><code class="language-bash">docker-compose build mysql -</code></pre> - -<p>More info on Containers rebuilding <a href="#Build-Re-build-Containers">here</a>.</p> - -<p><br> -<a name="Build-Re-build-Containers"></a></p> - -<h2 id="build-re-build-containers">Build/Re-build Containers</h2> - -<p>If you do any change to any <code>Dockerfile</code> make sure you run this command, for the changes to take effect:</p> - -<pre><code class="language-bash">docker-compose build -</code></pre> - -<p>Optionally you can specify which container to rebuild (instead of rebuilding all the containers):</p> - -<pre><code class="language-bash">docker-compose build {container-name} -</code></pre> - -<p>You might use the <code>--no-cache</code> option if you want full rebuilding (<code>docker-compose build --no-cache {container-name}</code>).</p> - -<p><br> -<a name="Add-Docker-Images"></a></p> - -<h2 id="add-more-software-docker-images">Add more Software (Docker Images)</h2> - -<p>To add an image (software), just edit the <code>docker-compose.yml</code> and add your container details, to do so you need to be familiar with the <a href="https://docs.docker.com/compose/compose-file/">docker compose file syntax</a>.</p> - -<p><br> -<a name="View-the-Log-files"></a></p> - -<h2 id="view-the-log-files">View the Log files</h2> - -<p>The NGINX Log file is stored in the <code>logs/nginx</code> directory.</p> - -<p>However to view the logs of all the other containers (MySQL, PHP-FPM,&hellip;) you can run this:</p> - -<pre><code class="language-bash">docker logs {container-name} -</code></pre> - -<p>More <a href="https://docs.docker.com/compose/reference/logs/">options</a></p> - -<pre><code class="language-bash">docker logs -f {container-name} -</code></pre> - -<p><br> -<a name="PHP"></a></p> - -<p><a name="Install-PHP-Extensions"></a></p> - -<h2 id="install-php-extensions">Install PHP Extensions</h2> - -<p>Before installing PHP extensions, you have to decide whether you need for the <code>FPM</code> or <code>CLI</code> because each lives on a different container, if you need it for both you have to edit both containers.</p> - -<p>The PHP-FPM extensions should be installed in <code>php-fpm/Dockerfile-XX</code>. <em>(replace XX with your default PHP version number)</em>. -<br> -The PHP-CLI extensions should be installed in <code>workspace/Dockerfile</code>.</p> - -<p><br> -<a name="Change-the-PHP-FPM-Version"></a></p> - -<h2 id="change-the-php-fpm-version">Change the (PHP-FPM) Version</h2> - -<p>By default <strong>PHP-FPM 7.0</strong> is running.</p> - -<blockquote> -<p>The PHP-FPM is responsible of serving your application code, you don&rsquo;t have to change the PHP-CLI version if you are planning to run your application on different PHP-FPM version.</p> -</blockquote> - -<h3 id="a-switch-from-php-7-0-to-php-5-6">A) Switch from PHP <code>7.0</code> to PHP <code>5.6</code></h3> - -<p>1 - Open the <code>docker-compose.yml</code>.</p> - -<p>2 - Search for <code>Dockerfile-70</code> in the PHP container section.</p> - -<p>3 - Change the version number, by replacing <code>Dockerfile-70</code> with <code>Dockerfile-56</code>, like this:</p> - -<pre><code class="language-yml"> php-fpm: - build: - context: ./php-fpm - dockerfile: Dockerfile-70 - ... -</code></pre> - -<p>4 - Finally rebuild the container</p> - -<pre><code class="language-bash">docker-compose build php-fpm -</code></pre> - -<blockquote> -<p>For more details about the PHP base image, visit the <a href="https://hub.docker.com/_/php/">official PHP docker images</a>.</p> -</blockquote> - -<h3 id="b-switch-from-php-7-0-or-5-6-to-php-5-5">B) Switch from PHP <code>7.0</code> or <code>5.6</code> to PHP <code>5.5</code></h3> - -<p>We do not natively support PHP 5.5 anymore, but you can get it in few steps:</p> - -<p>1 - Clone <code>https://github.com/laradock/php-fpm</code>.</p> - -<p>3 - Rename <code>Dockerfile-56</code> to <code>Dockerfile-55</code>.</p> - -<p>3 - Edit the file <code>FROM php:5.6-fpm</code> to <code>FROM php:5.5-fpm</code>.</p> - -<p>4 - Build an image from <code>Dockerfile-55</code>.</p> - -<p>5 - Open the <code>docker-compose.yml</code> file.</p> - -<p>6 - Point <code>php-fpm</code> to your <code>Dockerfile-55</code> file.</p> - -<p><br> -<a name="Change-the-PHP-CLI-Version"></a></p> - -<h2 id="change-the-php-cli-version">Change the PHP-CLI Version</h2> - -<p>By default <strong>PHP-CLI 7.0</strong> is running.</p> - -<blockquote> -<p>Note: it&rsquo;s not very essential to edit the PHP-CLI version. The PHP-CLI is only used for the Artisan Commands &amp; Composer. It doesn&rsquo;t serve your Application code, this is the PHP-FPM job.</p> -</blockquote> - -<p>The PHP-CLI is installed in the Workspace container. To change the PHP-CLI version you need to edit the <code>workspace/Dockerfile</code>.</p> - -<p>Right now you have to manually edit the <code>Dockerfile</code> or create a new one like it&rsquo;s done for the PHP-FPM. (consider contributing).</p> - -<p><br> -<a name="Install-xDebug"></a></p> - -<h2 id="install-xdebug">Install xDebug</h2> - -<p>1 - First install <code>xDebug</code> in the Workspace and the PHP-FPM Containers: -<br> -a) open the <code>docker-compose.yml</code> file -<br> -b) search for the <code>INSTALL_XDEBUG</code> argument under the Workspace Container -<br> -c) set it to <code>true</code> -<br> -d) search for the <code>INSTALL_XDEBUG</code> argument under the PHP-FPM Container -<br> -e) set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_XDEBUG=true - ... - php-fpm: - build: - context: ./php-fpm - args: - - INSTALL_XDEBUG=true - ... -</code></pre> - -<p>2 - Re-build the containers <code>docker-compose build workspace php-fpm</code></p> - -<p>3 - Open <code>laradock/workspace/xdebug.ini</code> and/or <code>laradock/php-fpm/xdebug.ini</code> and enable at least the following configurations:</p> - -<pre><code>xdebug.remote_autostart=1 -xdebug.remote_enable=1 -xdebug.remote_connect_back=1 -</code></pre> - -<p>For information on how to configure xDebug with your IDE and work it out, check this <a href="https://github.com/LarryEitel/laravel-laradock-phpstorm">Repository</a>.</p> - -<p><br> -<a name="Control-xDebug"></a></p> - -<h2 id="start-stop-xdebug">Start/Stop xDebug:</h2> - -<p>By installing xDebug, you are enabling it to run on startup by default.</p> - -<p>To control the behavior of xDebug (in the <code>php-fpm</code> Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose):</p> - -<ul> -<li>Stop xDebug from running by default: <code>.php-fpm/xdebug stop</code>.</li> -<li>Start xDebug by default: <code>.php-fpm/xdebug start</code>.</li> -<li>See the status: <code>.php-fpm/xdebug status</code>.</li> -</ul> - -<p>Note: If <code>.php-fpm/xdebug</code> doesn&rsquo;t execute and gives <code>Permission Denied</code> error the problem can be that file <code>xdebug</code> doesn&rsquo;t have execution access. This can be fixed by running <code>chmod</code> command with desired access permissions.</p> - -<p><br> -<a name="Install-Deployer"></a></p> - -<h2 id="install-deployer-deployment-tool-for-php">Install Deployer (Deployment tool for PHP)</h2> - -<p>1 - Open the <code>docker-compose.yml</code> file -<br> -2 - Search for the <code>INSTALL_DEPLOYER</code> argument under the Workspace Container -<br> -3 - Set it to <code>true</code> -<br></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_DEPLOYER=true - ... -</code></pre> - -<p>4 - Re-build the containers <code>docker-compose build workspace</code></p> - -<p><a href="https://deployer.org/docs"><strong>Deployer Documentation Here</strong></a></p> - -<p><br> -<a name="Production"></a></p> - -<p><br> -<a name="Laradock-for-Production"></a></p> - -<h2 id="prepare-laradock-for-production">Prepare Laradock for Production</h2> - -<p>It&rsquo;s recommended for production to create a custom <code>docker-compose.yml</code> file. For that reason, Laradock is shipped with <code>production-docker-compose.yml</code> which should contain only the containers you are planning to run on production (usage example: <code>docker-compose -f production-docker-compose.yml up -d nginx mysql redis ...</code>).</p> - -<p>Note: The Database (MySQL/MariaDB/&hellip;) ports should not be forwarded on production, because Docker will automatically publish the port on the host, which is quite insecure, unless specifically told not to. So make sure to remove these lines:</p> - -<pre><code>ports: - - &quot;3306:3306&quot; -</code></pre> - -<p>To learn more about how Docker publishes ports, please read <a href="https://fralef.me/docker-and-iptables.html">this excellent post on the subject</a>.</p> - -<p><br> -<a name="Digital-Ocean"></a></p> - -<h2 id="setup-laravel-and-docker-on-digital-ocean">Setup Laravel and Docker on Digital Ocean</h2> - -<h3 id="full-guide-here-https-github-com-laradock-laradock-blob-master-guides-digital-ocean-md"><a href="https://github.com/laradock/laradock/blob/master/_guides/digital_ocean.md">Full Guide Here</a></h3> - -<p><br> -<a name="Laravel"></a></p> - -<p><a name="Install-Laravel"></a></p> - -<h2 id="install-laravel-from-a-docker-container">Install Laravel from a Docker Container</h2> - -<p>1 - First you need to enter the Workspace Container.</p> - -<p>2 - Install Laravel.</p> - -<p>Example using Composer</p> - -<pre><code class="language-bash">composer create-project laravel/laravel my-cool-app &quot;5.2.*&quot; -</code></pre> - -<blockquote> -<p>We recommend using <code>composer create-project</code> instead of the Laravel installer, to install Laravel.</p> -</blockquote> - -<p>For more about the Laravel installation click <a href="https://laravel.com/docs/master#installing-laravel">here</a>.</p> - -<p>3 - Edit <code>docker-compose.yml</code> to Map the new application path:</p> - -<p>By default, Laradock assumes the Laravel application is living in the parent directory of the laradock folder.</p> - -<p>Since the new Laravel application is in the <code>my-cool-app</code> folder, we need to replace <code>../:/var/www</code> with <code>../my-cool-app/:/var/www</code>, as follow:</p> - -<pre><code class="language-yaml"> application: - image: tianon/true - volumes: - - ../my-cool-app/:/var/www - ... -</code></pre> - -<p>4 - Go to that folder and start working..</p> - -<pre><code class="language-bash">cd my-cool-app -</code></pre> - -<p>5 - Go back to the Laradock installation steps to see how to edit the <code>.env</code> file.</p> - -<p><br> -<a name="Run-Artisan-Commands"></a></p> - -<h2 id="run-artisan-commands">Run Artisan Commands</h2> - -<p>You can run artisan commands and many other Terminal commands from the Workspace container.</p> - -<p>1 - Make sure you have the workspace container running.</p> - -<pre><code class="language-bash">docker-compose up -d workspace // ..and all your other containers -</code></pre> - -<p>2 - Find the Workspace container name:</p> - -<pre><code class="language-bash">docker-compose ps -</code></pre> - -<p>3 - Enter the Workspace container:</p> - -<pre><code class="language-bash">docker-compose exec workspace bash -</code></pre> - -<p>Add <code>--user=laradock</code> (example <code>docker-compose exec --user=laradock workspace bash</code>) to have files created as your host&rsquo;s user.</p> - -<p>4 - Run anything you want :)</p> - -<pre><code class="language-bash">php artisan -</code></pre> - -<pre><code class="language-bash">Composer update -</code></pre> - -<pre><code class="language-bash">phpunit -</code></pre> - -<p><br> -<a name="Run-Laravel-Queue-Worker"></a></p> - -<h2 id="run-laravel-queue-worker">Run Laravel Queue Worker</h2> - -<p>1 - First add <code>php-worker</code> container. It will be similar as like PHP-FPM Container. -<br> -a) open the <code>docker-compose.yml</code> file -<br> -b) add a new service container by simply copy-paste this section below PHP-FPM container</p> - -<pre><code class="language-yaml"> php-worker: - build: - context: ./php-fpm - dockerfile: Dockerfile-70 # or Dockerfile-56, choose your PHP-FPM container setting - volumes_from: - - applications - command: php artisan queue:work -</code></pre> - -<p>2 - Start everything up</p> - -<pre><code class="language-bash">docker-compose up -d php-worker -</code></pre> - -<p><br> -<a name="Use-Redis"></a></p> - -<h2 id="use-redis">Use Redis</h2> - -<p>1 - First make sure you run the Redis Container (<code>redis</code>) with the <code>docker-compose up</code> command.</p> - -<pre><code class="language-bash">docker-compose up -d redis -</code></pre> - -<p>2 - Open your Laravel&rsquo;s <code>.env</code> file and set the <code>REDIS_HOST</code> to <code>redis</code></p> - -<pre><code class="language-env">REDIS_HOST=redis -</code></pre> - -<p>If you don&rsquo;t find the <code>REDIS_HOST</code> variable in your <code>.env</code> file. Go to the database configuration file <code>config/database.php</code> and replace the default <code>127.0.0.1</code> IP with <code>redis</code> for Redis like this:</p> - -<pre><code class="language-php">'redis' =&gt; [ - 'cluster' =&gt; false, - 'default' =&gt; [ - 'host' =&gt; 'redis', - 'port' =&gt; 6379, - 'database' =&gt; 0, - ], -], -</code></pre> - -<p>3 - To enable Redis Caching and/or for Sessions Management. Also from the <code>.env</code> file set <code>CACHE_DRIVER</code> and <code>SESSION_DRIVER</code> to <code>redis</code> instead of the default <code>file</code>.</p> - -<pre><code class="language-env">CACHE_DRIVER=redis -SESSION_DRIVER=redis -</code></pre> - -<p>4 - Finally make sure you have the <code>predis/predis</code> package <code>(~1.0)</code> installed via Composer:</p> - -<pre><code class="language-bash">composer require predis/predis:^1.0 -</code></pre> - -<p>5 - You can manually test it from Laravel with this code:</p> - -<pre><code class="language-php">\Cache::store('redis')-&gt;put('Laradock', 'Awesome', 10); -</code></pre> - -<p><br> -<a name="Use-Mongo"></a></p> - -<h2 id="use-mongo">Use Mongo</h2> - -<p>1 - First install <code>mongo</code> in the Workspace and the PHP-FPM Containers: -<br> -a) open the <code>docker-compose.yml</code> file -<br> -b) search for the <code>INSTALL_MONGO</code> argument under the Workspace Container -<br> -c) set it to <code>true</code> -<br> -d) search for the <code>INSTALL_MONGO</code> argument under the PHP-FPM Container -<br> -e) set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_MONGO=true - ... - php-fpm: - build: - context: ./php-fpm - args: - - INSTALL_MONGO=true - ... -</code></pre> - -<p>2 - Re-build the containers <code>docker-compose build workspace php-fpm</code></p> - -<p>3 - Run the MongoDB Container (<code>mongo</code>) with the <code>docker-compose up</code> command.</p> - -<pre><code class="language-bash">docker-compose up -d mongo -</code></pre> - -<p>4 - Add the MongoDB configurations to the <code>config/database.php</code> configuration file:</p> - -<pre><code class="language-php">'connections' =&gt; [ - - 'mongodb' =&gt; [ - 'driver' =&gt; 'mongodb', - 'host' =&gt; env('DB_HOST', 'localhost'), - 'port' =&gt; env('DB_PORT', 27017), - 'database' =&gt; env('DB_DATABASE', 'database'), - 'username' =&gt; '', - 'password' =&gt; '', - 'options' =&gt; [ - 'database' =&gt; '', - ] - ], - - // ... - -], -</code></pre> - -<p>5 - Open your Laravel&rsquo;s <code>.env</code> file and update the following variables:</p> - -<ul> -<li>set the <code>DB_HOST</code> to your <code>mongo</code>.</li> -<li>set the <code>DB_PORT</code> to <code>27017</code>.</li> -<li>set the <code>DB_DATABASE</code> to <code>database</code>.</li> -</ul> - -<p>6 - Finally make sure you have the <code>jenssegers/mongodb</code> package installed via Composer and its Service Provider is added.</p> - -<pre><code class="language-bash">composer require jenssegers/mongodb -</code></pre> - -<p>More details about this <a href="https://github.com/jenssegers/laravel-mongodb#installation">here</a>.</p> - -<p>7 - Test it:</p> - -<ul> -<li>First let your Models extend from the Mongo Eloquent Model. Check the <a href="https://github.com/jenssegers/laravel-mongodb#eloquent">documentation</a>.</li> -<li>Enter the Workspace Container.</li> -<li>Migrate the Database <code>php artisan migrate</code>.</li> -</ul> - -<p><br> -<a name="Use-phpMyAdmin"></a></p> - -<h2 id="use-phpmyadmin">Use PhpMyAdmin</h2> - -<p>1 - Run the phpMyAdmin Container (<code>phpmyadmin</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash"># use with mysql -docker-compose up -d mysql phpmyadmin - -# use with mariadb -docker-compose up -d mariadb phpmyadmin -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>8080</strong>: <code>http://localhost:8080</code></p> - -<p><br> -<a name="Use-Adminer"></a></p> - -<h2 id="use-adminer">Use Adminer</h2> - -<p>1 - Run the Adminer Container (<code>adminer</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d adminer -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>8080</strong>: <code>http://localhost:8080</code></p> - -<p><br> -<a name="Use-pgAdmin"></a></p> - -<h2 id="use-pgadmin">Use PgAdmin</h2> - -<p>1 - Run the pgAdmin Container (<code>pgadmin</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d postgres pgadmin -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>5050</strong>: <code>http://localhost:5050</code></p> - -<p><br> -<a name="Use-Beanstalkd"></a></p> - -<h2 id="use-beanstalkd">Use Beanstalkd</h2> - -<p>1 - Run the Beanstalkd Container:</p> - -<pre><code class="language-bash">docker-compose up -d beanstalkd -</code></pre> - -<p>2 - Configure Laravel to connect to that container by editing the <code>config/queue.php</code> config file.</p> - -<p>a. first set <code>beanstalkd</code> as default queue driver -b. set the queue host to beanstalkd : <code>QUEUE_HOST=beanstalkd</code></p> - -<p><em>beanstalkd is now available on default port <code>11300</code>.</em></p> - -<p>3 - Require the dependency package <a href="https://github.com/pda/pheanstalk">pda/pheanstalk</a> using composer.</p> - -<p>Optionally you can use the Beanstalkd Console Container to manage your Queues from a web interface.</p> - -<p>1 - Run the Beanstalkd Console Container:</p> - -<pre><code class="language-bash">docker-compose up -d beanstalkd-console -</code></pre> - -<p>2 - Open your browser and visit <code>http://localhost:2080/</code></p> - -<p>3 - Add the server</p> - -<ul> -<li>Host: beanstalkd</li> -<li>Port: 11300</li> -</ul> - -<p>4 - Done.</p> - -<p><br> -<a name="Use-ElasticSearch"></a></p> - -<h2 id="use-elasticsearch">Use ElasticSearch</h2> - -<p>1 - Run the ElasticSearch Container (<code>elasticsearch</code>) with the <code>docker-compose up</code> command:</p> - -<pre><code class="language-bash">docker-compose up -d elasticsearch -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>9200</strong>: <code>http://localhost:9200</code></p> - -<h3 id="install-elasticsearch-plugin">Install ElasticSearch Plugin</h3> - -<p>1 - Install the ElasticSearch plugin like <a href="https://www.elastic.co/guide/en/elasticsearch/plugins/current/plugins-delete-by-query.html">delete-by-query</a>.</p> - -<pre><code class="language-bash">docker exec {container-name} /usr/share/elasticsearch/bin/plugin install delete-by-query -</code></pre> - -<p>2 - Restart elasticsearch container</p> - -<pre><code class="language-bash">docker restart {container-name} -</code></pre> - -<p><br> -<a name="Use-Selenium"></a></p> - -<h2 id="use-selenium">Use Selenium</h2> - -<p>1 - Run the Selenium Container (<code>selenium</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d selenium -</code></pre> - -<p>2 - Open your browser and visit the localhost on port <strong>4444</strong> at the following URL: <code>http://localhost:4444/wd/hub</code></p> - -<p><br> -<a name="Use-RethinkDB"></a></p> - -<h2 id="use-rethinkdb">Use RethinkDB</h2> - -<p>The RethinkDB is an open-source Database for Real-time Web (<a href="https://rethinkdb.com/">RethinkDB</a>). -A package (<a href="https://github.com/duxet/laravel-rethinkdb">Laravel RethinkDB</a>) is being developed and was released a version for Laravel 5.2 (experimental).</p> - -<p>1 - Run the RethinkDB Container (<code>rethinkdb</code>) with the <code>docker-compose up</code> command.</p> - -<pre><code class="language-bash">docker-compose up -d rethinkdb -</code></pre> - -<p>2 - Access the RethinkDB Administration Console <a href="http://localhost:8090/#tables">http://localhost:8090/#tables</a> for create a database called <code>database</code>.</p> - -<p>3 - Add the RethinkDB configurations to the <code>config/database.php</code> configuration file:</p> - -<pre><code class="language-php">'connections' =&gt; [ - - 'rethinkdb' =&gt; [ - 'name' =&gt; 'rethinkdb', - 'driver' =&gt; 'rethinkdb', - 'host' =&gt; env('DB_HOST', 'rethinkdb'), - 'port' =&gt; env('DB_PORT', 28015), - 'database' =&gt; env('DB_DATABASE', 'test'), - ] - - // ... - -], -</code></pre> - -<p>4 - Open your Laravel&rsquo;s <code>.env</code> file and update the following variables:</p> - -<ul> -<li>set the <code>DB_CONNECTION</code> to your <code>rethinkdb</code>.</li> -<li>set the <code>DB_HOST</code> to <code>rethinkdb</code>.</li> -<li>set the <code>DB_PORT</code> to <code>28015</code>.</li> -<li>set the <code>DB_DATABASE</code> to <code>database</code>.</li> -</ul> - -<p><br> -<a name="Use-Minio"></a></p> - -<h2 id="use-minio">Use Minio</h2> - -<p>1 - Configure Minio: - - On the workspace container, change <code>INSTALL_MC</code> to true to get the client - - Set <code>MINIO_ACCESS_KEY</code> and <code>MINIO_ACCESS_SECRET</code> if you wish to set proper keys</p> - -<p>2 - Run the Minio Container (<code>minio</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d minio -</code></pre> - -<p>3 - Open your browser and visit the localhost on port <strong>9000</strong> at the following URL: <code>http://localhost:9000</code></p> - -<p>4 - Create a bucket either through the webui or using the mc client:</p> - -<pre><code class="language-bash"> mc mb minio/bucket -</code></pre> - -<p>5 - When configuring your other clients use the following details:</p> - -<pre><code> S3_HOST=http://minio - S3_KEY=access - S3_SECRET=secretkey - S3_REGION=us-east-1 - S3_BUCKET=bucket -</code></pre> - -<p><br> -<a name="CodeIgniter"></a></p> - -<p><br> -<a name="Install-CodeIgniter"></a></p> - -<h2 id="install-codeigniter">Install CodeIgniter</h2> - -<p>To install CodeIgniter 3 on Laradock all you have to do is the following simple steps:</p> - -<p>1 - Open the <code>docker-compose.yml</code> file.</p> - -<p>2 - Change <code>CODEIGNITER=false</code> to <code>CODEIGNITER=true</code>.</p> - -<p>3 - Re-build your PHP-FPM Container <code>docker-compose build php-fpm</code>.</p> - -<p><br> -<a name="Misc"></a></p> - -<h2 id="miscellaneous">Miscellaneous</h2> - -<p><br> -<a name="Change-the-timezone"></a></p> - -<h2 id="change-the-timezone">Change the timezone</h2> - -<p>To change the timezone for the <code>workspace</code> container, modify the <code>TZ</code> build argument in the Docker Compose file to one in the <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">TZ database</a>.</p> - -<p>For example, if I want the timezone to be <code>New York</code>:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - TZ=America/New_York - ... -</code></pre> - -<p>We also recommend <a href="http://www.camroncade.com/managing-timezones-with-laravel/">setting the timezone in Laravel</a>.</p> - -<p><br> -<a name="CronJobs"></a></p> - -<h2 id="adding-cron-jobs">Adding cron jobs</h2> - -<p>You can add your cron jobs to <code>workspace/crontab/root</code> after the <code>php artisan</code> line.</p> - -<pre><code>* * * * * php /var/www/artisan schedule:run &gt;&gt; /dev/null 2&gt;&amp;1 - -# Custom cron -* * * * * root echo &quot;Every Minute&quot; &gt; /var/log/cron.log 2&gt;&amp;1 -</code></pre> - -<p>Make sure you <a href="#Change-the-timezone">change the timezone</a> if you don&rsquo;t want to use the default (UTC).</p> - -<p><br> -<a name="Workspace-ssh"></a></p> - -<h2 id="access-workspace-via-ssh">Access workspace via ssh</h2> - -<p>You can access the <code>workspace</code> container through <code>localhost:2222</code> by setting the <code>INSTALL_WORKSPACE_SSH</code> build argument to <code>true</code>.</p> - -<p>To change the default forwarded port for ssh:</p> - -<pre><code class="language-yml"> workspace: - ports: - - &quot;2222:22&quot; # Edit this line - ... -</code></pre> - -<p><br> -<a name="MySQL-access-from-host"></a></p> - -<h2 id="mysql-access-from-host">MySQL access from host</h2> - -<p>You can forward the MySQL/MariaDB port to your host by making sure these lines are added to the <code>mysql</code> or <code>mariadb</code> section of the <code>docker-compose.yml</code> or in your <a href="https://docs.docker.com/compose/extends/">environment specific Compose</a> file.</p> - -<pre><code>ports: - - &quot;3306:3306&quot; -</code></pre> - -<p><br> -<a name="MySQL-root-access"></a></p> - -<h2 id="mysql-root-access">MySQL root access</h2> - -<p>The default username and password for the root MySQL user are <code>root</code> and <code>root</code>.</p> - -<p>1 - Enter the MySQL container: <code>docker-compose exec mysql bash</code>.</p> - -<p>2 - Enter mysql: <code>mysql -uroot -proot</code> for non root access use <code>mysql -uhomestead -psecret</code>.</p> - -<p>3 - See all users: <code>SELECT User FROM mysql.user;</code></p> - -<p>4 - Run any commands <code>show databases</code>, <code>show tables</code>, <code>select * from.....</code>.</p> - -<p><br> -<a name="Change-MySQL-port"></a></p> - -<h2 id="change-mysql-port">Change MySQL port</h2> - -<p>Modify the <code>mysql/my.cnf</code> file to set your port number, <code>1234</code> is used as an example.</p> - -<pre><code>[mysqld] -port=1234 -</code></pre> - -<p>If you need <a href="#MySQL-access-from-host">MySQL access from your host</a>, do not forget to change the internal port number (<code>&quot;3306:3306&quot;</code> -&gt; <code>&quot;3306:1234&quot;</code>) in the docker-compose configuration file.</p> - -<p><br> -<a name="Use-custom-Domain"></a></p> - -<h2 id="use-custom-domain-instead-of-the-docker-ip">Use custom Domain (instead of the Docker IP)</h2> - -<p>Assuming your custom domain is <code>laravel.dev</code></p> - -<p>1 - Open your <code>/etc/hosts</code> file and map your localhost address <code>127.0.0.1</code> to the <code>laravel.dev</code> domain, by adding the following:</p> - -<pre><code class="language-bash">127.0.0.1 laravel.dev -</code></pre> - -<p>2 - Open your browser and visit <code>{http://laravel.dev}</code></p> - -<p>Optionally you can define the server name in the NGINX configuration file, like this:</p> - -<pre><code class="language-conf">server_name laravel.dev; -</code></pre> - -<p><br> -<a name="Enable-Global-Composer-Build-Install"></a></p> - -<h2 id="enable-global-composer-build-install">Enable Global Composer Build Install</h2> - -<p>Enabling Global Composer Install during the build for the container allows you to get your composer requirements installed and available in the container after the build is done.</p> - -<p>1 - Open the <code>docker-compose.yml</code> file</p> - -<p>2 - Search for the <code>COMPOSER_GLOBAL_INSTALL</code> argument under the Workspace Container and set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - COMPOSER_GLOBAL_INSTALL=true - ... -</code></pre> - -<p>3 - Now add your dependencies to <code>workspace/composer.json</code></p> - -<p>4 - Re-build the Workspace Container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Install-Prestissimo"></a></p> - -<h2 id="install-prestissimo">Install Prestissimo</h2> - -<p><a href="https://github.com/hirak/prestissimo">Prestissimo</a> is a plugin for composer which enables parallel install functionality.</p> - -<p>1 - Enable Running Global Composer Install during the Build:</p> - -<p>Click on this <a href="#Enable-Global-Composer-Build-Install">Enable Global Composer Build Install</a> and do steps 1 and 2 only then continue here.</p> - -<p>2 - Add prestissimo as requirement in Composer:</p> - -<p>a - Now open the <code>workspace/composer.json</code> file</p> - -<p>b - Add <code>&quot;hirak/prestissimo&quot;: &quot;^0.3&quot;</code> as requirement</p> - -<p>c - Re-build the Workspace Container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Install-Node"></a></p> - -<h2 id="install-node-nvm">Install Node + NVM</h2> - -<p>To install NVM and NodeJS in the Workspace container</p> - -<p>1 - Open the <code>docker-compose.yml</code> file</p> - -<p>2 - Search for the <code>INSTALL_NODE</code> argument under the Workspace Container and set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_NODE=true - ... -</code></pre> - -<p>3 - Re-build the container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Install-Yarn"></a></p> - -<h2 id="install-node-yarn">Install Node + YARN</h2> - -<p>Yarn is a new package manager for JavaScript. It is so faster than npm, which you can find <a href="http://yarnpkg.com/en/compare">here</a>.To install NodeJS and <a href="https://yarnpkg.com/">Yarn</a> in the Workspace container:</p> - -<p>1 - Open the <code>docker-compose.yml</code> file</p> - -<p>2 - Search for the <code>INSTALL_NODE</code> and <code>INSTALL_YARN</code> argument under the Workspace Container and set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_NODE=true - - INSTALL_YARN=true - ... -</code></pre> - -<p>3 - Re-build the container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Install-Linuxbrew"></a></p> - -<h2 id="install-linuxbrew">Install Linuxbrew</h2> - -<p>Linuxbrew is a package manager for Linux. It is the Linux version of MacOS Homebrew and can be found <a href="http://linuxbrew.sh">here</a>. To install Linuxbrew in the Workspace container:</p> - -<p>1 - Open the <code>docker-compose.yml</code> file</p> - -<p>2 - Search for the <code>INSTALL_LINUXBREW</code> argument under the Workspace Container and set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_LINUXBREW=true - ... -</code></pre> - -<p>3 - Re-build the container <code>docker-compose build workspace</code></p> - -<p><br> -<a name="Common-Aliases"></a> -<br></p> - -<h2 id="common-terminal-aliases">Common Terminal Aliases</h2> - -<p>When you start your docker container, Laradock will copy the <code>aliases.sh</code> file located in the <code>laradock/workspace</code> directory and add sourcing to the container <code>~/.bashrc</code> file.</p> - -<p>You are free to modify the <code>aliases.sh</code> as you see fit, adding your own aliases (or function macros) to suit your requirements.</p> - -<p><br> -<a name="Install-Aerospike-Extension"></a></p> - -<h2 id="install-aerospike-extension">Install Aerospike extension</h2> - -<p>1 - First install <code>aerospike</code> in the Workspace and the PHP-FPM Containers: -<br> -a) open the <code>docker-compose.yml</code> file -<br> -b) search for the <code>INSTALL_AEROSPIKE_EXTENSION</code> argument under the Workspace Container -<br> -c) set it to <code>true</code> -<br> -d) search for the <code>INSTALL_AEROSPIKE_EXTENSION</code> argument under the PHP-FPM Container -<br> -e) set it to <code>true</code></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_AEROSPIKE_EXTENSION=true - ... - php-fpm: - build: - context: ./php-fpm - args: - - INSTALL_AEROSPIKE_EXTENSION=true - ... -</code></pre> - -<p>2 - Re-build the containers <code>docker-compose build workspace php-fpm</code></p> - -<p><br> -<a name="Install-Laravel-Envoy"></a></p> - -<h2 id="install-laravel-envoy-envoy-task-runner">Install Laravel Envoy (Envoy Task Runner)</h2> - -<p>1 - Open the <code>docker-compose.yml</code> file -<br> -2 - Search for the <code>INSTALL_LARAVEL_ENVOY</code> argument under the Workspace Container -<br> -3 - Set it to <code>true</code> -<br></p> - -<p>It should be like this:</p> - -<pre><code class="language-yml"> workspace: - build: - context: ./workspace - args: - - INSTALL_LARAVEL_ENVOY=true - ... -</code></pre> - -<p>4 - Re-build the containers <code>docker-compose build workspace</code></p> - -<p><a href="https://laravel.com/docs/5.3/envoy"><strong>Laravel Envoy Documentation Here</strong></a></p> - -<p><br> -<a name="phpstorm-debugging"></a></p> - -<h2 id="phpstorm-debugging-guide">PHPStorm Debugging Guide</h2> - -<p>Remote debug Laravel web and phpunit tests.</p> - -<p><a href="https://github.com/laradock/laradock/blob/master/_guides/phpstorm.md"><strong>Debugging Guide Here</strong></a></p> - -<p><br> -<a name="keep-tracking-Laradock"></a></p> - -<h2 id="keep-track-of-your-laradock-changes">Keep track of your Laradock changes</h2> - -<ol> -<li>Fork the Laradock repository.</li> -<li>Use that fork as a submodule.</li> -<li>Commit all your changes to your fork.</li> -<li>Pull new stuff from the main repository from time to time.</li> -</ol> - -<p><br> -<a name="upgrading-laradock"></a></p> - -<h2 id="upgrading-laradock">Upgrading Laradock</h2> - -<p>Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requires upgrading Laradock from v3.* to v4.*:</p> - -<ol> -<li>Stop the docker VM <code>docker-machine stop {default}</code></li> -<li>Install Docker for <a href="https://docs.docker.com/docker-for-mac/">Mac</a> or <a href="https://docs.docker.com/docker-for-windows/">Windows</a>.</li> -<li>Upgrade Laradock to <code>v4.*.*</code> (<code>git pull origin master</code>)</li> -<li>Use Laradock as you used to do: <code>docker-compose up -d nginx mysql</code>.</li> -</ol> - -<p><strong>Note:</strong> If you face any problem with the last step above: rebuild all your containers -<code>docker-compose build --no-cache</code> -&ldquo;Warning Containers Data might be lost!&rdquo;</p> - -<p><br> -<a name="Speed-MacOS"></a></p> - -<h2 id="improve-speed-on-macos">Improve speed on MacOS</h2> - -<p>Sharing code into Docker containers with osxfs have very poor performance compared to Linux. Likely there are some workarounds:</p> - -<h3 id="workaround-a-using-dinghy">Workaround A: using dinghy</h3> - -<p><a href="https://github.com/codekitchen/dinghy">Dinghy</a> creates its own VM using docker-machine, it will not modify your existing docker-machine VMs.</p> - -<p>Quick Setup giude, (we recommend you check their docs)</p> - -<p>1) <code>brew tap codekitchen/dinghy</code></p> - -<p>2) <code>brew install dinghy</code></p> - -<p>3) <code>dinghy create --provider virtualbox</code> (must have virtualbox installed, but they support other providers if you prefer)</p> - -<p>4) after the above command is done it will display some env variables, copy them to the bash profile or zsh or.. (this will instruct docker to use the server running inside the VM)</p> - -<p>5) <code>docker-compose up ...</code></p> - -<h3 id="workaround-b-using-d4m-nfs">Workaround B: using d4m-nfs</h3> - -<p><a href="https://github.com/IFSight/d4m-nfs">D4m-nfs</a> automatically mount NFS volume instead of osxfs one.</p> - -<p>1) Update the Docker [File Sharing] preferences:</p> - -<p>Click on the Docker Icon &gt; Preferences &gt; (remove everything form the list except <code>/tmp</code>).</p> - -<p>2) Restart Docker.</p> - -<p>3) Clone the <a href="https://github.com/IFSight/d4m-nfs">d4m-nfs</a> repository to your <code>home</code> directory.</p> - -<pre><code class="language-bash">git clone https://github.com/IFSight/d4m-nfs ~/d4m-nfs -</code></pre> - -<p>4) Create (or edit) the file <code>~/d4m-nfs/etc/d4m-nfs-mounts.txt</code>, and write the follwing configuration in it:</p> - -<pre><code class="language-txt">/Users:/Users -</code></pre> - -<p>5) Create (or edit) the file <code>/etc/exports</code>, make sure it exists and is empty. (There may be collisions if you come from Vagrant or if you already executed the <code>d4m-nfs.sh</code> script before).</p> - -<p>6) Run the <code>d4m-nfs.sh</code> script (might need Sudo):</p> - -<pre><code class="language-bash">~/d4m-nfs/d4m-nfs.sh -</code></pre> - -<p>That&rsquo;s it! Run your containers.. Example:</p> - -<pre><code class="language-bash">docker-compose up ... -</code></pre> - -<p><em>Note: If you faced any errors, try restarting Docker, and make sure you have no spaces in the <code>d4m-nfs-mounts.txt</code> file, and your <code>/etc/exports</code> file is clear.</em></p> - -<h3 id="other-good-workarounds">Other good workarounds:</h3> - -<ul> -<li><a href="https://github.com/EugenMayer/docker-sync">docker-sync</a></li> -<li>Add more here..</li> -</ul> - -<p>More details about this issue <a href="https://github.com/docker/for-mac/issues/77">here</a>.</p> - -<p><br> -<a name="Common-Problems"></a></p> - -<h2 id="common-problems">Common Problems</h2> - -<p><em>Here&rsquo;s a list of the common problems you might face, and the possible solutions.</em></p> - -<p><br></p> - -<h2 id="i-see-a-blank-white-page-instead-of-the-laravel-welcome-page">I see a blank (white) page instead of the Laravel &lsquo;Welcome&rsquo; page!</h2> - -<p>Run the following command from the Laravel root directory:</p> - -<pre><code class="language-bash">sudo chmod -R 777 storage bootstrap/cache -</code></pre> - -<p><br></p> - -<h2 id="i-see-welcome-to-nginx-instead-of-the-laravel-app">I see &ldquo;Welcome to nginx&rdquo; instead of the Laravel App!</h2> - -<p>Use <code>http://127.0.0.1</code> instead of <code>http://localhost</code> in your browser.</p> - -<p><br></p> - -<h2 id="i-see-an-error-message-containing-address-already-in-use-or-port-is-already-allocated">I see an error message containing <code>address already in use</code> or <code>port is already allocated</code></h2> - -<p>Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in <code>apache</code>/<code>httpd</code> service or other development tools you have installed.</p> - -<p><br></p> - -<h2 id="i-get-nginx-error-404-not-found-on-windows">I get NGINX error 404 Not Found on Windows.</h2> - -<ol> -<li>Go to docker Settings on your Windows machine.</li> -<li>Click on the <code>Shared Drives</code> tab and check the drive that contains your project files.</li> -<li>Enter your windows username and password.</li> -<li>Go to the <code>reset</code> tab and click restart docker.</li> -</ol> - -<p><br></p> - -<h2 id="the-time-in-my-services-does-not-match-the-current-time">The time in my services does not match the current time</h2> - -<ol> -<li>Make sure you&rsquo;ve <a href="#Change-the-timezone">changed the timezone</a>.</li> -<li>Stop and rebuild the containers (<code>docker-compose up -d --build &lt;services&gt;</code>)</li> -</ol> - -<p><br></p> - -<h2 id="i-get-mysql-connection-refused">I get MySQL connection refused</h2> - -<p>This error sometimes happens because your Laravel application isn&rsquo;t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:</p> - -<ul> -<li>Option A - -<ol> -<li>Check your running Laravel application IP by dumping <code>Request::ip()</code> variable using <code>dd(Request::ip())</code> anywhere on your application. The result is the IP of your Laravel container.</li> -<li>Change the <code>DB_HOST</code> variable on env with the IP that you received from previous step.</li> -</ol></li> -<li>Option B - -<ol> -<li>Change the <code>DB_HOST</code> value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as <code>mysql</code></li> -</ol></li> -</ul> - - - - - Guides - http://laradock.io/guides/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/guides/ - - -<ul> -<li><a href="#Digital-Ocean">Production Setup on Digital Ocean</a></li> -<li><a href="#PHPStorm-Debugging">PHPStorm XDebug Setup</a></li> -</ul> - -<p><a name="Digital-Ocean"></a></p> - -<h1 id="production-setup-on-digital-ocean">Production Setup on Digital Ocean</h1> - -<h2 id="install-docker">Install Docker</h2> - -<ul> -<li>Visit <a href="https://cloud.digitalocean.com/login">DigitalOcean</a> and login.</li> -<li>Click the <code>Create Droplet</code> button.</li> -<li>Open the <code>One-click apps</code> tab.</li> -<li>Select Docker with your preferred version.</li> -<li>Continue creating the droplet as you normally would.</li> -<li>If needed, check your e-mail for the droplet root password.</li> -</ul> - -<h2 id="ssh-to-your-server">SSH to your Server</h2> - -<p>Find the IP address of the droplet in the DigitalOcean interface. Use it to connect to the server.</p> - -<pre><code>ssh root@ipaddress -</code></pre> - -<p>You may be prompted for a password. Type the one you found within your e-mailbox. It&rsquo;ll then ask you to change the password.</p> - -<p>You can now check if Docker is available:</p> - -<pre><code>$root@server:~# docker -</code></pre> - -<h2 id="set-up-your-laravel-project">Set Up Your Laravel Project</h2> - -<pre><code>$root@server:~# apt-get install git -$root@server:~# git clone https://github.com/laravel/laravel -$root@server:~# cd laravel -$root@server:~/laravel/ git submodule add https://github.com/Laradock/laradock.git -$root@server:~/laravel/ cd laradock -</code></pre> - -<h2 id="install-docker-compose-command">Install docker-compose command</h2> - -<pre><code>$root@server:~/laravel/laradock# curl -L https://github.com/docker/compose/releases/download/1.8.0/run.sh &gt; /usr/local/bin/docker-compose -$root@server:~/chmod +x /usr/local/bin/docker-compose -</code></pre> - -<h2 id="create-your-laradock-containers">Create Your Laradock Containers</h2> - -<pre><code>$root@server:~/laravel/laradock# docker-compose up -d nginx mysql -</code></pre> - -<p>Note that more containers are available, find them in the <a href="http://laradock.io/introduction/#supported-software-containers">docs</a> or the <code>docker-compose.yml</code> file.</p> - -<h2 id="go-to-your-workspace">Go to Your Workspace</h2> - -<pre><code>docker-compose exec workspace bash -</code></pre> - -<h2 id="install-and-configure-laravel">Install and configure Laravel</h2> - -<p>Let&rsquo;s install Laravel&rsquo;s dependencies, add the <code>.env</code> file, generate the key and give proper permissions to the cache folder.</p> - -<pre><code>$ root@workspace:/var/www# composer install -$ root@workspace:/var/www# cp .env.example .env -$ root@workspace:/var/www# php artisan key:generate -$ root@workspace:/var/www# exit -$root@server:~/laravel/laradock# cd .. -$root@server:~/laravel# sudo chmod -R 777 storage bootstrap/cache -</code></pre> - -<p>You can then view your Laravel site by visiting the IP address of your server in your browser. For example:</p> - -<pre><code>http://192.168.1.1 -</code></pre> - -<p>It should show you the Laravel default welcome page.</p> - -<p>However, we want it to show up using your custom domain name, as well.</p> - -<h2 id="using-your-own-domain-name">Using Your Own Domain Name</h2> - -<p>Login to your DNS provider, such as Godaddy, Namecheap.</p> - -<p>Point the Custom Domain Name Server to:</p> - -<pre><code>ns1.digitalocean.com -ns2.digitalocean.com -ns3.digitalocean.com -</code></pre> - -<p>Within DigitalOcean, you&rsquo;ll need to change some settings, too.</p> - -<p>Visit: <a href="https://cloud.digitalocean.com/networking/domains">https://cloud.digitalocean.com/networking/domains</a></p> - -<p>Add your domain name and choose the server IP you&rsquo;d provision earlier.</p> - -<h2 id="serving-site-with-nginx-http-only">Serving Site With NGINX (HTTP ONLY)</h2> - -<p>Go back to command line.</p> - -<pre><code>$root@server:~/laravel/laradock# cd nginx -$root@server:~/laravel/laradock/nginx# vim laravel.conf -</code></pre> - -<p>Remove <code>default_server</code></p> - -<pre><code> listen 80 default_server; - listen [::]:80 default_server ipv6only=on; -</code></pre> - -<p>And add <code>server_name</code> (your custom domain)</p> - -<pre><code> listen 80; - listen [::]:80 ipv6only=on; - server_name yourdomain.com; -</code></pre> - -<h2 id="rebuild-your-nginx">Rebuild Your Nginx</h2> - -<pre><code>$root@server:~/laravel/laradock/nginx# docker-compose down -$root@server:~/laravel/laradock/nginx# docker-compose build nginx -</code></pre> - -<h2 id="re-run-your-containers-mysql-and-nginx">Re Run Your Containers MYSQL and NGINX</h2> - -<pre><code>$root@server:~/laravel/laradock/nginx# docker-compose up -d nginx mysql -</code></pre> - -<p><strong>View Your Site with HTTP ONLY (<a href="http://yourdomain.com">http://yourdomain.com</a>)</strong></p> - -<h2 id="run-site-on-ssl-with-let-s-encrypt-certificate">Run Site on SSL with Let&rsquo;s Encrypt Certificate</h2> - -<p><strong>Note: You need to Use Caddy here Instead of Nginx</strong></p> - -<p>To go Caddy Folders and Edit CaddyFile</p> - -<pre><code>$root@server:~/laravel/laradock# cd caddy -$root@server:~/laravel/laradock/caddy# vim Caddyfile -</code></pre> - -<p>Remove 0.0.0.0:80</p> - -<pre><code>0.0.0.0:80 -root /var/www/public -</code></pre> - -<p>and replace with your <a href="https://yourdomain.com">https://yourdomain.com</a></p> - -<pre><code>https://yourdomain.com -root /var/www/public -</code></pre> - -<p>uncomment tls</p> - -<pre><code>#tls self-signed -</code></pre> - -<p>and replace self-signed with your email address</p> - -<pre><code>tls serverbreaker@gmai.com -</code></pre> - -<p>This is needed Prior to Creating Let&rsquo;s Encypt</p> - -<h2 id="run-your-caddy-container-without-the-d-flag-and-generate-ssl-with-let-s-encrypt">Run Your Caddy Container without the -d flag and Generate SSL with Let&rsquo;s Encrypt</h2> - -<pre><code>$root@server:~/laravel/laradock/caddy# docker-compose up caddy -</code></pre> - -<p>You&rsquo;ll be prompt here to enter your email&hellip; you may enter it or not</p> - -<pre><code>Attaching to laradock_mysql_1, laradock_caddy_1 -caddy_1 | Activating privacy features... -caddy_1 | Your sites will be served over HTTPS automatically using Let's Encrypt. -caddy_1 | By continuing, you agree to the Let's Encrypt Subscriber Agreement at: -caddy_1 | https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf -caddy_1 | Activating privacy features... done. -caddy_1 | https://yourdomain.com -caddy_1 | http://yourdomain.com -</code></pre> - -<p>After it finishes, press <code>Ctrl</code> + <code>C</code> to exit.</p> - -<h2 id="stop-all-containers-and-rerun-caddy-and-other-containers-on-background">Stop All Containers and ReRun Caddy and Other Containers on Background</h2> - -<pre><code>$root@server:~/laravel/laradock/caddy# docker-compose down -$root@server:~/laravel/laradock/caddy# docker-compose up -d mysql caddy -</code></pre> - -<p>View your Site in the Browser Securely Using HTTPS (<a href="https://yourdomain.com">https://yourdomain.com</a>)</p> - -<p><strong>Note that Certificate will be Automatically Renew By Caddy</strong></p> - -<blockquote> -<p>References:</p> - -<ul> -<li><a href="https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04">https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04</a></li> -<li><a href="https://www.digitalocean.com/products/one-click-apps/docker/">https://www.digitalocean.com/products/one-click-apps/docker/</a></li> -<li><a href="https://docs.docker.com/engine/installation/linux/ubuntulinux/">https://docs.docker.com/engine/installation/linux/ubuntulinux/</a></li> -<li><a href="https://docs.docker.com/compose/install/">https://docs.docker.com/compose/install/</a></li> -<li><a href="https://caddyserver.com/docs/automatic-https">https://caddyserver.com/docs/automatic-https</a></li> -<li><a href="https://caddyserver.com/docs/tls">https://caddyserver.com/docs/tls</a></li> -<li><a href="https://caddyserver.com/docs/caddyfile">https://caddyserver.com/docs/caddyfile</a></li> -</ul> -</blockquote> - -<p><br> -<br> -<br> -<br> -<br></p> - -<p><a name="PHPStorm-Debugging"></a></p> - -<h1 id="phpstorm-xdebug-setup">PHPStorm XDebug Setup</h1> - -<ul> -<li><a href="#Intro">Intro</a></li> -<li><a href="#Installation">Installation</a> - -<ul> -<li><a href="#CustomizeDockerCompose">Customize laradock/docker-compose.yml</a> - -<ul> -<li><a href="#InstallCleanHouse">Clean House</a></li> -<li><a href="#InstallLaradockDialTone">Laradock Dial Tone</a></li> -<li><a href="#AddToHosts">hosts</a></li> -<li><a href="#FireWall">Firewall</a></li> -<li><a href="#enablePhpXdebug">Enable xDebug on php-fpm</a></li> -</ul></li> -<li><a href="#InstallPHPStorm">PHPStorm Settings</a> - -<ul> -<li><a href="#InstallPHPStormConfigs">Configs</a></li> -</ul></li> -</ul></li> -<li><a href="#Usage">Usage</a> - -<ul> -<li><a href="#UsageLaravel">Laravel</a> - -<ul> -<li><a href="#UsagePHPStormRunExampleTest">Run ExampleTest</a></li> -<li><a href="#UsagePHPStormDebugExampleTest">Debug ExampleTest</a></li> -<li><a href="#UsagePHPStormDebugSite">Debug Web Site</a></li> -</ul></li> -</ul></li> -<li><a href="#SSHintoWorkspace">SSH into workspace</a> - -<ul> -<li><a href="#InstallKiTTY">KiTTY</a></li> -</ul></li> -</ul> - -<p><a name="Intro"></a></p> - -<h2 id="intro">Intro</h2> - -<p>Wiring up <a href="https://laravel.com/">Laravel</a>, <a href="https://github.com/Laradock/laradock">Laradock</a> [Laravel+Docker] and <a href="https://www.jetbrains.com/phpstorm/">PHPStorm</a> to play nice together complete with remote xdebug&rsquo;ing as icing on top! Although this guide is based on <code>PHPStorm Windows</code>, -you should be able to adjust accordingly. This guide was written based on Docker for Windows Native.</p> - -<p><a name="Installation"></a></p> - -<h2 id="installation">Installation</h2> - -<ul> -<li>This guide assumes the following: - -<ul> -<li>you have already installed and are familiar with Laravel, Laradock and PHPStorm.</li> -<li>you have installed Laravel as a parent of <code>laradock</code>. This guide assumes <code>/c/_dk/laravel</code>.</li> -</ul></li> -</ul> - -<p><a name="AddToHosts"></a></p> - -<h2 id="hosts">hosts</h2> - -<ul> -<li><p>Add <code>laravel</code> to your hosts file located on Windows 10 at <code>C:\Windows\System32\drivers\etc\hosts</code>. It should be set to the IP of your running container. Mine is: <code>10.0.75.2</code> -On Windows you can find it by opening Windows <code>Hyper-V Manager</code>.</p> - -<ul> -<li><img src="photos/PHPStorm/Settings/WindowsHyperVManager.png" alt="Windows Hyper-V Manager" /></li> -</ul></li> - -<li><p><a href="https://github.com/scottlerch/HostsFileEditor">Hosts File Editor</a> makes it easy to change your hosts file.</p> - -<ul> -<li>Set <code>laravel</code> to your docker host IP. See <a href="photos/SimpleHostsEditor/AddHost_laravel.png">Example</a>.</li> -</ul></li> -</ul> - -<p><a name="FireWall"></a></p> - -<h2 id="firewall">Firewall</h2> - -<p>Your PHPStorm will need to be able to receive a connection from PHP xdebug either your running workspace or php-fpm containers on port 9000. This means that your Windows Firewall should either enable connections from the Application PHPStorm OR the port.</p> - -<ul> -<li>It is important to note that if the Application PHPStorm is NOT enabled in the firewall, you will not be able to recreate a rule to override that.</li> -<li>Also be aware that if you are installing/upgrade different versions of PHPStorm, you MAY have orphaned references to PHPStorm in your Firewall! You may decide to remove orphaned references however in either case, make sure that they are set to receive public TCP traffic.</li> -</ul> - -<h3 id="edit-laradock-docker-compose-yml">Edit laradock/docker-compose.yml</h3> - -<p>Set the following variables:</p> - -<pre><code>### Workspace Utilities Container ############### - - workspace: - build: - context: ./workspace - args: - - INSTALL_XDEBUG=true - - INSTALL_WORKSPACE_SSH=true - ... - - -### PHP-FPM Container ##################### - - php-fpm: - build: - context: ./php-fpm - args: - - INSTALL_XDEBUG=true - ... - -</code></pre> - -<h3 id="edit-xdebug-ini-files">Edit xdebug.ini files</h3> - -<ul> -<li><code>laradock/workspace/xdebug.ini</code></li> -<li><code>laradock/php-fpm/xdebug.ini</code></li> -</ul> - -<p>Set the following variables:</p> - -<pre><code>xdebug.remote_autostart=1 -xdebug.remote_enable=1 -xdebug.remote_connect_back=1 -xdebug.cli_color=1 -</code></pre> - -<p><a name="InstallCleanHouse"></a></p> - -<h3 id="need-to-clean-house-first">Need to clean house first?</h3> - -<p>Make sure you are starting with a clean state. For example, do you have other Laradock containers and images? -Here are a few things I use to clean things up.</p> - -<ul> -<li><p>Delete all containers using <code>grep laradock_</code> on the names, see: <a href="https://linuxconfig.org/remove-all-containners-based-on-docker-image-name">Remove all containers based on docker image name</a>. -<code>docker ps -a | awk '{ print $1,$2 }' | grep laradock_ | awk '{print $1}' | xargs -I {} docker rm {}</code></p></li> - -<li><p>Delete all images containing <code>laradock</code>. -<code>docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {}</code> -<strong>Note:</strong> This will only delete images that were built with <code>Laradock</code>, <strong>NOT</strong> <code>laradock/*</code> which are pulled down by <code>Laradock</code> such as <code>laradock/workspace</code>, etc. -<strong>Note:</strong> Some may fail with: -<code>Error response from daemon: conflict: unable to delete 3f38eaed93df (cannot be forced) - image has dependent child images</code></p></li> - -<li><p>I added this to my <code>.bashrc</code> to remove orphaned images.</p> - -<pre><code>dclean() { - processes=`docker ps -q -f status=exited` - if [ -n &quot;$processes&quot; ]; thend - docker rm $processes - fi - - images=`docker images -q -f dangling=true` - if [ -n &quot;$images&quot; ]; then - docker rmi $images - fi -} -</code></pre></li> - -<li><p>If you frequently switch configurations for Laradock, you may find that adding the following and added to your <code>.bashrc</code> or equivalent useful: -```</p> - -<h1 id="remove-laravel-containers">remove laravel* containers</h1> - -<h1 id="remove-laravel-images">remove laravel_* images</h1> - -<p>dcleanlaradockfunction() -{ - echo &lsquo;Removing ALL containers associated with laradock&rsquo; - docker ps -a | awk &lsquo;{ print $1,$2 }&rsquo; | grep laradock | awk &lsquo;{print $1}&rsquo; | xargs -I {} docker rm {}</p></li> -</ul> - -<p> # remove ALL images associated with laradock_ - # does NOT delete laradock/* which are hub images - echo &lsquo;Removing ALL images associated with laradock<em>&lsquo; - docker images | awk &lsquo;{print $1,$2,$3}&rsquo; | grep laradock</em> | awk &lsquo;{print $3}&rsquo; | xargs -I {} docker rmi {}</p> - -<p> echo &lsquo;Listing all laradock docker hub images&hellip;&rsquo; - docker images | grep laradock</p> - -<p> echo &lsquo;dcleanlaradock completed&rsquo; -}</p> - -<h1 id="associate-the-above-function-with-an-alias">associate the above function with an alias</h1> - -<h1 id="so-can-recall-lookup-by-typing-alias">so can recall/lookup by typing &lsquo;alias&rsquo;</h1> - -<p>alias dcleanlaradock=dcleanlaradockfunction</p> - -<pre><code> -&lt;a name=&quot;InstallLaradockDialTone&quot;&gt;&lt;/a&gt; -## Let's get a dial-tone with Laravel - -</code></pre> - -<h1 id="barebones-at-this-point">barebones at this point</h1> - -<p>docker-compose up -d nginx mysql</p> - -<h1 id="run">run</h1> - -<p>docker-compose ps</p> - -<h1 id="should-see">Should see:</h1> - -<pre><code> Name Command State Ports -</code></pre> - -<hr /> - -<p>laradock_mysql_1 docker-entrypoint.sh mysqld Up 0.0.0.0:3306-&gt;3306/tcp -laradock_nginx_1 nginx Up 0.0.0.0:443-&gt;443/tcp, 0.0.0.0:80-&gt;80/tcp -laradock_php-fpm_1 php-fpm Up 9000/tcp -laradock_volumes_data_1 true Exit 0 -laradock_volumes_source_1 true Exit 0 -laradock_workspace_1 /sbin/my_init Up 0.0.0.0:2222-&gt;22/tcp</p> - -<pre><code> -&lt;a name=&quot;enablePhpXdebug&quot;&gt;&lt;/a&gt; -## Enable xDebug on php-fpm -In a host terminal sitting in the laradock folder, run: `.php-fpm/xdebug status` -You should see something like the following: -</code></pre> - -<p>xDebug status -laradock_php-fpm_1 -PHP 7.0.9 (cli) (built: Aug 10 2016 19:45:48) ( NTS ) -Copyright &copy; 1997-2016 The PHP Group -Zend Engine v3.0.0, Copyright &copy; 1998-2016 Zend Technologies - with Xdebug v2.4.1, Copyright &copy; 2002-2016, by Derick Rethans -``<code> -Other commands include</code>.php-fpm/xdebug start | stop`.</p> - -<p>If you have enabled <code>xdebug=true</code> in <code>docker-compose.yml/php-fpm</code>, <code>xdebug</code> will already be running when -<code>php-fpm</code> is started and listening for debug info on port 9000.</p> - -<p><a name="InstallPHPStormConfigs"></a></p> - -<h2 id="phpstorm-settings">PHPStorm Settings</h2> - -<ul> -<li><p>Here are some settings that are known to work:</p> - -<ul> -<li><p><code>Settings/BuildDeploymentConnection</code></p> - -<ul> -<li><img src="photos/PHPStorm/Settings/BuildDeploymentConnection.png" alt="Settings/BuildDeploymentConnection" /></li> -</ul></li> - -<li><p><code>Settings/BuildDeploymentConnectionMappings</code></p> - -<ul> -<li><img src="photos/PHPStorm/Settings/BuildDeploymentConnectionMappings.png" alt="Settings/BuildDeploymentConnectionMappings" /></li> -</ul></li> - -<li><p><code>Settings/BuildDeploymentDebugger</code></p> - -<ul> -<li><img src="photos/PHPStorm/Settings/BuildDeploymentDebugger.png" alt="Settings/BuildDeploymentDebugger" /></li> -</ul></li> - -<li><p><code>Settings/EditRunConfigurationRemoteWebDebug</code></p> - -<ul> -<li><img src="photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png" alt="Settings/EditRunConfigurationRemoteWebDebug" /></li> -</ul></li> - -<li><p><code>Settings/EditRunConfigurationRemoteExampleTestDebug</code></p> - -<ul> -<li><img src="photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png" alt="Settings/EditRunConfigurationRemoteExampleTestDebug" /></li> -</ul></li> - -<li><p><code>Settings/LangsPHPDebug</code></p> - -<ul> -<li><img src="photos/PHPStorm/Settings/LangsPHPDebug.png" alt="Settings/LangsPHPDebug" /></li> -</ul></li> - -<li><p><code>Settings/LangsPHPInterpreters</code></p> - -<ul> -<li><img src="photos/PHPStorm/Settings/LangsPHPInterpreters.png" alt="Settings/LangsPHPInterpreters" /></li> -</ul></li> - -<li><p><code>Settings/LangsPHPPHPUnit</code></p> - -<ul> -<li><img src="photos/PHPStorm/Settings/LangsPHPPHPUnit.png" alt="Settings/LangsPHPPHPUnit" /></li> -</ul></li> - -<li><p><code>Settings/LangsPHPServers</code></p> - -<ul> -<li><img src="photos/PHPStorm/Settings/LangsPHPServers.png" alt="Settings/LangsPHPServers" /></li> -</ul></li> - -<li><p><code>RemoteHost</code> -To switch on this view, go to: <code>Menu/Tools/Deployment/Browse Remote Host</code>.</p> - -<ul> -<li><img src="photos/PHPStorm/RemoteHost.png" alt="RemoteHost" /></li> -</ul></li> - -<li><p><code>RemoteWebDebug</code></p> - -<ul> -<li><img src="photos/PHPStorm/DebugRemoteOn.png" alt="DebugRemoteOn" /></li> -</ul></li> - -<li><p><code>EditRunConfigurationRemoteWebDebug</code> -Go to: <code>Menu/Run/Edit Configurations</code>.</p> - -<ul> -<li><img src="photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png" alt="EditRunConfigurationRemoteWebDebug" /></li> -</ul></li> - -<li><p><code>EditRunConfigurationRemoteExampleTestDebug</code> -Go to: <code>Menu/Run/Edit Configurations</code>.</p> - -<ul> -<li><img src="photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png" alt="EditRunConfigurationRemoteExampleTestDebug" /></li> -</ul></li> - -<li><p><code>WindowsFirewallAllowedApps</code> -Go to: <code>Control Panel\All Control Panel Items\Windows Firewall\Allowed apps</code>.</p> - -<ul> -<li><img src="photos/PHPStorm/Settings/WindowsFirewallAllowedApps.png" alt="WindowsFirewallAllowedApps.png" /></li> -</ul></li> - -<li><p><code>hosts</code> -Edit: <code>C:\Windows\System32\drivers\etc\hosts</code>.</p> - -<ul> -<li><p><img src="photos/PHPStorm/Settings/hosts.png" alt="WindowsFirewallAllowedApps.png" /></p></li> - -<li><p><a href="#enablePhpXdebug">Enable xDebug on php-fpm</a></p></li> -</ul></li> -</ul></li> -</ul> - -<p><a name="Usage"></a></p> - -<h2 id="usage">Usage</h2> - -<p><a name="UsagePHPStormRunExampleTest"></a></p> - -<h3 id="run-exampletest">Run ExampleTest</h3> - -<ul> -<li>right-click on <code>tests/ExampleTest.php</code> - -<ul> -<li>Select: <code>Run 'ExampleTest.php'</code> or <code>Ctrl+Shift+F10</code>.</li> -<li>Should pass!! You just ran a remote test via SSH!</li> -</ul></li> -</ul> - -<p><a name="UsagePHPStormDebugExampleTest"></a></p> - -<h3 id="debug-exampletest">Debug ExampleTest</h3> - -<ul> -<li>Open to edit: <code>tests/ExampleTest.php</code></li> -<li>Add a BreakPoint on line 16: <code>$this-&gt;visit('/')</code></li> -<li>right-click on <code>tests/ExampleTest.php</code> - -<ul> -<li>Select: <code>Debug 'ExampleTest.php'</code>.</li> -<li>Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH!</li> -<li><img src="photos/PHPStorm/RemoteTestDebuggingSuccess.png" alt="Remote Test Debugging Success" /></li> -</ul></li> -</ul> - -<p><a name="UsagePHPStormDebugSite"></a></p> - -<h3 id="debug-website">Debug WebSite</h3> - -<ul> -<li><p>In case xDebug is disabled, from the <code>laradock</code> folder run: -<code>.php-fpm/xdebug start</code>.</p> - -<ul> -<li>To switch xdebug off, run: -<code>.php-fpm/xdebug stop</code></li> -</ul></li> - -<li><p>Start Remote Debugging</p> - -<ul> -<li><img src="photos/PHPStorm/DebugRemoteOn.png" alt="DebugRemoteOn" /></li> -</ul></li> - -<li><p>Open to edit: <code>bootstrap/app.php</code></p></li> - -<li><p>Add a BreakPoint on line 14: <code>$app = new Illuminate\Foundation\Application(</code></p></li> - -<li><p>Reload <a href="http://laravel/">Laravel Site</a></p> - -<ul> -<li>Should have stopped at the BreakPoint!! You are now debugging locally against a remote Laravel project via SSH!</li> -<li><img src="photos/PHPStorm/RemoteDebuggingSuccess.png" alt="Remote Debugging Success" /></li> -</ul></li> -</ul> - -<p><a name="SSHintoWorkspace"></a></p> - -<h2 id="let-s-shell-into-workspace">Let&rsquo;s shell into workspace</h2> - -<p>Assuming that you are in laradock folder, type: -<code>ssh -i workspace/insecure_id_rsa -p2222 root@laravel</code> -<strong>Cha Ching!!!!</strong> -- <code>workspace/insecure_id_rsa.ppk</code> may become corrupted. In which case: - - fire up <code>puttygen</code> - - import <code>workspace/insecure_id_rsa</code> - - save private key to <code>workspace/insecure_id_rsa.ppk</code></p> - -<p><a name="InstallKiTTY"></a></p> - -<h3 id="kitty">KiTTY</h3> - -<p><a href="http://www.9bis.net/kitty/">Kitty</a> KiTTY is a fork from version 0.67 of PuTTY.</p> - -<ul> -<li>Here are some settings that are working for me: - -<ul> -<li><img src="photos/KiTTY/Session.png" alt="Session" /></li> -<li><img src="photos/KiTTY/Terminal.png" alt="Terminal" /></li> -<li><img src="photos/KiTTY/Window.png" alt="Window" /></li> -<li><img src="photos/KiTTY/WindowAppearance.png" alt="WindowAppearance" /></li> -<li><img src="photos/KiTTY/Connection.png" alt="Connection" /></li> -<li><img src="photos/KiTTY/ConnectionData.png" alt="ConnectionData" /></li> -<li><img src="photos/KiTTY/ConnectionSSH.png" alt="ConnectionSSH" /></li> -<li><img src="photos/KiTTY/ConnectionSSHAuth.png" alt="ConnectionSSHAuth" /></li> -<li><img src="photos/KiTTY/TerminalShell.png" alt="TerminalShell" /></li> -</ul></li> -</ul> - - - - - Help & Questions - http://laradock.io/help/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/help/ - <p>Join the chat room on <a href="https://gitter.im/Laradock/laradock">Gitter</a> and get help and support from the community.</p> - -<p>You can as well can open an <a href="https://github.com/laradock/laradock/issues">issue</a> on Github (will be labeled as Question) and discuss it with people on <a href="https://gitter.im/Laradock/laradock">Gitter</a>.</p> - - - - - Related Projects - http://laradock.io/related-projects/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/related-projects/ - <p>Laradock related projects:</p> - -<ul> -<li><a href="https://github.com/lorinlee/laradock-cli">Laradock CLI</a> by <a href="https://github.com/lorinlee">LorinLee</a></li> -<li><a href="https://github.com/bagart/laradock_env">Laradock Env</a> by <a href="https://github.com/bagart">BAGArt</a></li> -<li><a href="https://github.com/poyhsiao/Klaradock">Klaradock</a> by <a href="https://github.com/poyhsiao">Kim Hsiao</a></li> -<li><a href="https://github.com/sifat-rahim/ansible-laradock-kubernetes">Ansible Laradock Kubernetes</a> by <a href="https://github.com/sifat-rahim">Sifat Rahim</a> -These Docker Compose projects have piqued our interest:</li> -<li><a href="https://github.com/ojhaujjwal/magedock">MageDock</a> by <a href="https://github.com/ojhaujjwal">Ujjwal Ojha</a></li> -<li><a href="https://github.com/scudelletti/rubydev-dock">RubyDev-Dock</a> by <a href="https://github.com/scudelletti">Diogo Scudelletti</a></li> -<li><a href="https://github.com/Osedea/nodock">NoDock</a> by <a href="https://github.com/Osedea">Osedea</a></li> -</ul> - -<p>If you want your project listed here, please open an issue.</p> - - - - - Contributing - http://laradock.io/contributing/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/contributing/ - - -<p>Your contribution is more than welcome.</p> - -<h2 id="i-have-a-question-problem">I have a Question/Problem</h2> - -<p>If you have questions about how to use Laradock, please direct your questions to the discussion on <a href="https://gitter.im/Laradock/laradock">Gitter</a>. If you believe your question could help others, then consider opening an <a href="https://github.com/laradock/laradock/issues">Issue</a> (it will be labeled as <code>Question</code>) And you can still seek help on Gitter for it.</p> - -<h2 id="i-found-an-issue">I found an Issue</h2> - -<p>If have an issue or you found a typo in the documentation, you can help us by -opnening an <a href="https://github.com/laradock/laradock/issues">Issue</a>.</p> - -<p><strong>Steps to do before opening an Issue:</strong></p> - -<ol> -<li><p>Before you submit your issue search the archive, maybe your question was already answered couple hours ago (search in the closed Issues as well).</p></li> - -<li><p>Decide if the Issue belongs to this project or to <a href="https://github.com/docker">Docker</a> itself! or even the tool you are using such as Nginx or MongoDB&hellip;</p></li> -</ol> - -<p>If your issue appears to be a bug, and hasn&rsquo;t been reported, then open a new issue.</p> - -<p><em>This Help us to maximize the effort we can spend fixing issues and adding new -features, by not reporting duplicate issues.</em></p> - -<h2 id="i-want-a-feature">I want a Feature</h2> - -<p>You can request a new feature by submitting an <a href="https://github.com/laradock/laradock/issues">Issue</a> (it will be labeled as <code>Feature Suggestion</code>). If you would like to implement a new feature then consider submitting a Pull Request yourself.</p> - -<h2 id="i-want-to-update-the-documentation-site">I want to update the Documentation (Site)</h2> - -<p>Laradock uses <a href="https://gohugo.io/">Hugo</a> as website generator tool, with the <a href="http://themes.gohugo.io/theme/material-docs/">Material Docs theme</a>. You might need to check their docs quickly.</p> - -<p>Go the <code>DOCUMENTATION/content</code> and search for the markdown file you want to edit</p> - -<p>Note: Every folder represents a section in the sidebar &ldquo;Menu&rdquo;. And every page and sidebar has a <code>weight</code> number to show it&rsquo;s position in the site.</p> - -<p>To update the sidebar or add a new section to it, you can edit this <code>DOCUMENTATION/config.toml</code> toml file.</p> - -<blockquote> -<p>The site will be auto-generated in the <code>docs/</code> folder by <a href="https://travis-ci.org/laradock/laradock/">Travis CI</a>.</p> -</blockquote> - -<p><br></p> - -<h3 id="to-host-the-website-locally">To Host the website locally</h3> - -<ol> -<li>Install <a href="https://gohugo.io/">Hugo</a> on your machine.</li> -<li>Edit the <code>DOCUMENTATION/content</code>.</li> -<li>Delete the <code>/docs</code> folder from the root.</li> -<li>After you finish the editing, go to <code>DOCUMENTATION/</code> and run the <code>hugo</code> command to generate the HTML docs (inside a new <code>/docs</code> folder).</li> -</ol> - -<h2 id="how-to-support-new-software-add-new-container">How to support new Software (Add new Container)</h2> - -<ul> -<li><p>Create folder with the software name.</p></li> - -<li><p>Add a <code>Dockerfile</code>, write your code there.</p></li> - -<li><p>You may add additional files in the software folder.</p></li> - -<li><p>Add the software to the <code>docker-compose.yml</code> file.</p></li> - -<li><p>Make sure you follow our commenting style.</p></li> - -<li><p>Add the software in the <code>Documentation</code>.</p></li> -</ul> - -<h2 id="edit-existing-software-edit-a-container">Edit existing Software (Edit a Container)</h2> - -<ul> -<li><p>Open the software (container) folder.</p></li> - -<li><p>Edit the files you want to update.</p></li> - -<li><p><strong>Note:</strong> If you want to edit the base image of the <code>Workspace</code> or the <code>php-fpm</code> Containers, -you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the Laradock repository.</p></li> - -<li><p>Make sure to update the <code>Documentation</code> in case you made any changes.</p></li> -</ul> - -<h2 id="pull-request">Pull Request</h2> - -<h3 id="1-before-submitting-a-pull-request-pr">1. Before Submitting a Pull Request (PR)</h3> - -<p>Always Test everything and make sure its working:</p> - -<ul> -<li>Pull the latest updates (or fork of you don’t have permission)</li> -<li>Before editing anything: - -<ul> -<li>Test building the container (docker-compose build &ndash;no-cache container-name) build with no cache first.</li> -<li>Test running the container with some other containers in real app and see of everything is working fine.</li> -</ul></li> -<li>Now edit the container (edit section by section and test rebuilding the container after every edited section) - -<ul> -<li>Testing building the container (docker-compose build container-name) with no errors.</li> -<li>Test it in a real App if possible.</li> -</ul></li> -</ul> - -<h3 id="2-submitting-a-pr">2. Submitting a PR</h3> - -<p>Consider the following guidelines:</p> - -<ul> -<li><p>Search <a href="https://github.com/laradock/laradock/pulls">GitHub</a> for an open or closed Pull Request that relates to your submission. You don&rsquo;t want to duplicate efforts.</p></li> - -<li><p>Make your changes in a new git branch:</p> - -<pre><code class="language-shell"> git checkout -b my-fix-branch master -</code></pre></li> - -<li><p>Commit your changes using a descriptive commit message.</p></li> - -<li><p>Push your branch to GitHub:</p> - -<pre><code class="language-shell">git push origin my-fix-branch -</code></pre></li> - -<li><p>In GitHub, send a pull request to <code>laradock:master</code>.</p></li> - -<li><p>If we suggest changes then:</p> - -<ul> -<li>Make the required updates.</li> -<li>Commit your changes to your branch (e.g. <code>my-fix-branch</code>).</li> -<li>Push the changes to your GitHub repository (this will update your Pull Request).</li> -</ul></li> -</ul> - -<blockquote> -<p>If the PR gets too outdated we may ask you to rebase and force push to update the PR:</p> -</blockquote> - -<pre><code class="language-shell">git rebase master -i -git push origin my-fix-branch -f -</code></pre> - -<p><em>WARNING. Squashing or reverting commits and forced push thereafter may remove GitHub comments on code that were previously made by you and others in your commits.</em></p> - -<h3 id="3-after-your-pr-is-merged">3. After your PR is merged</h3> - -<p>After your pull request is merged, you can safely delete your branch and pull the changes from the main (upstream) repository:</p> - -<ul> -<li><p>Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:</p> - -<pre><code class="language-shell">git push origin --delete my-fix-branch -</code></pre></li> - -<li><p>Check out the master branch:</p> - -<pre><code class="language-shell">git checkout master -f -</code></pre></li> - -<li><p>Delete the local branch:</p> - -<pre><code class="language-shell">git branch -D my-fix-branch -</code></pre></li> - -<li><p>Update your master with the latest upstream version:</p> - -<pre><code class="language-shell">git pull --ff upstream master -</code></pre></li> -</ul> - -<p><br></p> - -<h4 id="happy-coding">Happy Coding :)</h4> - - - - - License - http://laradock.io/license/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/license/ - <p><a href="https://github.com/laradock/laradock/blob/master/LICENSE">MIT License</a> (MIT)</p> - - - - - Welcome - http://laradock.io/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/ - - - - - diff --git a/docs/introduction/index.html b/docs/introduction/index.html deleted file mode 100644 index d32e0067..00000000 --- a/docs/introduction/index.html +++ /dev/null @@ -1,616 +0,0 @@ - - - - - - - - - - - - Introduction - Laradock - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - -
    - - -
    - -
    -
    - - -
    - -
    -
    -

    Introduction

    - - - -

    A full PHP development environment for Docker.

    - -

    Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.

    - -

    Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal…

    - -

    - -

    Quick Overview

    - -

    Let’s see how easy it is to install NGINX, PHP, Composer, MySQL, Redis and Beanstalkd:

    - -

    1 - Clone Laradock inside your PHP project:

    - -
    git clone https://github.com/Laradock/laradock.git
    -
    - -

    2 - Enter the laradock folder and rename env-example to .env.

    - -
    cp env-example .env
    -
    - -

    3 - Run your containers:

    - -
    docker-compose up -d nginx mysql redis beanstalkd
    -
    - -

    4 - Open your project’s .env file and set the following:

    - -
    DB_HOST=mysql
    -REDIS_HOST=redis
    -QUEUE_HOST=beanstalkd
    -
    - -

    5 - Open your browser and visit localhost: http://localhost.

    - -
    That's it! enjoy :)
    -
    - -

    - -

    Features

    - -
      -
    • Easy switch between PHP versions: 7.1, 7.0, 5.6…
    • -
    • Choose your favorite database engine: MySQL, Postgres, MariaDB…
    • -
    • Run your own combination of software: Memcached, HHVM, Beanstalkd…
    • -
    • Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI…
    • -
    • Easy to customize any container, with simple edit to the Dockerfile.
    • -
    • All Images extends from an official base Image. (Trusted base Images).
    • -
    • Pre-configured NGINX to host any code at your root directory.
    • -
    • Can use Laradock per project, or single Laradock for all projects.
    • -
    • Easy to install/remove software’s in Containers using environment variables.
    • -
    • Clean and well structured Dockerfiles (Dockerfile).
    • -
    • Latest version of the Docker Compose file (docker-compose).
    • -
    • Everything is visible and editable.
    • -
    • Fast Images Builds.
    • -
    • More to come every week..
    • -
    - -

    - -

    Supported Software (Images)

    - -

    In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container. -You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.

    - -
      -
    • Database Engines: -MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - MSSQL - PostgreSQL - Postgres Postgis.
    • -
    • Cache Engines: -Redis - Memcached - Aerospike
    • -
    • PHP Servers: -NGINX - Apache2 - Caddy
    • -
    • PHP Compilers: -PHP FPM - HHVM
    • -
    • Message Queuing: -Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console - PHP Worker
    • -
    • Tools: -HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varnish - PhpMyAdmin - Adminer - PgAdmin - MailHog…
    • -
    - -

    Laradock introduces the Workspace Image, as a development environment. -It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.

    - -

    Workspace Image Tools -PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush…

    - -

    You can choose, which tools to install in your workspace container and other containers, from the .env file.

    - -
    -

    If you modify docker-compose.yml, .env or any dockerfile file, you must re-build your containers, to see those effects in the running instance.

    -
    - -

    If you can’t find your Software in the list, build it yourself and sumit it. Contributions are welcomed :)

    - -

    - -

    What is Docker?

    - -

    Docker is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of operating-system-level virtualization on Linux, Mac OS and Windows.

    - -

    - -

    Why Docker not Vagrant!?

    - -

    Vagrant creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.

    - -

    Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you lightweight Virtual Containers, that share the same kernel and allow to safely execute independent processes.

    - -

    In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.

    - -

    Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).

    - -

    - -

    Demo Video

    - -

    What’s better than a Demo Video:

    - -
      -
    • Laradock v5.* (soon or never)
    • -
    • Laradock v4.*
    • -
    • Laradock v2.*
    • -
    • Laradock v0.3
    • -
    • Laradock v0.1
    • -
    - -

    - -

    Chat with us

    - -

    You are welcome to join our chat room on Gitter.

    - -

    Gitter

    - - - - - -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - diff --git a/docs/introduction/index.xml b/docs/introduction/index.xml deleted file mode 100644 index f6c52c07..00000000 --- a/docs/introduction/index.xml +++ /dev/null @@ -1,158 +0,0 @@ - - - - Introductions on Laradock - http://laradock.io/introduction/index.xml - Recent content in Introductions on Laradock - Hugo -- gohugo.io - en-us - - - - Introduction - http://laradock.io/introduction/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/introduction/ - - -<p>A full PHP development environment for Docker.</p> - -<p>Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.</p> - -<p>Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal&hellip;</p> - -<p><img src="https://s19.postimg.org/jblfytw9f/laradock-logo.jpg" alt="" /></p> - -<h2 id="quick-overview">Quick Overview</h2> - -<p>Let&rsquo;s see how easy it is to install <code>NGINX</code>, <code>PHP</code>, <code>Composer</code>, <code>MySQL</code>, <code>Redis</code> and <code>Beanstalkd</code>:</p> - -<p>1 - Clone Laradock inside your PHP project:</p> - -<pre><code class="language-shell">git clone https://github.com/Laradock/laradock.git -</code></pre> - -<p>2 - Enter the laradock folder and rename <code>env-example</code> to <code>.env</code>.</p> - -<pre><code class="language-shell">cp env-example .env -</code></pre> - -<p>3 - Run your containers:</p> - -<pre><code class="language-shell">docker-compose up -d nginx mysql redis beanstalkd -</code></pre> - -<p>4 - Open your project&rsquo;s <code>.env</code> file and set the following:</p> - -<pre><code class="language-shell">DB_HOST=mysql -REDIS_HOST=redis -QUEUE_HOST=beanstalkd -</code></pre> - -<p>5 - Open your browser and visit localhost: <code>http://localhost</code>.</p> - -<pre><code class="language-shell">That's it! enjoy :) -</code></pre> - -<p><a name="features"></a></p> - -<h2 id="features">Features</h2> - -<ul> -<li>Easy switch between PHP versions: 7.1, 7.0, 5.6&hellip;</li> -<li>Choose your favorite database engine: MySQL, Postgres, MariaDB&hellip;</li> -<li>Run your own combination of software: Memcached, HHVM, Beanstalkd&hellip;</li> -<li>Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI&hellip;</li> -<li>Easy to customize any container, with simple edit to the <code>Dockerfile</code>.</li> -<li>All Images extends from an official base Image. (Trusted base Images).</li> -<li>Pre-configured NGINX to host any code at your root directory.</li> -<li>Can use Laradock per project, or single Laradock for all projects.</li> -<li>Easy to install/remove software&rsquo;s in Containers using environment variables.</li> -<li>Clean and well structured Dockerfiles (<code>Dockerfile</code>).</li> -<li>Latest version of the Docker Compose file (<code>docker-compose</code>).</li> -<li>Everything is visible and editable.</li> -<li>Fast Images Builds.</li> -<li>More to come every week..</li> -</ul> - -<p><a name="Supported-Containers"></a></p> - -<h2 id="supported-software-images">Supported Software (Images)</h2> - -<p>In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container. -You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.</p> - -<ul> -<li><strong>Database Engines:</strong> -MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - MSSQL - PostgreSQL - Postgres Postgis.</li> -<li><strong>Cache Engines:</strong> -Redis - Memcached - Aerospike</li> -<li><strong>PHP Servers:</strong> -NGINX - Apache2 - Caddy</li> -<li><strong>PHP Compilers:</strong> -PHP FPM - HHVM</li> -<li><strong>Message Queuing:</strong> -Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console - PHP Worker</li> -<li><strong>Tools:</strong> -HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varnish - PhpMyAdmin - Adminer - PgAdmin - MailHog&hellip;</li> -</ul> - -<p>Laradock introduces the <strong>Workspace</strong> Image, as a development environment. -It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.</p> - -<p><strong>Workspace Image Tools</strong> -PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush&hellip;</p> - -<p>You can choose, which tools to install in your workspace container and other containers, from the <code>.env</code> file.</p> - -<blockquote> -<p>If you modify <code>docker-compose.yml</code>, <code>.env</code> or any <code>dockerfile</code> file, you must re-build your containers, to see those effects in the running instance.</p> -</blockquote> - -<p>If you can&rsquo;t find your Software in the list, build it yourself and sumit it. Contributions are welcomed :)</p> - -<p><a name="what-is-docker"></a></p> - -<h2 id="what-is-docker">What is Docker?</h2> - -<p><a href="https://www.docker.com">Docker</a> is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of <a href="https://en.wikipedia.org/wiki/Operating-system-level_virtualization">operating-system-level virtualization</a> on Linux, Mac OS and Windows.</p> - -<p><a name="why-docker-not-vagrant"></a></p> - -<h2 id="why-docker-not-vagrant">Why Docker not Vagrant!?</h2> - -<p><a href="https://www.vagrantup.com">Vagrant</a> creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.</p> - -<p>Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you <strong>lightweight</strong> Virtual Containers, that share the same kernel and allow to safely execute independent processes.</p> - -<p>In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.</p> - -<p>Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).</p> - -<p><a name="Demo"></a></p> - -<h2 id="demo-video">Demo Video</h2> - -<p>What&rsquo;s better than a <strong>Demo Video</strong>:</p> - -<ul> -<li>Laradock v5.* (soon or never)</li> -<li>Laradock <a href="https://www.youtube.com/watch?v=TQii1jDa96Y">v4.*</a></li> -<li>Laradock <a href="https://www.youtube.com/watch?v=-DamFMczwDA">v2.*</a></li> -<li>Laradock <a href="https://www.youtube.com/watch?v=jGkyO6Is_aI">v0.3</a></li> -<li>Laradock <a href="https://www.youtube.com/watch?v=3YQsHe6oF80">v0.1</a></li> -</ul> - -<p><a name="Chat"></a></p> - -<h2 id="chat-with-us">Chat with us</h2> - -<p>You are welcome to join our chat room on Gitter.</p> - -<p><a href="https://gitter.im/Laradock/laradock?utm_source=badge&amp;utm_medium=badge&amp;utm_campaign=pr-badge"><img src="https://badges.gitter.im/Laradock/laradock.svg" alt="Gitter" /></a></p> - - - - - \ No newline at end of file diff --git a/docs/javascripts/application.js b/docs/javascripts/application.js deleted file mode 100644 index 1199f2e1..00000000 --- a/docs/javascripts/application.js +++ /dev/null @@ -1 +0,0 @@ -function pegasus(t,e){return e=new XMLHttpRequest,e.open("GET",t),t=[],e.onreadystatechange=e.then=function(n,o,i,r){if(n&&n.call&&(t=[,n,o]),4==e.readyState&&(i=t[0|e.status/200])){try{r=JSON.parse(e.responseText)}catch(s){r=null}i(r,e)}},e.send(),e}if("document"in self&&("classList"in document.createElement("_")?!function(){"use strict";var t=document.createElement("_");if(t.classList.add("c1","c2"),!t.classList.contains("c2")){var e=function(t){var e=DOMTokenList.prototype[t];DOMTokenList.prototype[t]=function(t){var n,o=arguments.length;for(n=0;o>n;n++)t=arguments[n],e.call(this,t)}};e("add"),e("remove")}if(t.classList.toggle("c3",!1),t.classList.contains("c3")){var n=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(t,e){return 1 in arguments&&!this.contains(t)==!e?e:n.call(this,t)}}t=null}():!function(t){"use strict";if("Element"in t){var e="classList",n="prototype",o=t.Element[n],i=Object,r=String[n].trim||function(){return this.replace(/^\s+|\s+$/g,"")},s=Array[n].indexOf||function(t){for(var e=0,n=this.length;n>e;e++)if(e in this&&this[e]===t)return e;return-1},a=function(t,e){this.name=t,this.code=DOMException[t],this.message=e},c=function(t,e){if(""===e)throw new a("SYNTAX_ERR","An invalid or illegal string was specified");if(/\s/.test(e))throw new a("INVALID_CHARACTER_ERR","String contains an invalid character");return s.call(t,e)},l=function(t){for(var e=r.call(t.getAttribute("class")||""),n=e?e.split(/\s+/):[],o=0,i=n.length;i>o;o++)this.push(n[o]);this._updateClassName=function(){t.setAttribute("class",this.toString())}},u=l[n]=[],d=function(){return new l(this)};if(a[n]=Error[n],u.item=function(t){return this[t]||null},u.contains=function(t){return t+="",-1!==c(this,t)},u.add=function(){var t,e=arguments,n=0,o=e.length,i=!1;do t=e[n]+"",-1===c(this,t)&&(this.push(t),i=!0);while(++nc;c++)a[s[c]]=i(a[s[c]],a);n&&(e.addEventListener("mouseover",this.onMouse,!0),e.addEventListener("mousedown",this.onMouse,!0),e.addEventListener("mouseup",this.onMouse,!0)),e.addEventListener("click",this.onClick,!0),e.addEventListener("touchstart",this.onTouchStart,!1),e.addEventListener("touchmove",this.onTouchMove,!1),e.addEventListener("touchend",this.onTouchEnd,!1),e.addEventListener("touchcancel",this.onTouchCancel,!1),Event.prototype.stopImmediatePropagation||(e.removeEventListener=function(t,n,o){var i=Node.prototype.removeEventListener;"click"===t?i.call(e,t,n.hijacked||n,o):i.call(e,t,n,o)},e.addEventListener=function(t,n,o){var i=Node.prototype.addEventListener;"click"===t?i.call(e,t,n.hijacked||(n.hijacked=function(t){t.propagationStopped||n(t)}),o):i.call(e,t,n,o)}),"function"==typeof e.onclick&&(r=e.onclick,e.addEventListener("click",function(t){r(t)},!1),e.onclick=null)}}var e=navigator.userAgent.indexOf("Windows Phone")>=0,n=navigator.userAgent.indexOf("Android")>0&&!e,o=/iP(ad|hone|od)/.test(navigator.userAgent)&&!e,i=o&&/OS 4_\d(_\d)?/.test(navigator.userAgent),r=o&&/OS [6-7]_\d/.test(navigator.userAgent),s=navigator.userAgent.indexOf("BB10")>0;t.prototype.needsClick=function(t){switch(t.nodeName.toLowerCase()){case"button":case"select":case"textarea":if(t.disabled)return!0;break;case"input":if(o&&"file"===t.type||t.disabled)return!0;break;case"label":case"iframe":case"video":return!0}return/\bneedsclick\b/.test(t.className)},t.prototype.needsFocus=function(t){switch(t.nodeName.toLowerCase()){case"textarea":return!0;case"select":return!n;case"input":switch(t.type){case"button":case"checkbox":case"file":case"image":case"radio":case"submit":return!1}return!t.disabled&&!t.readOnly;default:return/\bneedsfocus\b/.test(t.className)}},t.prototype.sendClick=function(t,e){var n,o;document.activeElement&&document.activeElement!==t&&document.activeElement.blur(),o=e.changedTouches[0],n=document.createEvent("MouseEvents"),n.initMouseEvent(this.determineEventType(t),!0,!0,window,1,o.screenX,o.screenY,o.clientX,o.clientY,!1,!1,!1,!1,0,null),n.forwardedTouchEvent=!0,t.dispatchEvent(n)},t.prototype.determineEventType=function(t){return n&&"select"===t.tagName.toLowerCase()?"mousedown":"click"},t.prototype.focus=function(t){var e;o&&t.setSelectionRange&&0!==t.type.indexOf("date")&&"time"!==t.type&&"month"!==t.type?(e=t.value.length,t.setSelectionRange(e,e)):t.focus()},t.prototype.updateScrollParent=function(t){var e,n;if(e=t.fastClickScrollParent,!e||!e.contains(t)){n=t;do{if(n.scrollHeight>n.offsetHeight){e=n,t.fastClickScrollParent=n;break}n=n.parentElement}while(n)}e&&(e.fastClickLastScrollTop=e.scrollTop)},t.prototype.getTargetElementFromEventTarget=function(t){return t.nodeType===Node.TEXT_NODE?t.parentNode:t},t.prototype.onTouchStart=function(t){var e,n,r;if(t.targetTouches.length>1)return!0;if(e=this.getTargetElementFromEventTarget(t.target),n=t.targetTouches[0],o){if(r=window.getSelection(),r.rangeCount&&!r.isCollapsed)return!0;if(!i){if(n.identifier&&n.identifier===this.lastTouchIdentifier)return t.preventDefault(),!1;this.lastTouchIdentifier=n.identifier,this.updateScrollParent(e)}}return this.trackingClick=!0,this.trackingClickStart=t.timeStamp,this.targetElement=e,this.touchStartX=n.pageX,this.touchStartY=n.pageY,t.timeStamp-this.lastClickTimen||Math.abs(e.pageY-this.touchStartY)>n?!0:!1},t.prototype.onTouchMove=function(t){return this.trackingClick?((this.targetElement!==this.getTargetElementFromEventTarget(t.target)||this.touchHasMoved(t))&&(this.trackingClick=!1,this.targetElement=null),!0):!0},t.prototype.findControl=function(t){return void 0!==t.control?t.control:t.htmlFor?document.getElementById(t.htmlFor):t.querySelector("button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea")},t.prototype.onTouchEnd=function(t){var e,s,a,c,l,u=this.targetElement;if(!this.trackingClick)return!0;if(t.timeStamp-this.lastClickTimethis.tapTimeout)return!0;if(this.cancelNextClick=!1,this.lastClickTime=t.timeStamp,s=this.trackingClickStart,this.trackingClick=!1,this.trackingClickStart=0,r&&(l=t.changedTouches[0],u=document.elementFromPoint(l.pageX-window.pageXOffset,l.pageY-window.pageYOffset)||u,u.fastClickScrollParent=this.targetElement.fastClickScrollParent),a=u.tagName.toLowerCase(),"label"===a){if(e=this.findControl(u)){if(this.focus(u),n)return!1;u=e}}else if(this.needsFocus(u))return t.timeStamp-s>100||o&&window.top!==window&&"input"===a?(this.targetElement=null,!1):(this.focus(u),this.sendClick(u,t),o&&"select"===a||(this.targetElement=null,t.preventDefault()),!1);return o&&!i&&(c=u.fastClickScrollParent,c&&c.fastClickLastScrollTop!==c.scrollTop)?!0:(this.needsClick(u)||(t.preventDefault(),this.sendClick(u,t)),!1)},t.prototype.onTouchCancel=function(){this.trackingClick=!1,this.targetElement=null},t.prototype.onMouse=function(t){return this.targetElement?t.forwardedTouchEvent?!0:t.cancelable&&(!this.needsClick(this.targetElement)||this.cancelNextClick)?(t.stopImmediatePropagation?t.stopImmediatePropagation():t.propagationStopped=!0,t.stopPropagation(),t.preventDefault(),!1):!0:!0},t.prototype.onClick=function(t){var e;return this.trackingClick?(this.targetElement=null,this.trackingClick=!1,!0):"submit"===t.target.type&&0===t.detail?!0:(e=this.onMouse(t),e||(this.targetElement=null),e)},t.prototype.destroy=function(){var t=this.layer;n&&(t.removeEventListener("mouseover",this.onMouse,!0),t.removeEventListener("mousedown",this.onMouse,!0),t.removeEventListener("mouseup",this.onMouse,!0)),t.removeEventListener("click",this.onClick,!0),t.removeEventListener("touchstart",this.onTouchStart,!1),t.removeEventListener("touchmove",this.onTouchMove,!1),t.removeEventListener("touchend",this.onTouchEnd,!1),t.removeEventListener("touchcancel",this.onTouchCancel,!1)},t.notNeeded=function(t){var e,o,i,r;if("undefined"==typeof window.ontouchstart)return!0;if(o=+(/Chrome\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1]){if(!n)return!0;if(e=document.querySelector("meta[name=viewport]")){if(-1!==e.content.indexOf("user-scalable=no"))return!0;if(o>31&&document.documentElement.scrollWidth<=window.outerWidth)return!0}}if(s&&(i=navigator.userAgent.match(/Version\/([0-9]*)\.([0-9]*)/),i[1]>=10&&i[2]>=3&&(e=document.querySelector("meta[name=viewport]")))){if(-1!==e.content.indexOf("user-scalable=no"))return!0;if(document.documentElement.scrollWidth<=window.outerWidth)return!0}return"none"===t.style.msTouchAction||"manipulation"===t.style.touchAction?!0:(r=+(/Firefox\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1],r>=27&&(e=document.querySelector("meta[name=viewport]"),e&&(-1!==e.content.indexOf("user-scalable=no")||document.documentElement.scrollWidth<=window.outerWidth))?!0:"none"===t.style.touchAction||"manipulation"===t.style.touchAction?!0:!1)},t.attach=function(e,n){return new t(e,n)},"function"==typeof define&&"object"==typeof define.amd&&define.amd?define(function(){return t}):"undefined"!=typeof module&&module.exports?(module.exports=t.attach,module.exports.FastClick=t):window.FastClick=t}(),function(){var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.6.0",t.utils={},t.utils.warn=function(t){return function(e){t.console&&console.warn&&console.warn(e)}}(this),t.utils.asString=function(t){return void 0===t||null===t?"":t.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var t=Array.prototype.slice.call(arguments),e=t.pop(),n=t;if("function"!=typeof e)throw new TypeError("last argument must be a function");n.forEach(function(t){this.hasHandler(t)||(this.events[t]=[]),this.events[t].push(e)},this)},t.EventEmitter.prototype.removeListener=function(t,e){if(this.hasHandler(t)){var n=this.events[t].indexOf(e);this.events[t].splice(n,1),this.events[t].length||delete this.events[t]}},t.EventEmitter.prototype.emit=function(t){if(this.hasHandler(t)){var e=Array.prototype.slice.call(arguments,1);this.events[t].forEach(function(t){t.apply(void 0,e)})}},t.EventEmitter.prototype.hasHandler=function(t){return t in this.events},t.tokenizer=function(e){return arguments.length&&null!=e&&void 0!=e?Array.isArray(e)?e.map(function(e){return t.utils.asString(e).toLowerCase()}):e.toString().trim().toLowerCase().split(t.tokenizer.seperator):[]},t.tokenizer.seperator=/[\s\-]+/,t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var o=t.Pipeline.registeredFunctions[e];if(!o)throw new Error("Cannot load un-registered function: "+e);n.add(o)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var o=this._stack.indexOf(e);if(-1==o)throw new Error("Cannot find existingFn");o+=1,this._stack.splice(o,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var o=this._stack.indexOf(e);if(-1==o)throw new Error("Cannot find existingFn");this._stack.splice(o,0,n)},t.Pipeline.prototype.remove=function(t){var e=this._stack.indexOf(t);-1!=e&&this._stack.splice(e,1)},t.Pipeline.prototype.run=function(t){for(var e=[],n=t.length,o=this._stack.length,i=0;n>i;i++){for(var r=t[i],s=0;o>s&&(r=this._stack[s](r,i,t),void 0!==r&&""!==r);s++);void 0!==r&&""!==r&&e.push(r)}return e},t.Pipeline.prototype.reset=function(){this._stack=[]},t.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},t.Vector.Node=function(t,e,n){this.idx=t,this.val=e,this.next=n},t.Vector.prototype.insert=function(e,n){this._magnitude=void 0;var o=this.list;if(!o)return this.list=new t.Vector.Node(e,n,o),this.length++;if(en.idx?n=n.next:(o+=e.val*n.val,e=e.next,n=n.next);return o},t.Vector.prototype.similarity=function(t){return this.dot(t)/(this.magnitude()*t.magnitude())},t.SortedSet=function(){this.length=0,this.elements=[]},t.SortedSet.load=function(t){var e=new this;return e.elements=t,e.length=t.length,e},t.SortedSet.prototype.add=function(){var t,e;for(t=0;t1;){if(r===t)return i;t>r&&(e=i),r>t&&(n=i),o=n-e,i=e+Math.floor(o/2),r=this.elements[i]}return r===t?i:-1},t.SortedSet.prototype.locationFor=function(t){for(var e=0,n=this.elements.length,o=n-e,i=e+Math.floor(o/2),r=this.elements[i];o>1;)t>r&&(e=i),r>t&&(n=i),o=n-e,i=e+Math.floor(o/2),r=this.elements[i];return r>t?i:t>r?i+1:void 0},t.SortedSet.prototype.intersect=function(e){for(var n=new t.SortedSet,o=0,i=0,r=this.length,s=e.length,a=this.elements,c=e.elements;;){if(o>r-1||i>s-1)break;a[o]!==c[i]?a[o]c[i]&&i++:(n.add(a[o]),o++,i++)}return n},t.SortedSet.prototype.clone=function(){var e=new t.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},t.SortedSet.prototype.union=function(t){var e,n,o;return this.length>=t.length?(e=this,n=t):(e=t,n=this),o=e.clone(),o.add.apply(o,n.toArray()),o},t.SortedSet.prototype.toJSON=function(){return this.toArray()},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.Store,this.tokenStore=new t.TokenStore,this.corpusTokens=new t.SortedSet,this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var t=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,t)},t.Index.prototype.off=function(t,e){return this.eventEmitter.removeListener(t,e)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;return n._fields=e.fields,n._ref=e.ref,n.documentStore=t.Store.load(e.documentStore),n.tokenStore=t.TokenStore.load(e.tokenStore),n.corpusTokens=t.SortedSet.load(e.corpusTokens),n.pipeline=t.Pipeline.load(e.pipeline),n},t.Index.prototype.field=function(t,e){var e=e||{},n={name:t,boost:e.boost||1};return this._fields.push(n),this},t.Index.prototype.ref=function(t){return this._ref=t,this},t.Index.prototype.add=function(e,n){var o={},i=new t.SortedSet,r=e[this._ref],n=void 0===n?!0:n;this._fields.forEach(function(n){var r=this.pipeline.run(t.tokenizer(e[n.name]));o[n.name]=r,t.SortedSet.prototype.add.apply(i,r)},this),this.documentStore.set(r,i),t.SortedSet.prototype.add.apply(this.corpusTokens,i.toArray());for(var s=0;s0&&(o=1+Math.log(this.documentStore.length/n)),this._idfCache[e]=o},t.Index.prototype.search=function(e){var n=this.pipeline.run(t.tokenizer(e)),o=new t.Vector,i=[],r=this._fields.reduce(function(t,e){return t+e.boost},0),s=n.some(function(t){return this.tokenStore.has(t)},this);if(!s)return[];n.forEach(function(e,n,s){var a=1/s.length*this._fields.length*r,c=this,l=this.tokenStore.expand(e).reduce(function(n,i){var r=c.corpusTokens.indexOf(i),s=c.idf(i),l=1,u=new t.SortedSet;if(i!==e){var d=Math.max(3,i.length-e.length);l=1/Math.log(d)}r>-1&&o.insert(r,a*s*l);for(var h=c.tokenStore.get(i),f=Object.keys(h),p=f.length,m=0;p>m;m++)u.add(h[f[m]].ref);return n.union(u)},new t.SortedSet);i.push(l)},this);var a=i.reduce(function(t,e){return t.intersect(e)});return a.map(function(t){return{ref:t,score:o.similarity(this.documentVector(t))}},this).sort(function(t,e){return e.score-t.score})},t.Index.prototype.documentVector=function(e){for(var n=this.documentStore.get(e),o=n.length,i=new t.Vector,r=0;o>r;r++){var s=n.elements[r],a=this.tokenStore.get(s)[e].tf,c=this.idf(s);i.insert(this.corpusTokens.indexOf(s),a*c)}return i},t.Index.prototype.toJSON=function(){return{version:t.version,fields:this._fields,ref:this._ref,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},t.Index.prototype.use=function(t){var e=Array.prototype.slice.call(arguments,1);e.unshift(this),t.apply(this,e)},t.Store=function(){this.store={},this.length=0},t.Store.load=function(e){var n=new this;return n.length=e.length,n.store=Object.keys(e.store).reduce(function(n,o){return n[o]=t.SortedSet.load(e.store[o]),n},{}),n},t.Store.prototype.set=function(t,e){this.has(t)||this.length++,this.store[t]=e},t.Store.prototype.get=function(t){return this.store[t]},t.Store.prototype.has=function(t){return t in this.store},t.Store.prototype.remove=function(t){this.has(t)&&(delete this.store[t],this.length--)},t.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},t.stemmer=function(){var t={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},e={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},n="[^aeiou]",o="[aeiouy]",i=n+"[^aeiouy]*",r=o+"[aeiou]*",s="^("+i+")?"+r+i,a="^("+i+")?"+r+i+"("+r+")?$",c="^("+i+")?"+r+i+r+i,l="^("+i+")?"+o,u=new RegExp(s),d=new RegExp(c),h=new RegExp(a),f=new RegExp(l),p=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,v=/^(.+?)eed$/,g=/^(.+?)(ed|ing)$/,y=/.$/,w=/(at|bl|iz)$/,S=new RegExp("([^aeiouylsz])\\1$"),k=new RegExp("^"+i+o+"[^aeiouwxy]$"),E=/^(.+?[^aeiou])y$/,x=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,b=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,T=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,C=/^(.+?)(s|t)(ion)$/,L=/^(.+?)e$/,_=/ll$/,A=new RegExp("^"+i+o+"[^aeiouwxy]$"),O=function(n){var o,i,r,s,a,c,l;if(n.length<3)return n;if(r=n.substr(0,1),"y"==r&&(n=r.toUpperCase()+n.substr(1)),s=p,a=m,s.test(n)?n=n.replace(s,"$1$2"):a.test(n)&&(n=n.replace(a,"$1$2")),s=v,a=g,s.test(n)){var O=s.exec(n);s=u,s.test(O[1])&&(s=y,n=n.replace(s,""))}else if(a.test(n)){var O=a.exec(n);o=O[1],a=f,a.test(o)&&(n=o,a=w,c=S,l=k,a.test(n)?n+="e":c.test(n)?(s=y,n=n.replace(s,"")):l.test(n)&&(n+="e"))}if(s=E,s.test(n)){var O=s.exec(n);o=O[1],n=o+"i"}if(s=x,s.test(n)){var O=s.exec(n);o=O[1],i=O[2],s=u,s.test(o)&&(n=o+t[i])}if(s=b,s.test(n)){var O=s.exec(n);o=O[1],i=O[2],s=u,s.test(o)&&(n=o+e[i])}if(s=T,a=C,s.test(n)){var O=s.exec(n);o=O[1],s=d,s.test(o)&&(n=o)}else if(a.test(n)){var O=a.exec(n);o=O[1]+O[2],a=d,a.test(o)&&(n=o)}if(s=L,s.test(n)){var O=s.exec(n);o=O[1],s=d,a=h,c=A,(s.test(o)||a.test(o)&&!c.test(o))&&(n=o)}return s=_,a=d,s.test(n)&&a.test(n)&&(s=y,n=n.replace(s,"")),"y"==r&&(n=r.toLowerCase()+n.substr(1)),n};return O}(),t.Pipeline.registerFunction(t.stemmer,"stemmer"),t.generateStopWordFilter=function(t){var e=t.reduce(function(t,e){return t[e]=e,t},{});return function(t){return t&&e[t]!==t?t:void 0}},t.stopWordFilter=t.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),t.Pipeline.registerFunction(t.stopWordFilter,"stopWordFilter"),t.trimmer=function(t){return t.replace(/^\W+/,"").replace(/\W+$/,"")},t.Pipeline.registerFunction(t.trimmer,"trimmer"),t.TokenStore=function(){this.root={docs:{}},this.length=0},t.TokenStore.load=function(t){var e=new this;return e.root=t.root,e.length=t.length,e},t.TokenStore.prototype.add=function(t,e,n){var n=n||this.root,o=t.charAt(0),i=t.slice(1);return o in n||(n[o]={docs:{}}),0===i.length?(n[o].docs[e.ref]=e,void(this.length+=1)):this.add(i,e,n[o])},t.TokenStore.prototype.has=function(t){if(!t)return!1;for(var e=this.root,n=0;nt){for(;" "!=this[t]&&--t>0;);return this.substring(0,t)+"…"}return this},HTMLElement.prototype.wrap=function(t){t.length||(t=[t]);for(var e=t.length-1;e>=0;e--){var n=e>0?this.cloneNode(!0):this,o=t[e],i=o.parentNode,r=o.nextSibling;n.appendChild(o),r?i.insertBefore(n,r):i.appendChild(n)}},document.addEventListener("DOMContentLoaded",function(){"use strict";Modernizr.addTest("ios",function(){return!!navigator.userAgent.match(/(iPad|iPhone|iPod)/g)}),Modernizr.addTest("standalone",function(){return!!navigator.standalone}),FastClick.attach(document.body);var t=document.getElementById("toggle-search"),e=(document.getElementById("reset-search"),document.querySelector(".drawer")),n=document.querySelectorAll(".anchor"),o=document.querySelector(".search .field"),i=document.querySelector(".query"),r=document.querySelector(".results .meta");Array.prototype.forEach.call(n,function(t){t.querySelector("a").addEventListener("click",function(){document.getElementById("toggle-drawer").checked=!1,document.body.classList.remove("toggle-drawer")})});var s=window.pageYOffset,a=function(){var t=window.pageYOffset+window.innerHeight,n=Math.max(0,window.innerHeight-e.offsetHeight);t>document.body.clientHeight-(96-n)?"absolute"!=e.style.position&&(e.style.position="absolute",e.style.top=null,e.style.bottom=0):e.offsetHeighte.offsetTop+e.offsetHeight?(e.style.position="fixed",e.style.top=null,e.style.bottom="-96px"):window.pageYOffsets?e.style.top&&(e.style.position="absolute",e.style.top=Math.max(0,s)+"px",e.style.bottom=null):e.style.bottom&&(e.style.position="absolute",e.style.top=t-e.offsetHeight+"px",e.style.bottom=null),s=Math.max(0,window.pageYOffset)},c=function(){var t=document.querySelector(".main");window.removeEventListener("scroll",a),matchMedia("only screen and (max-width: 959px)").matches?(e.style.position=null,e.style.top=null,e.style.bottom=null):e.offsetHeight+96o;o++)t1e4?n=(n/1e3).toFixed(0)+"k":n>1e3&&(n=(n/1e3).toFixed(1)+"k");var o=document.querySelector(".repo-stars .count");o.innerHTML=n},function(t,e){console.error(t,e.status)})}),"standalone"in window.navigator&&window.navigator.standalone){var node,remotes=!1;document.addEventListener("click",function(t){for(node=t.target;"A"!==node.nodeName&&"HTML"!==node.nodeName;)node=node.parentNode;"href"in node&&-1!==node.href.indexOf("http")&&(-1!==node.href.indexOf(document.location.host)||remotes)&&(t.preventDefault(),document.location.href=node.href)},!1)} \ No newline at end of file diff --git a/docs/javascripts/modernizr.js b/docs/javascripts/modernizr.js deleted file mode 100644 index e82c9098..00000000 --- a/docs/javascripts/modernizr.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t,n){function r(e,t){return typeof e===t}function i(){var e,t,n,i,o,a,s;for(var l in x)if(x.hasOwnProperty(l)){if(e=[],t=x[l],t.name&&(e.push(t.name.toLowerCase()),t.options&&t.options.aliases&&t.options.aliases.length))for(n=0;nf;f++)if(h=e[f],g=_.style[h],l(h,"-")&&(h=m(h)),_.style[h]!==n){if(o||r(i,"undefined"))return a(),"pfx"==t?h:!0;try{_.style[h]=i}catch(y){}if(_.style[h]!=g)return a(),"pfx"==t?h:!0}return a(),!1}function g(e,t,n){var i;for(var o in e)if(e[o]in t)return n===!1?e[o]:(i=t[e[o]],r(i,"function")?s(i,n||t):i);return!1}function v(e,t,n,i,o){var a=e.charAt(0).toUpperCase()+e.slice(1),s=(e+" "+P.join(a+" ")+a).split(" ");return r(t,"string")||r(t,"undefined")?h(s,t,i,o):(s=(e+" "+A.join(a+" ")+a).split(" "),g(s,t,n))}function y(e,t,r){return v(e,n,n,t,r)}var x=[],E={_version:"3.3.1",_config:{classPrefix:"",enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(e,t){var n=this;setTimeout(function(){t(n[e])},0)},addTest:function(e,t,n){x.push({name:e,fn:t,options:n})},addAsyncTest:function(e){x.push({name:null,fn:e})}},S=function(){};S.prototype=E,S=new S;var b,w=[],C=t.documentElement,T="svg"===C.nodeName.toLowerCase();!function(){var e={}.hasOwnProperty;b=r(e,"undefined")||r(e.call,"undefined")?function(e,t){return t in e&&r(e.constructor.prototype[t],"undefined")}:function(t,n){return e.call(t,n)}}(),E._l={},E.on=function(e,t){this._l[e]||(this._l[e]=[]),this._l[e].push(t),S.hasOwnProperty(e)&&setTimeout(function(){S._trigger(e,S[e])},0)},E._trigger=function(e,t){if(this._l[e]){var n=this._l[e];setTimeout(function(){var e,r;for(e=0;e",r.insertBefore(n.lastChild,r.firstChild)}function r(){var e=C.elements;return"string"==typeof e?e.split(" "):e}function i(e,t){var n=C.elements;"string"!=typeof n&&(n=n.join(" ")),"string"!=typeof e&&(e=e.join(" ")),C.elements=n+" "+e,u(t)}function o(e){var t=w[e[S]];return t||(t={},b++,e[S]=b,w[b]=t),t}function a(e,n,r){if(n||(n=t),g)return n.createElement(e);r||(r=o(n));var i;return i=r.cache[e]?r.cache[e].cloneNode():E.test(e)?(r.cache[e]=r.createElem(e)).cloneNode():r.createElem(e),!i.canHaveChildren||x.test(e)||i.tagUrn?i:r.frag.appendChild(i)}function s(e,n){if(e||(e=t),g)return e.createDocumentFragment();n=n||o(e);for(var i=n.frag.cloneNode(),a=0,s=r(),l=s.length;l>a;a++)i.createElement(s[a]);return i}function l(e,t){t.cache||(t.cache={},t.createElem=e.createElement,t.createFrag=e.createDocumentFragment,t.frag=t.createFrag()),e.createElement=function(n){return C.shivMethods?a(n,e,t):t.createElem(n)},e.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+r().join().replace(/[\w\-:]+/g,function(e){return t.createElem(e),t.frag.createElement(e),'c("'+e+'")'})+");return n}")(C,t.frag)}function u(e){e||(e=t);var r=o(e);return!C.shivCSS||h||r.hasCSS||(r.hasCSS=!!n(e,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),g||l(e,r),e}function c(e){for(var t,n=e.getElementsByTagName("*"),i=n.length,o=RegExp("^(?:"+r().join("|")+")$","i"),a=[];i--;)t=n[i],o.test(t.nodeName)&&a.push(t.applyElement(f(t)));return a}function f(e){for(var t,n=e.attributes,r=n.length,i=e.ownerDocument.createElement(N+":"+e.nodeName);r--;)t=n[r],t.specified&&i.setAttribute(t.nodeName,t.nodeValue);return i.style.cssText=e.style.cssText,i}function d(e){for(var t,n=e.split("{"),i=n.length,o=RegExp("(^|[\\s,>+~])("+r().join("|")+")(?=[[\\s,>+~#.:]|$)","gi"),a="$1"+N+"\\:$2";i--;)t=n[i]=n[i].split("}"),t[t.length-1]=t[t.length-1].replace(o,a),n[i]=t.join("}");return n.join("{")}function p(e){for(var t=e.length;t--;)e[t].removeNode()}function m(e){function t(){clearTimeout(a._removeSheetTimer),r&&r.removeNode(!0),r=null}var r,i,a=o(e),s=e.namespaces,l=e.parentWindow;return!_||e.printShived?e:("undefined"==typeof s[N]&&s.add(N),l.attachEvent("onbeforeprint",function(){t();for(var o,a,s,l=e.styleSheets,u=[],f=l.length,p=Array(f);f--;)p[f]=l[f];for(;s=p.pop();)if(!s.disabled&&T.test(s.media)){try{o=s.imports,a=o.length}catch(m){a=0}for(f=0;a>f;f++)p.push(o[f]);try{u.push(s.cssText)}catch(m){}}u=d(u.reverse().join("")),i=c(e),r=n(e,u)}),l.attachEvent("onafterprint",function(){p(i),clearTimeout(a._removeSheetTimer),a._removeSheetTimer=setTimeout(t,500)}),e.printShived=!0,e)}var h,g,v="3.7.3",y=e.html5||{},x=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,E=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,S="_html5shiv",b=0,w={};!function(){try{var e=t.createElement("a");e.innerHTML="",h="hidden"in e,g=1==e.childNodes.length||function(){t.createElement("a");var e=t.createDocumentFragment();return"undefined"==typeof e.cloneNode||"undefined"==typeof e.createDocumentFragment||"undefined"==typeof e.createElement}()}catch(n){h=!0,g=!0}}();var C={elements:y.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:v,shivCSS:y.shivCSS!==!1,supportsUnknownElements:g,shivMethods:y.shivMethods!==!1,type:"default",shivDocument:u,createElement:a,createDocumentFragment:s,addElements:i};e.html5=C,u(t);var T=/^$|\b(?:all|print)\b/,N="html5shiv",_=!g&&function(){var n=t.documentElement;return!("undefined"==typeof t.namespaces||"undefined"==typeof t.parentWindow||"undefined"==typeof n.applyElement||"undefined"==typeof n.removeNode||"undefined"==typeof e.attachEvent)}();C.type+=" print",C.shivPrint=m,m(t),"object"==typeof module&&module.exports&&(module.exports=C)}("undefined"!=typeof e?e:this,t);var N={elem:u("modernizr")};S._q.push(function(){delete N.elem});var _={style:N.elem.style};S._q.unshift(function(){delete _.style});var z=(E.testProp=function(e,t,r){return h([e],n,t,r)},function(){function e(e,t){var i;return e?(t&&"string"!=typeof t||(t=u(t||"div")),e="on"+e,i=e in t,!i&&r&&(t.setAttribute||(t=u("div")),t.setAttribute(e,""),i="function"==typeof t[e],t[e]!==n&&(t[e]=n),t.removeAttribute(e)),i):!1}var r=!("onblur"in t.documentElement);return e}());E.hasEvent=z,S.addTest("inputsearchevent",z("search"));var k=E.testStyles=f,$=function(){var e=navigator.userAgent,t=e.match(/applewebkit\/([0-9]+)/gi)&&parseFloat(RegExp.$1),n=e.match(/w(eb)?osbrowser/gi),r=e.match(/windows phone/gi)&&e.match(/iemobile\/([0-9])+/gi)&&parseFloat(RegExp.$1)>=9,i=533>t&&e.match(/android/gi);return n||i||r}();$?S.addTest("fontface",!1):k('@font-face {font-family:"font";src:url("https://")}',function(e,n){var r=t.getElementById("smodernizr"),i=r.sheet||r.styleSheet,o=i?i.cssRules&&i.cssRules[0]?i.cssRules[0].cssText:i.cssText||"":"",a=/src/i.test(o)&&0===o.indexOf(n.split(" ")[0]);S.addTest("fontface",a)});var j="Moz O ms Webkit",P=E._config.usePrefixes?j.split(" "):[];E._cssomPrefixes=P;var A=E._config.usePrefixes?j.toLowerCase().split(" "):[];E._domPrefixes=A,E.testAllProps=v,E.testAllProps=y;var R="CSS"in e&&"supports"in e.CSS,F="supportsCSS"in e;S.addTest("supports",R||F),S.addTest("csstransforms3d",function(){var e=!!y("perspective","1px",!0),t=S._config.usePrefixes;if(e&&(!t||"webkitPerspective"in C.style)){var n,r="#modernizr{width:0;height:0}";S.supports?n="@supports (perspective: 1px)":(n="@media (transform-3d)",t&&(n+=",(-webkit-transform-3d)")),n+="{#modernizr{width:7px;height:18px;margin:0;padding:0;border:0}}",k(r+n,function(t){e=7===t.offsetWidth&&18===t.offsetHeight})}return e}),S.addTest("json","JSON"in e&&"parse"in JSON&&"stringify"in JSON),S.addTest("checked",function(){return k("#modernizr {position:absolute} #modernizr input {margin-left:10px} #modernizr :checked {margin-left:20px;display:block}",function(e){var t=u("input");return t.setAttribute("type","checkbox"),t.setAttribute("checked","checked"),e.appendChild(t),20===t.offsetLeft})}),S.addTest("target",function(){var t=e.document;if(!("querySelectorAll"in t))return!1;try{return t.querySelectorAll(":target"),!0}catch(n){return!1}}),S.addTest("contains",r(String.prototype.contains,"function")),i(),o(w),delete E.addTest,delete E.addAsyncTest;for(var M=0;M #mq-test-1 { width: 42px; }',r.insertBefore(o,i),n=42===a.offsetWidth,r.removeChild(o),{matches:n,media:e}}}(e.document)}(this),function(e){"use strict";function t(){E(!0)}var n={};e.respond=n,n.update=function(){};var r=[],i=function(){var t=!1;try{t=new e.XMLHttpRequest}catch(n){t=new e.ActiveXObject("Microsoft.XMLHTTP")}return function(){return t}}(),o=function(e,t){var n=i();n&&(n.open("GET",e,!0),n.onreadystatechange=function(){4!==n.readyState||200!==n.status&&304!==n.status||t(n.responseText)},4!==n.readyState&&n.send(null))};if(n.ajax=o,n.queue=r,n.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\([\s]*min\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,maxw:/\([\s]*max\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/},n.mediaQueriesSupported=e.matchMedia&&null!==e.matchMedia("only all")&&e.matchMedia("only all").matches,!n.mediaQueriesSupported){var a,s,l,u=e.document,c=u.documentElement,f=[],d=[],p=[],m={},h=30,g=u.getElementsByTagName("head")[0]||c,v=u.getElementsByTagName("base")[0],y=g.getElementsByTagName("link"),x=function(){var e,t=u.createElement("div"),n=u.body,r=c.style.fontSize,i=n&&n.style.fontSize,o=!1;return t.style.cssText="position:absolute;font-size:1em;width:1em",n||(n=o=u.createElement("body"),n.style.background="none"),c.style.fontSize="100%",n.style.fontSize="100%",n.appendChild(t),o&&c.insertBefore(n,c.firstChild),e=t.offsetWidth,o?c.removeChild(n):n.removeChild(t),c.style.fontSize=r,i&&(n.style.fontSize=i),e=l=parseFloat(e)},E=function(t){var n="clientWidth",r=c[n],i="CSS1Compat"===u.compatMode&&r||u.body[n]||r,o={},m=y[y.length-1],v=(new Date).getTime();if(t&&a&&h>v-a)return e.clearTimeout(s),void(s=e.setTimeout(E,h));a=v;for(var S in f)if(f.hasOwnProperty(S)){var b=f[S],w=b.minw,C=b.maxw,T=null===w,N=null===C,_="em";w&&(w=parseFloat(w)*(w.indexOf(_)>-1?l||x():1)),C&&(C=parseFloat(C)*(C.indexOf(_)>-1?l||x():1)),b.hasquery&&(T&&N||!(T||i>=w)||!(N||C>=i))||(o[b.media]||(o[b.media]=[]),o[b.media].push(d[b.rules]))}for(var z in p)p.hasOwnProperty(z)&&p[z]&&p[z].parentNode===g&&g.removeChild(p[z]);p.length=0;for(var k in o)if(o.hasOwnProperty(k)){var $=u.createElement("style"),j=o[k].join("\n");$.type="text/css",$.media=k,g.insertBefore($,m.nextSibling),$.styleSheet?$.styleSheet.cssText=j:$.appendChild(u.createTextNode(j)),p.push($)}},S=function(e,t,r){var i=e.replace(n.regex.keyframes,"").match(n.regex.media),o=i&&i.length||0;t=t.substring(0,t.lastIndexOf("/"));var a=function(e){return e.replace(n.regex.urls,"$1"+t+"$2$3")},s=!o&&r;t.length&&(t+="/"),s&&(o=1);for(var l=0;o>l;l++){var u,c,p,m;s?(u=r,d.push(a(e))):(u=i[l].match(n.regex.findStyles)&&RegExp.$1,d.push(RegExp.$2&&a(RegExp.$2))),p=u.split(","),m=p.length;for(var h=0;m>h;h++)c=p[h],f.push({media:c.split("(")[0].match(n.regex.only)&&RegExp.$2||"all",rules:d.length-1,hasquery:c.indexOf("(")>-1,minw:c.match(n.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:c.match(n.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}E()},b=function(){if(r.length){var t=r.shift();o(t.href,function(n){S(n,t.href,t.media),m[t.href]=!0,e.setTimeout(function(){b()},0)})}},w=function(){for(var t=0;t - - - - - - - - - - - License - Laradock - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - -
    - - -
    - -
    -
    - - -
    - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - diff --git a/docs/license/index.xml b/docs/license/index.xml deleted file mode 100644 index 294ba68f..00000000 --- a/docs/license/index.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - Licenses on Laradock - http://laradock.io/license/index.xml - Recent content in Licenses on Laradock - Hugo -- gohugo.io - en-us - - - - License - http://laradock.io/license/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/license/ - <p><a href="https://github.com/laradock/laradock/blob/master/LICENSE">MIT License</a> (MIT)</p> - - - - - \ No newline at end of file diff --git a/docs/related-projects/index.html b/docs/related-projects/index.html deleted file mode 100644 index fe9b5c29..00000000 --- a/docs/related-projects/index.html +++ /dev/null @@ -1,509 +0,0 @@ - - - - - - - - - - - - Related Projects - Laradock - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    -
    - - - - - -
    - - -
    - -
    -
    - - -
    - -
    -
    -

    Related Projects

    - -

    Laradock related projects:

    - - - -

    If you want your project listed here, please open an issue.

    - - - - - -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - diff --git a/docs/related-projects/index.xml b/docs/related-projects/index.xml deleted file mode 100644 index f9fe71a7..00000000 --- a/docs/related-projects/index.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - Related-projects on Laradock - http://laradock.io/related-projects/index.xml - Recent content in Related-projects on Laradock - Hugo -- gohugo.io - en-us - - - - Related Projects - http://laradock.io/related-projects/ - Mon, 01 Jan 0001 00:00:00 +0000 - - http://laradock.io/related-projects/ - <p>Laradock related projects:</p> - -<ul> -<li><a href="https://github.com/lorinlee/laradock-cli">Laradock CLI</a> by <a href="https://github.com/lorinlee">LorinLee</a></li> -<li><a href="https://github.com/bagart/laradock_env">Laradock Env</a> by <a href="https://github.com/bagart">BAGArt</a></li> -<li><a href="https://github.com/poyhsiao/Klaradock">Klaradock</a> by <a href="https://github.com/poyhsiao">Kim Hsiao</a></li> -<li><a href="https://github.com/sifat-rahim/ansible-laradock-kubernetes">Ansible Laradock Kubernetes</a> by <a href="https://github.com/sifat-rahim">Sifat Rahim</a> -These Docker Compose projects have piqued our interest:</li> -<li><a href="https://github.com/ojhaujjwal/magedock">MageDock</a> by <a href="https://github.com/ojhaujjwal">Ujjwal Ojha</a></li> -<li><a href="https://github.com/scudelletti/rubydev-dock">RubyDev-Dock</a> by <a href="https://github.com/scudelletti">Diogo Scudelletti</a></li> -<li><a href="https://github.com/Osedea/nodock">NoDock</a> by <a href="https://github.com/Osedea">Osedea</a></li> -</ul> - -<p>If you want your project listed here, please open an issue.</p> - - - - - \ No newline at end of file diff --git a/docs/sitemap.xml b/docs/sitemap.xml deleted file mode 100644 index 0f9bc3ab..00000000 --- a/docs/sitemap.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - - http://laradock.io/introduction/ - - - - http://laradock.io/getting-started/ - - - - http://laradock.io/documentation/ - - - - http://laradock.io/guides/ - - - - http://laradock.io/help/ - - - - http://laradock.io/related-projects/ - - - - http://laradock.io/contributing/ - - - - http://laradock.io/license/ - - - - http://laradock.io/contributing/ - 0 - - - - http://laradock.io/documentation/ - 0 - - - - http://laradock.io/getting-started/ - 0 - - - - http://laradock.io/guides/ - 0 - - - - http://laradock.io/help/ - 0 - - - - http://laradock.io/introduction/ - 0 - - - - http://laradock.io/ - 0 - - - - http://laradock.io/license/ - 0 - - - - http://laradock.io/related-projects/ - 0 - - - - http://laradock.io/ - - - \ No newline at end of file diff --git a/docs/stylesheets/application.css b/docs/stylesheets/application.css deleted file mode 100644 index 162a0cff..00000000 --- a/docs/stylesheets/application.css +++ /dev/null @@ -1 +0,0 @@ -html{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}*,:after,:before{box-sizing:inherit;-moz-box-sizing:inherit;-webkit-box-sizing:inherit}html{font-size:62.5%;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0}main{display:block}ul{list-style:none}table{border-collapse:collapse;border-spacing:0}td{text-align:left;font-weight:400;vertical-align:middle}button{outline:0;padding:0;background:transparent;border:none;font-size:inherit}input{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;appearance:none;outline:none;border:none}a{text-decoration:none;color:inherit}a,button,input,label{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-tap-highlight-color:transparent}h1,h2,h3,h4,h5,h6{font-weight:inherit}pre{background:rgba(0,0,0,.05)}pre,pre code{color:rgba(0,0,0,.87)}.c,.c1,.cm,.o{color:rgba(0,0,0,.54)}.k,.kn{color:#a71d5d}.kd,.kt{color:#0086b3}.n.f,.nf{color:#795da3}.nx{color:#0086b3}.s,.s1{color:#183691}.bp,.mi{color:#9575cd}.icon{font-family:Icon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-search:before{content:"\e600"}.icon-back:before{content:"\e601"}.icon-link:before{content:"\e602"}.icon-close:before{content:"\e603"}.icon-menu:before{content:"\e604"}.icon-forward:before{content:"\e605"}.icon-twitter:before{content:"\e606"}.icon-github:before{content:"\e607"}.icon-download:before{content:"\e608"}.icon-star:before{content:"\e609"}.icon-warning:before{content:"\e610"}.icon-note:before{content:"\e611"}a{-webkit-transition:color .25s;transition:color .25s}.overlay{-webkit-transition:opacity .25s,width 0s .25s,height 0s .25s;transition:opacity .25s,width 0s .25s,height 0s .25s}#toggle-drawer:checked~.overlay,.toggle-drawer .overlay{-webkit-transition:opacity .25s,width 0s,height 0s;transition:opacity .25s,width 0s,height 0s}.js .header{-webkit-transition:background .6s,color .6s;transition:background .6s,color .6s}.js .header:before{-webkit-transition:background .6s;transition:background .6s}.button .icon{-webkit-transition:background .25s;transition:background .25s}body{color:rgba(0,0,0,.87)}@supports (-webkit-appearance:none){body{background:#e84e40}}.ios body{background:#fff}hr{border:0;border-top:1px solid rgba(0,0,0,.12)}.toggle-button{cursor:pointer;color:inherit}.backdrop,.backdrop-paper:after{background:#fff}.overlay{background:rgba(0,0,0,.54);opacity:0}#toggle-drawer:checked~.overlay,.toggle-drawer .overlay{opacity:1}.header{box-shadow:0 1.5px 3px rgba(0,0,0,.24),0 3px 8px rgba(0,0,0,.05);background:#e84e40;color:#fff}.ios.standalone .header:before{background:rgba(0,0,0,.12)}.bar .path{color:hsla(0,0%,100%,.7)}.button .icon{border-radius:100%}.button .icon:active{background:hsla(0,0%,100%,.12)}html{height:100%}body{position:relative;min-height:100%}hr{display:block;height:1px;padding:0;margin:0}.locked{height:100%;overflow:hidden}.scrollable{position:absolute;top:0;right:0;bottom:0;left:0;overflow:auto;-webkit-overflow-scrolling:touch}.scrollable .wrapper{height:100%}.ios .scrollable .wrapper{margin-bottom:2px}.toggle{display:none}.toggle-button{display:block}.backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.backdrop-paper{max-width:1200px;height:100%;margin-left:auto;margin-right:auto}.backdrop-paper:after{content:" ";display:block;height:100%;margin-left:262px}.overlay{width:0;height:0;z-index:3}.header,.overlay{position:fixed;top:0}.header{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;left:0;z-index:2;height:56px;padding:4px;overflow:hidden}.ios.standalone .header{position:absolute}.bar{display:table;max-width:1184px;margin-left:auto;margin-right:auto}.bar a{display:block}.no-js .bar .button-search{display:none}.bar .path .icon:before{vertical-align:-1.5px}.button{display:table-cell;vertical-align:top;width:1%}.button button{margin:0;padding:0}.button button:active:before{position:relative;top:0;left:0}.button .icon{display:inline-block;font-size:24px;padding:8px;margin:4px}.stretch{display:table;table-layout:fixed;width:100%}.header .stretch{padding:0 20px}.stretch .title{display:table-cell;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.header .stretch .title{font-size:18px;padding:13px 0}.main{max-width:1200px;margin-left:auto;margin-right:auto}body,input{font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.no-fontface body,.no-fontface input,body,input{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.no-fontface code,.no-fontface kbd,.no-fontface pre,code,kbd,pre{font-family:Courier New,Courier,monospace}#toggle-drawer:checked~.main .drawer,.toggle-drawer .drawer{-webkit-transform:translateZ(0);transform:translateZ(0)}.no-csstransforms3d #toggle-drawer:checked~.main .drawer,.no-csstransforms3d .toggle-drawer .drawer{display:block}.project{-webkit-transition:none;transition:none}.project .logo img{-webkit-transition:box-shadow .4s;transition:box-shadow .4s}.repo a{-webkit-transition:box-shadow .4s,opacity .4s;transition:box-shadow .4s,opacity .4s}.drawer .toc a.current,.drawer .toc a:focus,.drawer .toc a:hover{color:#e84e40}.drawer .anchor a{border-left:2px solid #e84e40}.drawer .section{color:rgba(0,0,0,.54)}.ios.standalone .project:before{background:rgba(0,0,0,.12)}.project .logo img{background:#fff;border-radius:100%}.project:focus .logo img,.project:hover .logo img{box-shadow:0 4px 7px rgba(0,0,0,.23),0 8px 25px rgba(0,0,0,.05)}.repo a{background:#00bfa5;color:#fff;border-radius:3px}.repo a:focus,.repo a:hover{box-shadow:0 4px 7px rgba(0,0,0,.23),0 8px 25px rgba(0,0,0,.05);opacity:.8}.repo a .count{background:rgba(0,0,0,.26);color:#fff;border-radius:0 3px 3px 0}.repo a .count:before{border-width:15px 5px 15px 0;border-color:transparent rgba(0,0,0,.26);border-style:solid}.drawer{width:262px;font-size:13px;line-height:1em}.ios .drawer{overflow:scroll;-webkit-overflow-scrolling:touch}.drawer .toc li a{display:block;padding:14.5px 24px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.drawer .toc li.anchor a{margin-left:12px;padding:10px 24px 10px 12px}.drawer .toc li ul{margin-left:12px}.drawer .current+ul{margin-bottom:9px}.drawer .section{display:block;padding:14.5px 24px}.drawer .scrollable{top:104px;z-index:-1}.drawer .scrollable .wrapper{height:auto;min-height:100%}.drawer .scrollable .wrapper hr{margin:12px 0;margin-right:auto}.drawer .scrollable .wrapper .toc{margin:12px 0}.project{display:block}.project .banner{display:table;width:100%;height:104px;padding:20px}.project .logo{display:table-cell;width:64px;padding-right:12px}.project .logo img{display:block;width:64px;height:64px}.project .name{display:table-cell;padding-left:4px;font-size:14px;line-height:1.25em;vertical-align:middle}.project .logo+.name{font-size:12px}.repo{margin:24px 0;text-align:center}.repo li{display:inline-block;padding-right:12px;white-space:nowrap}.repo li:last-child{padding-right:0}.repo a{display:inline-block;padding:0 10px 0 6px;font-size:12px;line-height:30px;height:30px}.repo a .icon{font-size:18px;vertical-align:-3px}.repo a .count{display:inline-block;position:relative;padding:0 8px 0 4px;margin:0 -10px 0 8px;font-size:12px}.repo a .count:before{content:" ";display:block;position:absolute;top:0;left:-5px}.no-js .repo a .count{display:none}.drawer .toc li a{font-weight:700}.drawer .toc li.anchor a{font-weight:400}.drawer .section,.repo a{font-weight:700}.repo a{text-transform:uppercase}.repo a .count{text-transform:none;font-weight:700}pre span{-webkit-transition:color .25s;transition:color .25s}.copyright a{-webkit-transition:color .25s;transition:color .25s}.ios.standalone .article{background:-webkit-linear-gradient(top,#fff 50%,#e84e40 0);background:linear-gradient(180deg,#fff 50%,#e84e40 0)}.ios.standalone .article .wrapper{background:-webkit-linear-gradient(top,#fff 50%,#fff 0);background:linear-gradient(180deg,#fff 50%,#fff 0)}.article a,.article h1,.article h2{color:#e84e40}.article code{background:#eee}.article kbd{color:#555;background-color:#fcfcfc;border:1px solid #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb}.article h1{border-bottom:1px solid rgba(0,0,0,.12)}.article a{border-bottom:1px dotted}.article a:focus,.article a:hover{color:#00bfa5}.article .headerlink{color:rgba(0,0,0,.26);border:none}.article table{box-shadow:0 1.5px 3px rgba(0,0,0,.24),0 3px 8px rgba(0,0,0,.05);border-radius:3px}.article table th{background:#ee7a70;color:#fff}.article table td{border-top:1px solid rgba(0,0,0,.05)}.article blockquote{border-left:2px solid rgba(0,0,0,.54);color:rgba(0,0,0,.54)}.footer{background:#e84e40;color:#fff}.footer a{border:none}.copyright{color:rgba(0,0,0,.54)}.pagination a .button,.pagination a .title{color:#fff}.pagination .direction{color:hsla(0,0%,100%,.7)}.admonition{background:#29b6f6;color:#fff}.admonition pre{background:hsla(0,0%,100%,.3)}.admonition.warning{background:#e84e40}.admonition a,.admonition a:hover{color:#fff}.article{font-size:14px;line-height:1.7em}.article:after{content:" ";display:block;clear:both}.article .wrapper{padding:116px 16px 92px}.ios.standalone .article{position:absolute;top:56px;right:0;bottom:0;left:0;overflow:auto;-webkit-overflow-scrolling:touch}.ios.standalone .article .wrapper{position:relative;min-height:100%;padding-top:60px;margin-bottom:2px}.article h1{font-size:24px;line-height:1.333334em;padding:20px 0 42px}.article h2{font-size:20px;line-height:1.4em;padding-top:92px;margin-top:-56px}.ios.standalone .article h2{padding-top:36px;margin:0}.article h3,.article h4{font-size:14px;padding-top:76px;margin-top:-56px}.ios.standalone .article h3,.ios.standalone .article h4{padding-top:20px;margin-top:0}.article .headerlink{float:right;margin-left:20px;font-size:14px}h1 .article .headerlink{display:none}.article ol,.article p,.article ul{margin-top:1.5em}.article li,.article li ol,.article li ul{margin-top:.75em}.article li{margin-left:18px}.article li p{display:inline}.article ul>li:before{content:"\e602";display:block;float:left;font-family:Icon;font-size:16px;width:1.2em;margin-left:-1.2em;vertical-align:-.1em}.article p>code{white-space:nowrap;padding:2px 4px}.article kbd{display:inline-block;padding:3px 5px;line-height:10px}.article hr{margin-top:1.5em}.article img{max-width:100%}.article pre{padding:16px;margin:1.5em -16px 0;line-height:1.5em;overflow:auto;-webkit-overflow-scrolling:touch}.article table{margin:3em 0 1.5em;font-size:13px;overflow:hidden}.no-js .article table{display:inline-block;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch}.article table th{min-width:100px;font-size:12px;text-align:left}.article table td,.article table th{padding:12px 16px;vertical-align:top}.article blockquote{padding-left:16px}.article .data{margin:1.5em -16px;padding:1.5em 0;overflow:auto;-webkit-overflow-scrolling:touch;text-align:center}.article .data table{display:inline-block;margin:0 16px;text-align:left}.footer{position:absolute;bottom:0;left:0;right:0;padding:0 4px}.copyright{margin:1.5em 0}.pagination{max-width:1184px;height:92px;padding:4px 0;margin-left:auto;margin-right:auto;overflow:hidden}.pagination a{display:block;height:100%}.pagination .next,.pagination .previous{position:relative;float:left;height:100%}.pagination .previous{width:25%}.pagination .previous .direction,.pagination .previous .stretch{display:none}.pagination .next{width:75%;text-align:right}.pagination .page{display:table;position:absolute;bottom:4px}.pagination .direction{display:block;position:absolute;bottom:40px;width:100%;font-size:15px;line-height:20px;padding:0 52px}.pagination .stretch{padding:0 4px}.pagination .stretch .title{font-size:18px;padding:11px 0 13px}.admonition{margin:20px -16px 0;padding:20px 16px}.admonition>:first-child{margin-top:0}.admonition .admonition-title{font-size:20px}.admonition .admonition-title:before{content:"\e611";display:block;float:left;font-family:Icon;font-size:24px;vertical-align:-.1em;margin-right:5px}.admonition.warning .admonition-title:before{content:"\e610"}.article h3{font-weight:700}.article h4{font-weight:400;font-style:italic}.article h2 a,.article h3 a,.article h4 a,.article h5 a,.article h6 a{font-weight:400;font-style:normal}.bar{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:opacity .2s cubic-bezier(.75,0,.25,1),-webkit-transform .4s cubic-bezier(.75,0,.25,1);transition:opacity .2s cubic-bezier(.75,0,.25,1),-webkit-transform .4s cubic-bezier(.75,0,.25,1);transition:opacity .2s cubic-bezier(.75,0,.25,1),transform .4s cubic-bezier(.75,0,.25,1);transition:opacity .2s cubic-bezier(.75,0,.25,1),transform .4s cubic-bezier(.75,0,.25,1),-webkit-transform .4s cubic-bezier(.75,0,.25,1)}#toggle-search:checked~.header .bar,.toggle-search .bar{-webkit-transform:translate3d(0,-56px,0);transform:translate3d(0,-56px,0)}.bar.search .button-reset{-webkit-transform:scale(.5);transform:scale(.5);-webkit-transition:opacity .4s cubic-bezier(.1,.7,.1,1),-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .4s cubic-bezier(.1,.7,.1,1),-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .4s cubic-bezier(.1,.7,.1,1),transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .4s cubic-bezier(.1,.7,.1,1),transform .4s cubic-bezier(.1,.7,.1,1),-webkit-transform .4s cubic-bezier(.1,.7,.1,1);opacity:0}.bar.search.non-empty .button-reset{-webkit-transform:scale(1);transform:scale(1);opacity:1}.results{-webkit-transition:opacity .3s .1s,width 0s .4s,height 0s .4s;transition:opacity .3s .1s,width 0s .4s,height 0s .4s}#toggle-search:checked~.main .results,.toggle-search .results{-webkit-transition:opacity .4s,width 0s,height 0s;transition:opacity .4s,width 0s,height 0s}.results .list a{-webkit-transition:background .25s;transition:background .25s}.no-csstransforms3d .bar.default{display:table}.no-csstransforms3d .bar.search{display:none;margin-top:0}.no-csstransforms3d #toggle-search:checked~.header .bar.default,.no-csstransforms3d .toggle-search .bar.default{display:none}.no-csstransforms3d #toggle-search:checked~.header .bar.search,.no-csstransforms3d .toggle-search .bar.search{display:table}.bar.search{opacity:0}.bar.search .query{background:transparent;color:rgba(0,0,0,.87)}.bar.search .query::-webkit-input-placeholder{color:rgba(0,0,0,.26)}.bar.search .query:-moz-placeholder,.bar.search .query::-moz-placeholder{color:rgba(0,0,0,.26)}.bar.search .query:-ms-input-placeholder{color:rgba(0,0,0,.26)}.bar.search .button .icon:active{background:rgba(0,0,0,.12)}.results{box-shadow:0 4px 7px rgba(0,0,0,.23),0 8px 25px rgba(0,0,0,.05);background:#fff;color:rgba(0,0,0,.87);opacity:0}#toggle-search:checked~.main .results,.toggle-search .results{opacity:1}.results .meta{background:#e84e40;color:#fff}.results .list a{border-bottom:1px solid rgba(0,0,0,.12)}.results .list a:last-child{border-bottom:none}.results .list a:active{background:rgba(0,0,0,.12)}.result span{color:rgba(0,0,0,.54)}#toggle-search:checked~.header,.toggle-search .header{background:#fff;color:rgba(0,0,0,.54)}#toggle-search:checked~.header:before,.toggle-search .header:before{background:rgba(0,0,0,.54)}#toggle-search:checked~.header .bar.default,.toggle-search .header .bar.default{opacity:0}#toggle-search:checked~.header .bar.search,.toggle-search .header .bar.search{opacity:1}.bar.search{margin-top:8px}.bar.search .query{font-size:18px;padding:13px 0;margin:0;width:100%;height:48px}.bar.search .query::-ms-clear{display:none}.results{position:fixed;top:0;left:0;width:0;height:100%;z-index:1;overflow-y:scroll;-webkit-overflow-scrolling:touch}.results .scrollable{top:56px}#toggle-search:checked~.main .results,.toggle-search .results{width:100%;overflow-y:visible}.results .meta{font-weight:700}.results .meta strong{display:block;font-size:11px;max-width:1200px;margin-left:auto;margin-right:auto;padding:16px}.results .list a{display:block}.result{max-width:1200px;margin-left:auto;margin-right:auto;padding:12px 16px 16px}.result h1{line-height:24px}.result h1,.result span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.result span{font-size:12px}.no-csstransforms3d .results{display:none}.no-csstransforms3d #toggle-search:checked~.main .results,.no-csstransforms3d .toggle-search .results{display:block;overflow:auto}.meta{text-transform:uppercase;font-weight:700}@media only screen and (min-width:960px){.backdrop{background:#f2f2f2}.backdrop-paper:after{box-shadow:0 1.5px 3px rgba(0,0,0,.24),0 3px 8px rgba(0,0,0,.05)}.button-menu{display:none}.drawer{float:left;height:auto;margin-bottom:96px;padding-top:80px}.drawer,.drawer .scrollable{position:static}.article{margin-left:262px}.footer{z-index:4}.copyright{margin-bottom:64px}.results{height:auto;top:64px}.results .scrollable{position:static;max-height:413px}}@media only screen and (max-width:959px){#toggle-drawer:checked~.overlay,.toggle-drawer .overlay{width:100%;height:100%}.drawer{-webkit-transform:translate3d(-262px,0,0);transform:translate3d(-262px,0,0);-webkit-transition:-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1),-webkit-transform .25s cubic-bezier(.4,0,.2,1)}.no-csstransforms3d .drawer{display:none}.drawer{background:#fff}.project{box-shadow:0 1.5px 3px rgba(0,0,0,.24),0 3px 8px rgba(0,0,0,.05);background:#e84e40;color:#fff}.drawer{position:fixed;z-index:4}#toggle-search:checked~.main .results,.drawer,.toggle-search .results{height:100%}}@media only screen and (min-width:720px){.header{height:64px;padding:8px}.header .stretch{padding:0 16px}.header .stretch .title{font-size:20px;padding:12px 0}.project .name{margin:26px 0 0 5px}.article .wrapper{padding:128px 24px 96px}.article .data{margin:1.5em -24px}.article .data table{margin:0 24px}.article h2{padding-top:100px;margin-top:-64px}.ios.standalone .article h2{padding-top:28px;margin-top:8px}.article h3,.article h4{padding-top:84px;margin-top:-64px}.ios.standalone .article h3,.ios.standalone .article h4{padding-top:20px;margin-top:0}.article pre{padding:1.5em 24px;margin:1.5em -24px 0}.footer{padding:0 8px}.pagination{height:96px;padding:8px 0}.pagination .direction{padding:0 56px;bottom:40px}.pagination .stretch{padding:0 8px}.admonition{margin:20px -24px 0;padding:20px 24px}.bar.search .query{font-size:20px;padding:12px 0}.results .scrollable{top:64px}.results .meta strong{padding:16px 24px}.result{padding:16px 24px 20px}}@media only screen and (min-width:1200px){.header{width:100%}.drawer .scrollable .wrapper hr{width:48px}}@media only screen and (orientation:portrait){.ios.standalone .header{height:76px;padding-top:24px}.ios.standalone .header:before{content:" ";position:absolute;top:0;left:0;z-index:3;width:100%;height:20px}.ios.standalone .drawer .scrollable{top:124px}.ios.standalone .project{padding-top:20px}.ios.standalone .project:before{content:" ";position:absolute;top:0;left:0;z-index:3;width:100%;height:20px}.ios.standalone .article{position:absolute;top:76px;right:0;bottom:0;left:0}.ios.standalone .results .scrollable{top:76px}}@media only screen and (orientation:portrait) and (min-width:720px){.ios.standalone .header{height:84px;padding-top:28px}.ios.standalone .results .scrollable{top:84px}}@media only screen and (max-width:719px){.bar .path{display:none}}@media only screen and (max-width:479px){.button-github,.button-twitter{display:none}}@media only screen and (min-width:720px) and (max-width:959px){.header .stretch{padding:0 24px}}@media only screen and (min-width:480px){.pagination .next,.pagination .previous{width:50%}.pagination .previous .direction{display:block}.pagination .previous .stretch{display:table}}@media print{.drawer,.footer,.header,.headerlink{display:none}.article .wrapper{padding-top:0}.article pre,.article pre *{color:rgba(0,0,0,.87)!important}.article pre{border:1px solid rgba(0,0,0,.12)}.article table{border-radius:none;box-shadow:none}.article table th{color:#e84e40}} diff --git a/docs/stylesheets/highlight/highlight.css b/docs/stylesheets/highlight/highlight.css deleted file mode 100644 index 179f790e..00000000 --- a/docs/stylesheets/highlight/highlight.css +++ /dev/null @@ -1,116 +0,0 @@ -/* - * overwrite the current primary color of the - * theme that is used as fallback in codeblocks - */ -.article pre code { - color: rgba(0, 0, 0, 0.78) !important; -} - - -/* - HIGHLIGHT.JS THEME - - tweaked version of the Github theme -*/ - -.hljs { -display:block; -overflow-x:auto; -} - -.hljs-comment, -.hljs-quote { -color:#998; -font-style:italic; -} - -.hljs-keyword, -.hljs-selector-tag, -.hljs-subst { -color:#333; -font-weight:700; -} - -.hljs-number, -.hljs-literal, -.hljs-variable, -.hljs-template-variable, -.hljs-tag .hljs-attr { -color:teal; -} - -.hljs-string, -.hljs-doctag { -color:#d14; -} - -.hljs-title, -.hljs-section, -.hljs-selector-id { -color:#900; -font-weight:700; -} - -.hljs-subst { -font-weight:400; -} - -.hljs-type, -.hljs-class .hljs-title { -color:#458; -font-weight:700; -} - -.hljs-tag, -.hljs-name, -.hljs-attribute { -color:navy; -font-weight:400; -} - -.hljs-regexp, -.hljs-link { -color:#009926; -} - -.hljs-symbol, -.hljs-bullet { -color:#990073; -} - -.hljs-built_in, -.hljs-builtin-name { -color:#0086b3; -} - -.hljs-meta { -color:#999; -font-weight:700; -} - -.hljs-deletion { -background:#fdd; -} - -.hljs-addition { -background:#dfd; -} - -.hljs-emphasis { -font-style:italic; -} - -.hljs-strong { -font-weight:700; -} - -/* - OVERRIDING THE DEFAULT STYLES - By Mahmoud Zalt (mahmoud@zalt.me) for Laradock.io -*/ - -.project .logo img{ - width: 140px; - height: 140px; - background: transparent; - border-radius: 0%; -} diff --git a/docs/stylesheets/palettes.css b/docs/stylesheets/palettes.css deleted file mode 100644 index 97440f59..00000000 --- a/docs/stylesheets/palettes.css +++ /dev/null @@ -1 +0,0 @@ -@supports (-webkit-appearance:none){.palette-primary-red{background:#e84e40}}.palette-primary-red .footer,.palette-primary-red .header{background:#e84e40}.palette-primary-red .drawer .toc a.current,.palette-primary-red .drawer .toc a:focus,.palette-primary-red .drawer .toc a:hover{color:#e84e40}.palette-primary-red .drawer .anchor a{border-left:2px solid #e84e40}.ios.standalone .palette-primary-red .article{background:-webkit-linear-gradient(top,#fff 50%,#e84e40 0);background:linear-gradient(180deg,#fff 50%,#e84e40 0)}.palette-primary-red .article a,.palette-primary-red .article code,.palette-primary-red .article h1,.palette-primary-red .article h2{color:#e84e40}.palette-primary-red .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-red .article table th{background:#ee7a70}.palette-primary-red .results .meta{background:#e84e40}@supports (-webkit-appearance:none){.palette-primary-pink{background:#e91e63}}.palette-primary-pink .footer,.palette-primary-pink .header{background:#e91e63}.palette-primary-pink .drawer .toc a.current,.palette-primary-pink .drawer .toc a:focus,.palette-primary-pink .drawer .toc a:hover{color:#e91e63}.palette-primary-pink .drawer .anchor a{border-left:2px solid #e91e63}.ios.standalone .palette-primary-pink .article{background:-webkit-linear-gradient(top,#fff 50%,#e91e63 0);background:linear-gradient(180deg,#fff 50%,#e91e63 0)}.palette-primary-pink .article a,.palette-primary-pink .article code,.palette-primary-pink .article h1,.palette-primary-pink .article h2{color:#e91e63}.palette-primary-pink .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-pink .article table th{background:#ef568a}.palette-primary-pink .results .meta{background:#e91e63}@supports (-webkit-appearance:none){.palette-primary-purple{background:#ab47bc}}.palette-primary-purple .footer,.palette-primary-purple .header{background:#ab47bc}.palette-primary-purple .drawer .toc a.current,.palette-primary-purple .drawer .toc a:focus,.palette-primary-purple .drawer .toc a:hover{color:#ab47bc}.palette-primary-purple .drawer .anchor a{border-left:2px solid #ab47bc}.ios.standalone .palette-primary-purple .article{background:-webkit-linear-gradient(top,#fff 50%,#ab47bc 0);background:linear-gradient(180deg,#fff 50%,#ab47bc 0)}.palette-primary-purple .article a,.palette-primary-purple .article code,.palette-primary-purple .article h1,.palette-primary-purple .article h2{color:#ab47bc}.palette-primary-purple .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-purple .article table th{background:#c075cd}.palette-primary-purple .results .meta{background:#ab47bc}@supports (-webkit-appearance:none){.palette-primary-deep-purple{background:#7e57c2}}.palette-primary-deep-purple .footer,.palette-primary-deep-purple .header{background:#7e57c2}.palette-primary-deep-purple .drawer .toc a.current,.palette-primary-deep-purple .drawer .toc a:focus,.palette-primary-deep-purple .drawer .toc a:hover{color:#7e57c2}.palette-primary-deep-purple .drawer .anchor a{border-left:2px solid #7e57c2}.ios.standalone .palette-primary-deep-purple .article{background:-webkit-linear-gradient(top,#fff 50%,#7e57c2 0);background:linear-gradient(180deg,#fff 50%,#7e57c2 0)}.palette-primary-deep-purple .article a,.palette-primary-deep-purple .article code,.palette-primary-deep-purple .article h1,.palette-primary-deep-purple .article h2{color:#7e57c2}.palette-primary-deep-purple .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-deep-purple .article table th{background:#9e81d1}.palette-primary-deep-purple .results .meta{background:#7e57c2}@supports (-webkit-appearance:none){.palette-primary-indigo{background:#3f51b5}}.palette-primary-indigo .footer,.palette-primary-indigo .header{background:#3f51b5}.palette-primary-indigo .drawer .toc a.current,.palette-primary-indigo .drawer .toc a:focus,.palette-primary-indigo .drawer .toc a:hover{color:#3f51b5}.palette-primary-indigo .drawer .anchor a{border-left:2px solid #3f51b5}.ios.standalone .palette-primary-indigo .article{background:-webkit-linear-gradient(top,#fff 50%,#3f51b5 0);background:linear-gradient(180deg,#fff 50%,#3f51b5 0)}.palette-primary-indigo .article a,.palette-primary-indigo .article code,.palette-primary-indigo .article h1,.palette-primary-indigo .article h2{color:#3f51b5}.palette-primary-indigo .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-indigo .article table th{background:#6f7dc8}.palette-primary-indigo .results .meta{background:#3f51b5}@supports (-webkit-appearance:none){.palette-primary-blue{background:#5677fc}}.palette-primary-blue .footer,.palette-primary-blue .header{background:#5677fc}.palette-primary-blue .drawer .toc a.current,.palette-primary-blue .drawer .toc a:focus,.palette-primary-blue .drawer .toc a:hover{color:#5677fc}.palette-primary-blue .drawer .anchor a{border-left:2px solid #5677fc}.ios.standalone .palette-primary-blue .article{background:-webkit-linear-gradient(top,#fff 50%,#5677fc 0);background:linear-gradient(180deg,#fff 50%,#5677fc 0)}.palette-primary-blue .article a,.palette-primary-blue .article code,.palette-primary-blue .article h1,.palette-primary-blue .article h2{color:#5677fc}.palette-primary-blue .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-blue .article table th{background:#8099fd}.palette-primary-blue .results .meta{background:#5677fc}@supports (-webkit-appearance:none){.palette-primary-light-blue{background:#03a9f4}}.palette-primary-light-blue .footer,.palette-primary-light-blue .header{background:#03a9f4}.palette-primary-light-blue .drawer .toc a.current,.palette-primary-light-blue .drawer .toc a:focus,.palette-primary-light-blue .drawer .toc a:hover{color:#03a9f4}.palette-primary-light-blue .drawer .anchor a{border-left:2px solid #03a9f4}.ios.standalone .palette-primary-light-blue .article{background:-webkit-linear-gradient(top,#fff 50%,#03a9f4 0);background:linear-gradient(180deg,#fff 50%,#03a9f4 0)}.palette-primary-light-blue .article a,.palette-primary-light-blue .article code,.palette-primary-light-blue .article h1,.palette-primary-light-blue .article h2{color:#03a9f4}.palette-primary-light-blue .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-light-blue .article table th{background:#42bff7}.palette-primary-light-blue .results .meta{background:#03a9f4}@supports (-webkit-appearance:none){.palette-primary-cyan{background:#00bcd4}}.palette-primary-cyan .footer,.palette-primary-cyan .header{background:#00bcd4}.palette-primary-cyan .drawer .toc a.current,.palette-primary-cyan .drawer .toc a:focus,.palette-primary-cyan .drawer .toc a:hover{color:#00bcd4}.palette-primary-cyan .drawer .anchor a{border-left:2px solid #00bcd4}.ios.standalone .palette-primary-cyan .article{background:-webkit-linear-gradient(top,#fff 50%,#00bcd4 0);background:linear-gradient(180deg,#fff 50%,#00bcd4 0)}.palette-primary-cyan .article a,.palette-primary-cyan .article code,.palette-primary-cyan .article h1,.palette-primary-cyan .article h2{color:#00bcd4}.palette-primary-cyan .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-cyan .article table th{background:#40cddf}.palette-primary-cyan .results .meta{background:#00bcd4}@supports (-webkit-appearance:none){.palette-primary-teal{background:#009688}}.palette-primary-teal .footer,.palette-primary-teal .header{background:#009688}.palette-primary-teal .drawer .toc a.current,.palette-primary-teal .drawer .toc a:focus,.palette-primary-teal .drawer .toc a:hover{color:#009688}.palette-primary-teal .drawer .anchor a{border-left:2px solid #009688}.ios.standalone .palette-primary-teal .article{background:-webkit-linear-gradient(top,#fff 50%,#009688 0);background:linear-gradient(180deg,#fff 50%,#009688 0)}.palette-primary-teal .article a,.palette-primary-teal .article code,.palette-primary-teal .article h1,.palette-primary-teal .article h2{color:#009688}.palette-primary-teal .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-teal .article table th{background:#40b0a6}.palette-primary-teal .results .meta{background:#009688}@supports (-webkit-appearance:none){.palette-primary-green{background:#259b24}}.palette-primary-green .footer,.palette-primary-green .header{background:#259b24}.palette-primary-green .drawer .toc a.current,.palette-primary-green .drawer .toc a:focus,.palette-primary-green .drawer .toc a:hover{color:#259b24}.palette-primary-green .drawer .anchor a{border-left:2px solid #259b24}.ios.standalone .palette-primary-green .article{background:-webkit-linear-gradient(top,#fff 50%,#259b24 0);background:linear-gradient(180deg,#fff 50%,#259b24 0)}.palette-primary-green .article a,.palette-primary-green .article code,.palette-primary-green .article h1,.palette-primary-green .article h2{color:#259b24}.palette-primary-green .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-green .article table th{background:#5cb45b}.palette-primary-green .results .meta{background:#259b24}@supports (-webkit-appearance:none){.palette-primary-light-green{background:#7cb342}}.palette-primary-light-green .footer,.palette-primary-light-green .header{background:#7cb342}.palette-primary-light-green .drawer .toc a.current,.palette-primary-light-green .drawer .toc a:focus,.palette-primary-light-green .drawer .toc a:hover{color:#7cb342}.palette-primary-light-green .drawer .anchor a{border-left:2px solid #7cb342}.ios.standalone .palette-primary-light-green .article{background:-webkit-linear-gradient(top,#fff 50%,#7cb342 0);background:linear-gradient(180deg,#fff 50%,#7cb342 0)}.palette-primary-light-green .article a,.palette-primary-light-green .article code,.palette-primary-light-green .article h1,.palette-primary-light-green .article h2{color:#7cb342}.palette-primary-light-green .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-light-green .article table th{background:#9dc671}.palette-primary-light-green .results .meta{background:#7cb342}@supports (-webkit-appearance:none){.palette-primary-lime{background:#c0ca33}}.palette-primary-lime .footer,.palette-primary-lime .header{background:#c0ca33}.palette-primary-lime .drawer .toc a.current,.palette-primary-lime .drawer .toc a:focus,.palette-primary-lime .drawer .toc a:hover{color:#c0ca33}.palette-primary-lime .drawer .anchor a{border-left:2px solid #c0ca33}.ios.standalone .palette-primary-lime .article{background:-webkit-linear-gradient(top,#fff 50%,#c0ca33 0);background:linear-gradient(180deg,#fff 50%,#c0ca33 0)}.palette-primary-lime .article a,.palette-primary-lime .article code,.palette-primary-lime .article h1,.palette-primary-lime .article h2{color:#c0ca33}.palette-primary-lime .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-lime .article table th{background:#d0d766}.palette-primary-lime .results .meta{background:#c0ca33}@supports (-webkit-appearance:none){.palette-primary-yellow{background:#f9a825}}.palette-primary-yellow .footer,.palette-primary-yellow .header{background:#f9a825}.palette-primary-yellow .drawer .toc a.current,.palette-primary-yellow .drawer .toc a:focus,.palette-primary-yellow .drawer .toc a:hover{color:#f9a825}.palette-primary-yellow .drawer .anchor a{border-left:2px solid #f9a825}.ios.standalone .palette-primary-yellow .article{background:-webkit-linear-gradient(top,#fff 50%,#f9a825 0);background:linear-gradient(180deg,#fff 50%,#f9a825 0)}.palette-primary-yellow .article a,.palette-primary-yellow .article code,.palette-primary-yellow .article h1,.palette-primary-yellow .article h2{color:#f9a825}.palette-primary-yellow .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-yellow .article table th{background:#fbbe5c}.palette-primary-yellow .results .meta{background:#f9a825}@supports (-webkit-appearance:none){.palette-primary-amber{background:#ffb300}}.palette-primary-amber .footer,.palette-primary-amber .header{background:#ffb300}.palette-primary-amber .drawer .toc a.current,.palette-primary-amber .drawer .toc a:focus,.palette-primary-amber .drawer .toc a:hover{color:#ffb300}.palette-primary-amber .drawer .anchor a{border-left:2px solid #ffb300}.ios.standalone .palette-primary-amber .article{background:-webkit-linear-gradient(top,#fff 50%,#ffb300 0);background:linear-gradient(180deg,#fff 50%,#ffb300 0)}.palette-primary-amber .article a,.palette-primary-amber .article code,.palette-primary-amber .article h1,.palette-primary-amber .article h2{color:#ffb300}.palette-primary-amber .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-amber .article table th{background:#ffc640}.palette-primary-amber .results .meta{background:#ffb300}@supports (-webkit-appearance:none){.palette-primary-orange{background:#fb8c00}}.palette-primary-orange .footer,.palette-primary-orange .header{background:#fb8c00}.palette-primary-orange .drawer .toc a.current,.palette-primary-orange .drawer .toc a:focus,.palette-primary-orange .drawer .toc a:hover{color:#fb8c00}.palette-primary-orange .drawer .anchor a{border-left:2px solid #fb8c00}.ios.standalone .palette-primary-orange .article{background:-webkit-linear-gradient(top,#fff 50%,#fb8c00 0);background:linear-gradient(180deg,#fff 50%,#fb8c00 0)}.palette-primary-orange .article a,.palette-primary-orange .article code,.palette-primary-orange .article h1,.palette-primary-orange .article h2{color:#fb8c00}.palette-primary-orange .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-orange .article table th{background:#fca940}.palette-primary-orange .results .meta{background:#fb8c00}@supports (-webkit-appearance:none){.palette-primary-deep-orange{background:#ff7043}}.palette-primary-deep-orange .footer,.palette-primary-deep-orange .header{background:#ff7043}.palette-primary-deep-orange .drawer .toc a.current,.palette-primary-deep-orange .drawer .toc a:focus,.palette-primary-deep-orange .drawer .toc a:hover{color:#ff7043}.palette-primary-deep-orange .drawer .anchor a{border-left:2px solid #ff7043}.ios.standalone .palette-primary-deep-orange .article{background:-webkit-linear-gradient(top,#fff 50%,#ff7043 0);background:linear-gradient(180deg,#fff 50%,#ff7043 0)}.palette-primary-deep-orange .article a,.palette-primary-deep-orange .article code,.palette-primary-deep-orange .article h1,.palette-primary-deep-orange .article h2{color:#ff7043}.palette-primary-deep-orange .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-deep-orange .article table th{background:#ff9472}.palette-primary-deep-orange .results .meta{background:#ff7043}@supports (-webkit-appearance:none){.palette-primary-brown{background:#795548}}.palette-primary-brown .footer,.palette-primary-brown .header{background:#795548}.palette-primary-brown .drawer .toc a.current,.palette-primary-brown .drawer .toc a:focus,.palette-primary-brown .drawer .toc a:hover{color:#795548}.palette-primary-brown .drawer .anchor a{border-left:2px solid #795548}.ios.standalone .palette-primary-brown .article{background:-webkit-linear-gradient(top,#fff 50%,#795548 0);background:linear-gradient(180deg,#fff 50%,#795548 0)}.palette-primary-brown .article a,.palette-primary-brown .article code,.palette-primary-brown .article h1,.palette-primary-brown .article h2{color:#795548}.palette-primary-brown .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-brown .article table th{background:#9b8076}.palette-primary-brown .results .meta{background:#795548}@supports (-webkit-appearance:none){.palette-primary-grey{background:#757575}}.palette-primary-grey .footer,.palette-primary-grey .header{background:#757575}.palette-primary-grey .drawer .toc a.current,.palette-primary-grey .drawer .toc a:focus,.palette-primary-grey .drawer .toc a:hover{color:#757575}.palette-primary-grey .drawer .anchor a{border-left:2px solid #757575}.ios.standalone .palette-primary-grey .article{background:-webkit-linear-gradient(top,#fff 50%,#757575 0);background:linear-gradient(180deg,#fff 50%,#757575 0)}.palette-primary-grey .article a,.palette-primary-grey .article code,.palette-primary-grey .article h1,.palette-primary-grey .article h2{color:#757575}.palette-primary-grey .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-grey .article table th{background:#989898}.palette-primary-grey .results .meta{background:#757575}@supports (-webkit-appearance:none){.palette-primary-blue-grey{background:#546e7a}}.palette-primary-blue-grey .footer,.palette-primary-blue-grey .header{background:#546e7a}.palette-primary-blue-grey .drawer .toc a.current,.palette-primary-blue-grey .drawer .toc a:focus,.palette-primary-blue-grey .drawer .toc a:hover{color:#546e7a}.palette-primary-blue-grey .drawer .anchor a{border-left:2px solid #546e7a}.ios.standalone .palette-primary-blue-grey .article{background:-webkit-linear-gradient(top,#fff 50%,#546e7a 0);background:linear-gradient(180deg,#fff 50%,#546e7a 0)}.palette-primary-blue-grey .article a,.palette-primary-blue-grey .article code,.palette-primary-blue-grey .article h1,.palette-primary-blue-grey .article h2{color:#546e7a}.palette-primary-blue-grey .article .headerlink{color:rgba(0,0,0,.26)}.palette-primary-blue-grey .article table th{background:#7f929b}.palette-primary-blue-grey .results .meta{background:#546e7a}.palette-accent-red .article a:focus,.palette-accent-red .article a:hover{color:#ff2d6f}.palette-accent-red .repo a{background:#ff2d6f}.palette-accent-pink .article a:focus,.palette-accent-pink .article a:hover{color:#f50057}.palette-accent-pink .repo a{background:#f50057}.palette-accent-purple .article a:focus,.palette-accent-purple .article a:hover{color:#e040fb}.palette-accent-purple .repo a{background:#e040fb}.palette-accent-deep-purple .article a:focus,.palette-accent-deep-purple .article a:hover{color:#7c4dff}.palette-accent-deep-purple .repo a{background:#7c4dff}.palette-accent-indigo .article a:focus,.palette-accent-indigo .article a:hover{color:#536dfe}.palette-accent-indigo .repo a{background:#536dfe}.palette-accent-blue .article a:focus,.palette-accent-blue .article a:hover{color:#6889ff}.palette-accent-blue .repo a{background:#6889ff}.palette-accent-light-blue .article a:focus,.palette-accent-light-blue .article a:hover{color:#0091ea}.palette-accent-light-blue .repo a{background:#0091ea}.palette-accent-cyan .article a:focus,.palette-accent-cyan .article a:hover{color:#00b8d4}.palette-accent-cyan .repo a{background:#00b8d4}.palette-accent-teal .article a:focus,.palette-accent-teal .article a:hover{color:#00bfa5}.palette-accent-teal .repo a{background:#00bfa5}.palette-accent-green .article a:focus,.palette-accent-green .article a:hover{color:#12c700}.palette-accent-green .repo a{background:#12c700}.palette-accent-light-green .article a:focus,.palette-accent-light-green .article a:hover{color:#64dd17}.palette-accent-light-green .repo a{background:#64dd17}.palette-accent-lime .article a:focus,.palette-accent-lime .article a:hover{color:#aeea00}.palette-accent-lime .repo a{background:#aeea00}.palette-accent-yellow .article a:focus,.palette-accent-yellow .article a:hover{color:#ffd600}.palette-accent-yellow .repo a{background:#ffd600}.palette-accent-amber .article a:focus,.palette-accent-amber .article a:hover{color:#ffab00}.palette-accent-amber .repo a{background:#ffab00}.palette-accent-orange .article a:focus,.palette-accent-orange .article a:hover{color:#ff9100}.palette-accent-orange .repo a{background:#ff9100}.palette-accent-deep-orange .article a:focus,.palette-accent-deep-orange .article a:hover{color:#ff6e40}.palette-accent-deep-orange .repo a{background:#ff6e40}@media only screen and (max-width:959px){.palette-primary-red .project{background:#e84e40}.palette-primary-pink .project{background:#e91e63}.palette-primary-purple .project{background:#ab47bc}.palette-primary-deep-purple .project{background:#7e57c2}.palette-primary-indigo .project{background:#3f51b5}.palette-primary-blue .project{background:#5677fc}.palette-primary-light-blue .project{background:#03a9f4}.palette-primary-cyan .project{background:#00bcd4}.palette-primary-teal .project{background:#009688}.palette-primary-green .project{background:#259b24}.palette-primary-light-green .project{background:#7cb342}.palette-primary-lime .project{background:#c0ca33}.palette-primary-yellow .project{background:#f9a825}.palette-primary-amber .project{background:#ffb300}.palette-primary-orange .project{background:#fb8c00}.palette-primary-deep-orange .project{background:#ff7043}.palette-primary-brown .project{background:#795548}.palette-primary-grey .project{background:#757575}.palette-primary-blue-grey .project{background:#546e7a}} diff --git a/docs/stylesheets/temporary.css b/docs/stylesheets/temporary.css deleted file mode 100644 index 25530e64..00000000 --- a/docs/stylesheets/temporary.css +++ /dev/null @@ -1,11 +0,0 @@ -/* This file only exists (temporarily) until the - custom styling can be replaced with the - implementation of the upstream project. -*/ - -blockquote { - padding: 0 20px; - margin: 0 0 20px; - font-size: inherit; - border-left: 5px solid #eee; -} diff --git a/elasticsearch/Dockerfile b/elasticsearch/Dockerfile index 363932e4..914761ee 100644 --- a/elasticsearch/Dockerfile +++ b/elasticsearch/Dockerfile @@ -1,5 +1,3 @@ -FROM elasticsearch:latest - -MAINTAINER Bo-Yi Wu +FROM docker.elastic.co/elasticsearch/elasticsearch:5.4.1 EXPOSE 9200 9300 diff --git a/env-example b/env-example index 7829a2de..0fe6ddb8 100644 --- a/env-example +++ b/env-example @@ -10,7 +10,7 @@ APPLICATION=../ ### Data Path: # For all storage systems. -DATA_SAVE_PATH=../data +DATA_SAVE_PATH=~/.laradock/data ### PHP version # Applies to the Workspace and PHP-FPM containers (Does not apply to HHVM) @@ -27,33 +27,46 @@ PHP_INTERPRETER=php-fpm # Containers Customization ############################ -### WORKSPACE Container ################################################################################################ +### WORKSPACE ########################################################################################################## WORKSPACE_INSTALL_XDEBUG=false +WORKSPACE_INSTALL_LDAP=false WORKSPACE_INSTALL_SOAP=false WORKSPACE_INSTALL_MONGO=false +WORKSPACE_INSTALL_PHPREDIS=false +WORKSPACE_INSTALL_MSSQL=false WORKSPACE_INSTALL_NODE=false WORKSPACE_INSTALL_YARN=false WORKSPACE_INSTALL_DRUSH=false -WORKSPACE_INSTALL_AEROSPIKE_EXTENSION=false -WORKSPACE_INSTALL_INSTALL_V8JS_EXTENSION=false +WORKSPACE_INSTALL_DRUPAL_CONSOLE=false +WORKSPACE_INSTALL_AEROSPIKE=false +WORKSPACE_INSTALL_V8JS=false WORKSPACE_COMPOSER_GLOBAL_INSTALL=false WORKSPACE_INSTALL_WORKSPACE_SSH=false WORKSPACE_INSTALL_LARAVEL_ENVOY=false +WORKSPACE_INSTALL_LARAVEL_INSTALLER=false WORKSPACE_INSTALL_DEPLOYER=false WORKSPACE_INSTALL_LINUXBREW=false WORKSPACE_INSTALL_MC=false +WORKSPACE_INSTALL_SYMFONY=false +WORKSPACE_INSTALL_PYTHON=false +WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false +WORKSPACE_INSTALL_IMAGEMAGICK=false +WORKSPACE_INSTALL_TERRAFORM=false +WORKSPACE_INSTALL_DUSK_DEPS=false WORKSPACE_PUID=1000 WORKSPACE_PGID=1000 +WORKSPACE_CHROME_DRIVER_VERSION=2.32 WORKSPACE_NODE_VERSION=stable WORKSPACE_YARN_VERSION=latest WORKSPACE_TIMEZONE=UTC WORKSPACE_SSH_PORT=2222 -### PHP_FPM Container ################################################################################################## +### PHP_FPM ############################################################################################################ PHP_FPM_INSTALL_XDEBUG=false PHP_FPM_INSTALL_MONGO=false +PHP_FPM_INSTALL_MSSQL=false PHP_FPM_INSTALL_SOAP=false PHP_FPM_INSTALL_ZIP_ARCHIVE=false PHP_FPM_INSTALL_BCMATH=false @@ -61,75 +74,81 @@ PHP_FPM_INSTALL_PHPREDIS=false PHP_FPM_INSTALL_MEMCACHED=false PHP_FPM_INSTALL_OPCACHE=false PHP_FPM_INSTALL_EXIF=false -PHP_FPM_INSTALL_AEROSPIKE_EXTENSION=false +PHP_FPM_INSTALL_AEROSPIKE=false PHP_FPM_INSTALL_MYSQLI=false PHP_FPM_INSTALL_TOKENIZER=false PHP_FPM_INSTALL_INTL=false PHP_FPM_INSTALL_GHOSTSCRIPT=false +PHP_FPM_INSTALL_LDAP=false +PHP_FPM_INSTALL_SWOOLE=false +PHP_FPM_INSTALL_IMAGE_OPTIMIZERS=false +PHP_FPM_INSTALL_IMAGEMAGICK=false -### NGINX Container #################################################################################################### +### NGINX ############################################################################################################## NGINX_HOST_HTTP_PORT=80 NGINX_HOST_HTTPS_PORT=443 NGINX_HOST_LOG_PATH=./logs/nginx/ NGINX_SITES_PATH=./nginx/sites/ +NGINX_PHP_UPSTREAM_CONTAINER=php-fpm +NGINX_PHP_UPSTREAM_PORT=9000 -### BLACKFIRE Container ################################################################################################ -# Create an account on blackfire.io -# Don't enable blackfire and xDebug at the same time -# see https://blackfire.io/docs/24-days/06-installation#install-probe-debian -INSTALL_BLACKFIRE=false -BLACKFIRE_CLIENT_ID= -BLACKFIRE_CLIENT_TOKEN= -BLACKFIRE_SERVER_ID= -BLACKFIRE_SERVER_TOKEN= - -### APACHE Container ################################################################################################### +### APACHE ############################################################################################################# APACHE_HOST_HTTP_PORT=80 APACHE_HOST_HTTPS_PORT=443 -APACHE2_PHP_SOCKET=php-fpm:9000 APACHE_HOST_LOG_PATH=./logs/apache2 -PHP_SOCKET=php-fpm:9000 +APACHE_SITES_PATH=./apache2/sites +APACHE_PHP_UPSTREAM_CONTAINER=php-fpm +APACHE_PHP_UPSTREAM_PORT=9000 +APACHE_PHP_UPSTREAM_TIMEOUT=60 -### MYSQL Container #################################################################################################### +### MYSQL ############################################################################################################## +MYSQL_VERSION=8.0 MYSQL_DATABASE=default MYSQL_USER=default MYSQL_PASSWORD=secret MYSQL_PORT=3306 MYSQL_ROOT_PASSWORD=root +MYSQL_ENTRYPOINT_INITDB=./mysql/docker-entrypoint-initdb.d -### Percona Container ################################################################################################## +### REDIS ############################################################################################################## + +REDIS_PORT=6379 + +### Percona ############################################################################################################ PERCONA_DATABASE=homestead PERCONA_USER=homestead PERCONA_PASSWORD=secret PERCONA_PORT=3306 PERCONA_ROOT_PASSWORD=root +PERCONA_ENTRYPOINT_INITDB=./percona/docker-entrypoint-initdb.d -### MSSQL Container #################################################################################################### +### MSSQL ############################################################################################################## MSSQL_DATABASE=homestead MSSQL_PASSWORD=yourStrong(!)Password MSSQL_PORT=1433 -### MARIADB Container ################################################################################################## +### MARIADB ############################################################################################################ MARIADB_DATABASE=default MARIADB_USER=default MARIADB_PASSWORD=secret MARIADB_PORT=3306 MARIADB_ROOT_PASSWORD=root +MARIADB_ENTRYPOINT_INITDB=./mariadb/docker-entrypoint-initdb.d -### POSTGRES Container ################################################################################################# +### POSTGRES ########################################################################################################### POSTGRES_DB=default POSTGRES_USER=default POSTGRES_PASSWORD=secret POSTGRES_PORT=5432 -### RABBITMQ Container ################################################################################################# +### RABBITMQ ########################################################################################################### RABBITMQ_NODE_HOST_PORT=5672 RABBITMQ_MANAGEMENT_HTTP_HOST_PORT=15672 @@ -137,12 +156,16 @@ RABBITMQ_MANAGEMENT_HTTPS_HOST_PORT=15671 RABBITMQ_DEFAULT_USER=guest RABBITMQ_DEFAULT_PASS=guest -### ELASTICSEARCH Container ############################################################################################ +### ELASTICSEARCH ###################################################################################################### ELASTICSEARCH_HOST_HTTP_PORT=9200 ELASTICSEARCH_HOST_TRANSPORT_PORT=9300 -### MEMCACHED Container ################################################################################################ +### KIBANA ############################################################################################################# + +KIBANA_HTTP_PORT=5601 + +### MEMCACHED ########################################################################################################## MEMCACHED_HOST_PORT=11211 @@ -152,23 +175,24 @@ BEANSTALKD_CONSOLE_BUILD_PATH=./beanstalkd-console BEANSTALKD_CONSOLE_CONTAINER_NAME=beanstalkd-console BEANSTALKD_CONSOLE_HOST_PORT=2080 -### BEANSTALKD Container ############################################################################################### +### BEANSTALKD ######################################################################################################### BEANSTALKD_HOST_PORT=11300 -### SELENIUM Container ################################################################################################# +### SELENIUM ########################################################################################################### SELENIUM_PORT=4444 -### MINIO Container #################################################################################################### +### MINIO ############################################################################################################## MINIO_PORT=9000 -### ADMINER Container ################################################################################################## +### ADMINER ############################################################################################################ -ADM_PORT=88 +ADM_PORT=8080 +ADM_INSTALL_MSSQL=false -### PHP MY ADMIN Container ############################################################################################# +### PHP MY ADMIN ####################################################################################################### # Accepted values: mariadb - mysql @@ -179,16 +203,16 @@ PMA_DB_ENGINE=mysql PMA_USER=default PMA_PASSWORD=secret PMA_ROOT_PASSWORD=secret -PMA_PORT=88 +PMA_PORT=8080 -### VARNISH Container ################################################################################################## +### VARNISH ############################################################################################################ VARNISH_CONFIG=/etc/varnish/default.vcl VARNISH_PORT=8080 VARNISH_BACKEND_PORT=8888 VARNISHD_PARAMS=-p default_ttl=3600 -p default_grace=3600 -### Varnish Container ################################################################################################## +### Varnish ############################################################################################################ # Proxy 1 @@ -202,24 +226,67 @@ VARNISH_PROXY2_CACHE_SIZE=128m VARNISH_PROXY2_BACKEND_HOST=workspace VARNISH_PROXY2_SERVER=SERVER2 -### HAPROXY Container ################################################################################################## +### HAPROXY ############################################################################################################ HAPROXY_HOST_HTTP_PORT=8085 -### JENKINS Container ################################################################################################## +### JENKINS ############################################################################################################ JENKINS_HOST_HTTP_PORT=8090 JENKINS_HOST_SLAVE_AGENT_PORT=50000 JENKINS_HOME=./jenkins/jenkins_home +### BLACKFIRE ########################################################################################################## + +# Create an account on blackfire.io. Don't enable blackfire and xDebug at the same time. +# visit https://blackfire.io/docs/24-days/06-installation#install-probe-debian for more info. + +INSTALL_BLACKFIRE=false +BLACKFIRE_CLIENT_ID= +BLACKFIRE_CLIENT_TOKEN= +BLACKFIRE_SERVER_ID= +BLACKFIRE_SERVER_TOKEN= + +### AEROSPIKE ########################################################################################################## + +AEROSPIKE_SERVICE_PORT=3000 +AEROSPIKE_FABRIC_PORT=3001 +AEROSPIKE_HEARTBEAT_PORT=3002 +AEROSPIKE_INFO_PORT=3003 + +### RETHINKDB ########################################################################################################## + +RETHINKDB_PORT=8090 + +### MONGODB ############################################################################################################ + +MONGODB_PORT=27017 + +### CADDY ############################################################################################################## + +CADDY_HOST_HTTP_PORT=80 +CADDY_HOST_HTTPS_PORT=443 +CADDY_HOST_LOG_PATH=./logs/caddy +CADDY_CUSTOM_CADDYFILE=./caddy/Caddyfile + +### LARAVEL ECHO SERVER ################################################################################################ + +LARAVEL_ECHO_SERVER_PORT=6001 + +### DOCKER-SYNC ################################################################################################ + +# osx: 'native_osx' (default) +# windows: 'unison' +# linux: docker-sync not required + +DOCKER_SYNC_STRATEGY=native_osx + ##### TO BE CONTINUE ................................. # ......... Missing: neo4j mongo rethinkdb redis aerospike pgadmin... # ......... # ......... - - ############################ # Miscellaneous ############################ diff --git a/jenkins/install-plugins.sh b/jenkins/install-plugins.sh old mode 100644 new mode 100755 diff --git a/jenkins/jenkins-support b/jenkins/jenkins-support old mode 100644 new mode 100755 diff --git a/jenkins/jenkins.sh b/jenkins/jenkins.sh old mode 100644 new mode 100755 diff --git a/jenkins/plugins.sh b/jenkins/plugins.sh old mode 100644 new mode 100755 diff --git a/jenkins/publish.sh b/jenkins/publish.sh old mode 100644 new mode 100755 diff --git a/jenkins/update-official-library.sh b/jenkins/update-official-library.sh old mode 100644 new mode 100755 diff --git a/kibana/Dockerfile b/kibana/Dockerfile new file mode 100644 index 00000000..572f15ac --- /dev/null +++ b/kibana/Dockerfile @@ -0,0 +1,3 @@ +FROM docker.elastic.co/kibana/kibana:5.4.1 + +EXPOSE 5601 diff --git a/laravel-echo-server/Dockerfile b/laravel-echo-server/Dockerfile new file mode 100644 index 00000000..5074a1f8 --- /dev/null +++ b/laravel-echo-server/Dockerfile @@ -0,0 +1,15 @@ +FROM node:argon + +# Create app directory +RUN mkdir -p /usr/src/app +WORKDIR /usr/src/app + +# Install app dependencies +COPY package.json /usr/src/app/ +RUN npm install + +# Bundle app source +COPY laravel-echo-server.json /usr/src/app/laravel-echo-server.json + +EXPOSE 3000 +CMD [ "npm", "start" ] \ No newline at end of file diff --git a/laravel-echo-server/laravel-echo-server.json b/laravel-echo-server/laravel-echo-server.json new file mode 100644 index 00000000..0a98ef90 --- /dev/null +++ b/laravel-echo-server/laravel-echo-server.json @@ -0,0 +1,19 @@ +{ + "authHost": "localhost", + "authEndpoint": "/broadcasting/auth", + "clients": [], + "database": "redis", + "databaseConfig": { + "redis": { + "port": "6379", + "host": "redis" + } + }, + "devMode": true, + "host": null, + "port": "6001", + "protocol": "http", + "socketio": {}, + "sslCertPath": "", + "sslKeyPath": "" +} \ No newline at end of file diff --git a/laravel-echo-server/package.json b/laravel-echo-server/package.json new file mode 100644 index 00000000..2784a039 --- /dev/null +++ b/laravel-echo-server/package.json @@ -0,0 +1,12 @@ +{ + "name": "laravel-echo-server-docker", + "description": "Docker container for running laravel-echo-server", + "version": "0.0.1", + "license": "MIT", + "dependencies": { + "laravel-echo-server": "^1.2.8" + }, + "scripts": { + "start": "laravel-echo-server start" + } +} \ No newline at end of file diff --git a/mariadb/docker-entrypoint-initdb.d/.gitignore b/mariadb/docker-entrypoint-initdb.d/.gitignore new file mode 100644 index 00000000..d1b811b7 --- /dev/null +++ b/mariadb/docker-entrypoint-initdb.d/.gitignore @@ -0,0 +1 @@ +*.sql diff --git a/mariadb/docker-entrypoint-initdb.d/createdb.sql.example b/mariadb/docker-entrypoint-initdb.d/createdb.sql.example new file mode 100644 index 00000000..243041cf --- /dev/null +++ b/mariadb/docker-entrypoint-initdb.d/createdb.sql.example @@ -0,0 +1,28 @@ +### +### Copy createdb.sql.example to createdb.sql +### then uncomment then set database name and username to create you need databases +# +# example: .env MYSQL_USER=appuser and need db name is myshop_db +# +# CREATE DATABASE IF NOT EXISTS `myshop_db` ; +# GRANT ALL ON `myshop_db`.* TO 'appuser'@'%' ; +# +### +### this sql script is auto run when mariadb container start and $DATA_SAVE_PATH/mariadb not exists. +### +### if your $DATA_SAVE_PATH/mariadb is exists and you do not want to delete it, you can run by manual execution: +### +### docker-compose exec mariadb bash +### mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql +### + +#CREATE DATABASE IF NOT EXISTS `dev_db_1` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_1`.* TO 'default'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_2` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_2`.* TO 'default'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_3` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_3`.* TO 'default'@'%' ; + +FLUSH PRIVILEGES ; diff --git a/mssql/create_table.sh b/mssql/create_table.sh index f0c1a7c6..9fe5214c 100644 --- a/mssql/create_table.sh +++ b/mssql/create_table.sh @@ -1,5 +1,5 @@ #wait for the SQL Server to come up -sleep 45s +sleep 45 #run the setup script to create the DB and the schema in the DB /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P $SA_PASSWORD -d master -i setup.sql \ No newline at end of file diff --git a/mssql/entrypoint.sh b/mssql/entrypoint.sh index e3835130..062293b8 100644 --- a/mssql/entrypoint.sh +++ b/mssql/entrypoint.sh @@ -1,2 +1,2 @@ #start SQL Server, start the script to create the DB and import the data, start the app -/opt/mssql/bin/sqlservr.sh & /usr/src/app/create_table.sh & tail -f /dev/null \ No newline at end of file +/opt/mssql/bin/sqlservr & /usr/src/app/create_table.sh & tail -f /dev/null diff --git a/mysql/Dockerfile b/mysql/Dockerfile index e494b651..5eb6c40d 100644 --- a/mysql/Dockerfile +++ b/mysql/Dockerfile @@ -1,7 +1,16 @@ -FROM mysql:5.7 +ARG MYSQL_VERSION=8.0 +FROM mysql:${MYSQL_VERSION} MAINTAINER Mahmoud Zalt +##################################### +# Set Timezone +##################################### + +ARG TZ=UTC +ENV TZ ${TZ} +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone + RUN chown -R mysql:root /var/lib/mysql/ ADD my.cnf /etc/mysql/conf.d/my.cnf diff --git a/mysql/docker-entrypoint-initdb.d/.gitignore b/mysql/docker-entrypoint-initdb.d/.gitignore new file mode 100644 index 00000000..d1b811b7 --- /dev/null +++ b/mysql/docker-entrypoint-initdb.d/.gitignore @@ -0,0 +1 @@ +*.sql diff --git a/mysql/docker-entrypoint-initdb.d/createdb.sql.example b/mysql/docker-entrypoint-initdb.d/createdb.sql.example new file mode 100644 index 00000000..55679859 --- /dev/null +++ b/mysql/docker-entrypoint-initdb.d/createdb.sql.example @@ -0,0 +1,28 @@ +# +# Copy createdb.sql.example to createdb.sql +# then uncomment then set database name and username to create you need databases +# +# example: .env MYSQL_USER=appuser and need db name is myshop_db +# +# CREATE DATABASE IF NOT EXISTS `myshop_db` ; +# GRANT ALL ON `myshop_db`.* TO 'appuser'@'%' ; +# +# +# this sql script will auto run when the mysql container starts and the $DATA_SAVE_PATH/mysql not found. +# +# if your $DATA_SAVE_PATH/mysql exists and you do not want to delete it, you can run by manual execution: +# +# docker-compose exec mysql bash +# mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql +# + +#CREATE DATABASE IF NOT EXISTS `dev_db_1` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_1`.* TO 'default'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_2` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_2`.* TO 'default'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_3` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_3`.* TO 'default'@'%' ; + +FLUSH PRIVILEGES ; diff --git a/mysql/my.cnf b/mysql/my.cnf index 06595ca5..bee678ab 100644 --- a/mysql/my.cnf +++ b/mysql/my.cnf @@ -7,3 +7,4 @@ [mysqld] sql-mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" +character-set-server=utf8 diff --git a/nginx/Dockerfile b/nginx/Dockerfile index e23be3d5..4a491b02 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -4,17 +4,17 @@ MAINTAINER Mahmoud Zalt ADD nginx.conf /etc/nginx/ -ARG PHP_UPSTREAM=php-fpm - -# fix a problem--#397, change application source from dl-cdn.alpinelinux.org to aliyun source. -RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories +ARG PHP_UPSTREAM_CONTAINER=php-fpm +ARG PHP_UPSTREAM_PORT=9000 RUN apk update \ && apk upgrade \ && apk add --no-cache bash \ - && adduser -D -H -u 1000 -s /bin/bash www-data \ - && rm /etc/nginx/conf.d/default.conf \ - && echo "upstream php-upstream { server ${PHP_UPSTREAM}:9000; }" > /etc/nginx/conf.d/upstream.conf + && adduser -D -H -u 1000 -s /bin/bash www-data + +# Set upstream conf and remove the default conf +RUN echo "upstream php-upstream { server ${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}; }" > /etc/nginx/conf.d/upstream.conf \ + && rm /etc/nginx/conf.d/default.conf CMD ["nginx"] diff --git a/nginx/nginx.conf b/nginx/nginx.conf index c627c4e1..e747e983 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -28,7 +28,7 @@ http { ssl_ciphers 'ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS'; include /etc/nginx/conf.d/*.conf; - include /etc/nginx/sites-available/*; + include /etc/nginx/sites-available/*.conf; open_file_cache off; # Disabled for issue 619 charset UTF-8; } diff --git a/nginx/sites/project-2.conf.example b/nginx/sites/app.conf.example similarity index 78% rename from nginx/sites/project-2.conf.example rename to nginx/sites/app.conf.example index 590c1a55..c28eec30 100644 --- a/nginx/sites/project-2.conf.example +++ b/nginx/sites/app.conf.example @@ -3,8 +3,8 @@ server { listen 80; listen [::]:80; - server_name project-2.dev; - root /var/www/project-2/public; + server_name app.dev; + root /var/www/app; index index.php index.html index.htm; location / { @@ -15,7 +15,7 @@ server { try_files $uri /index.php =404; fastcgi_pass php-upstream; fastcgi_index index.php; - fastcgi_buffers 16 16k; + fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; @@ -24,12 +24,12 @@ server { location ~ /\.ht { deny all; } - + location /.well-known/acme-challenge/ { root /var/www/letsencrypt/; log_not_found off; } + + error_log /var/log/nginx/app_error.log; + access_log /var/log/nginx/app_access.log; } - - - diff --git a/nginx/sites/default.conf b/nginx/sites/default.conf index bb7525ca..75435a6e 100644 --- a/nginx/sites/default.conf +++ b/nginx/sites/default.conf @@ -3,7 +3,7 @@ server { listen 80 default_server; listen [::]:80 default_server ipv6only=on; - server_name locahost; + server_name localhost; root /var/www/public; index index.php index.html index.htm; @@ -15,7 +15,7 @@ server { try_files $uri /index.php =404; fastcgi_pass php-upstream; fastcgi_index index.php; - fastcgi_buffers 16 16k; + fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; @@ -24,12 +24,9 @@ server { location ~ /\.ht { deny all; } - + location /.well-known/acme-challenge/ { root /var/www/letsencrypt/; log_not_found off; } } - - - diff --git a/nginx/sites/project-1.conf.example b/nginx/sites/laravel.conf.example similarity index 75% rename from nginx/sites/project-1.conf.example rename to nginx/sites/laravel.conf.example index 011213a6..dd9a2ae7 100644 --- a/nginx/sites/project-1.conf.example +++ b/nginx/sites/laravel.conf.example @@ -3,8 +3,8 @@ server { listen 80; listen [::]:80; - server_name project-1.dev; - root /var/www/project-1/public; + server_name laravel.dev; + root /var/www/laravel/public; index index.php index.html index.htm; location / { @@ -15,7 +15,7 @@ server { try_files $uri /index.php =404; fastcgi_pass php-upstream; fastcgi_index index.php; - fastcgi_buffers 16 16k; + fastcgi_buffers 16 16k; fastcgi_buffer_size 32k; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; @@ -24,12 +24,12 @@ server { location ~ /\.ht { deny all; } - + location /.well-known/acme-challenge/ { root /var/www/letsencrypt/; log_not_found off; } + + error_log /var/log/nginx/laravel_error.log; + access_log /var/log/nginx/laravel_access.log; } - - - diff --git a/nginx/sites/symfony.conf.example b/nginx/sites/symfony.conf.example new file mode 100644 index 00000000..8d518fee --- /dev/null +++ b/nginx/sites/symfony.conf.example @@ -0,0 +1,28 @@ +server { + + listen 80; + listen [::]:80; + + server_name symfony.dev; + root /var/www/projects/symfony/web; + index index.php index.html index.htm; + + location / { + try_files $uri @rewriteapp; + } + + location @rewriteapp { + rewrite ^(.*)$ /app.php/$1 last; + } + + location ~ ^/(app|app_dev|config)\.php(/|$) { + fastcgi_pass php-upstream; + fastcgi_split_path_info ^(.+\.php)(/.*)$; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_param HTTPS off; + } + + error_log /var/log/nginx/symfony_error.log; + access_log /var/log/nginx/symfony_access.log; +} diff --git a/percona/docker-entrypoint-initdb.d/.gitignore b/percona/docker-entrypoint-initdb.d/.gitignore new file mode 100644 index 00000000..d1b811b7 --- /dev/null +++ b/percona/docker-entrypoint-initdb.d/.gitignore @@ -0,0 +1 @@ +*.sql diff --git a/percona/docker-entrypoint-initdb.d/createdb.sql.example b/percona/docker-entrypoint-initdb.d/createdb.sql.example new file mode 100644 index 00000000..10b579cb --- /dev/null +++ b/percona/docker-entrypoint-initdb.d/createdb.sql.example @@ -0,0 +1,28 @@ +### +### Copy createdb.sql.example to createdb.sql +### then uncomment then set database name and username to create you need databases +# +# example: .env MYSQL_USER=appuser and need db name is myshop_db +# +# CREATE DATABASE IF NOT EXISTS `myshop_db` ; +# GRANT ALL ON `myshop_db`.* TO 'appuser'@'%' ; +# +### +### this sql script is auto run when percona container start and $DATA_SAVE_PATH/percona not exists. +### +### if your $DATA_SAVE_PATH/percona is exists and you do not want to delete it, you can run by manual execution: +### +### docker-compose exec percona bash +### mysql -u root -p < /docker-entrypoint-initdb.d/createdb.sql +### + +#CREATE DATABASE IF NOT EXISTS `dev_db_1` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_1`.* TO 'homestead'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_2` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_2`.* TO 'homestead'@'%' ; + +#CREATE DATABASE IF NOT EXISTS `dev_db_3` COLLATE 'utf8_general_ci' ; +#GRANT ALL ON `dev_db_3`.* TO 'homestead'@'%' ; + +FLUSH PRIVILEGES ; diff --git a/pgadmin/Dockerfile b/pgadmin/Dockerfile index f92dafa6..5836801f 100644 --- a/pgadmin/Dockerfile +++ b/pgadmin/Dockerfile @@ -1,5 +1,10 @@ FROM fenglc/pgadmin4 -ADD pg /usr/bin + MAINTAINER Huadong Zuo +# user: pgadmin4@pgadmin.org +# password: admin +# pg_dump in "/usr/bin" +# backup in "/var/lib/pgadmin4/data/storage/pgadmin4/" + EXPOSE 5050 diff --git a/pgadmin/pg/pg_dump b/pgadmin/pg/pg_dump deleted file mode 100644 index 9692a847..00000000 --- a/pgadmin/pg/pg_dump +++ /dev/null @@ -1,281 +0,0 @@ -#!/usr/bin/perl -w -# Call a PostgreSQL client program with the version, cluster and default -# database specified in ~/.postgresqlrc or -# /etc/postgresql-common/user_clusters. -# -# (C) 2005-2009 Martin Pitt -# (C) 2013-2014 Christoph Berg -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -use strict; -use POSIX; -use PgCommon; - -my ($version, $cluster, $db, $port, $host); - -$host = $ENV{'PGHOST'}; - -# Check for PGCLUSTER in %ENV -if (defined $ENV{'PGCLUSTER'}) { - ($version, $cluster) = split ('/', $ENV{'PGCLUSTER'}, 2); - error 'Invalid version specified with $PGCLUSTER' unless version_exists $version; - error 'No cluster specified with $PGCLUSTER' unless $cluster; -} - -# Check for --cluster argument and filter it out, and check if --port is specified -my $port_specified = exists $ENV{'PGPORT'}; -for (my $i = 0; $i <= $#ARGV; ++$i) { - last if $ARGV[$i] eq '--'; - - if ($ARGV[$i] eq '--cluster') { - error '--cluster option needs an argument (/)' if ($i >= $#ARGV); - - ($version, $cluster) = split ('/', $ARGV[$i+1], 2); - $host = undef; # --cluster overrides $PGHOST env var - error 'Invalid version specified with --cluster' unless version_exists $version; - error 'No cluster specified with --cluster' unless $cluster; - - splice @ARGV, $i, 2; - last; - } elsif ($ARGV[$i] =~ /^--cluster=(\d+\.?\d)\/(.+)/) { - ($version, $cluster) = ($1, $2); - $host = undef; # --cluster overrides $PGHOST env var - error 'Invalid version specified with --cluster' unless version_exists $version; - error 'No cluster specified with --cluster' unless $cluster; - - splice @ARGV, $i, 1; - last; - } - - $port_specified = 1 if $ARGV[$i] =~ /^--port\b/ || $ARGV[$i] =~ /^-\w*p\w*\d*$/; - $host = '.from.commandline' if $ARGV[$i] =~ /^--host\b/ || $ARGV[$i] =~ /^-\w*h\w*$/; -} - -# Determine $version, $cluster, $db, $port from map files -($version, $cluster, $db) = user_cluster_map() unless $cluster; - -# check if we have a network cluster -if (!$host && $cluster && !cluster_exists $version, $cluster) { - if ($cluster =~ /^(\S+):(\d*)$/) { - $host = $1; - $port = $2 || 5432; - } else { - error 'Specified cluster does not exist locally and does not specify a remote cluster'; - } -} - -if (!$host && $cluster) { - $port = get_cluster_port($version, $cluster); - - unless ($ENV{'PGHOST'}) { - # default to cluster specific Unix socket directory - $ENV{'PGHOST'} = get_cluster_socketdir $version, $cluster; - } -} - -$ENV{'PGSYSCONFDIR'} = '/etc/postgresql-common' if !$ENV{'PGSYSCONFDIR'}; -$ENV{'PGPORT'} = $port if $port && !$ENV{'PGPORT'}; -$ENV{'PGDATABASE'} = $db if $db && !$ENV{'PGDATABASE'}; -$ENV{'PGHOST'} = $host if $host && $host ne '.from.commandline'; - -# if we only have a port, but no version here, use the latest version -# TODO: this could be improved by better argument parsing and mapping back the -# port to a cluster version/name -if (!$version and $port_specified) { - $version = get_newest_version; -} - -unless ($version) { - if (get_versions) { - error 'No existing local cluster is suitable as a default target. Please see man pg_wrapper(1) how to specify one.'; - } else { - error 'You must install at least one postgresql-client- package.'; - } -} - -error 'Invalid PostgreSQL cluster version' unless -d "$PgCommon::binroot$version"; -my $cmdname = (split '/', $0)[-1]; -my $cmd; - -# for psql we always want the latest version, as this is backwards compatible -# to every major version that that we support -if ($cmdname eq 'pg_wrapper') { - error "pg_wrapper should not be called directly, but through a symlink"; -} elsif ($cmdname =~ /^(psql|pg_archivecleanup|pg_isready)$/) { - $cmd = get_program_path ($cmdname, get_newest_version); -} else { - $cmd = get_program_path ($cmdname, $version); -} - -# libreadline is a lot better than libedit, so prefer that -if ($cmdname eq 'psql' and not $PgCommon::rpm) { - my @readlines; - # non-multiarch path - @readlines = sort(); - - unless (@readlines) { - # get multiarch dir for our architecture - if (open PS, '-|', '/usr/bin/ldd', $cmd) { - my $out; - read PS, $out, 10000; - close PS; - if ($out =~ m!/libreadline.so!) { - # already linked against libreadline - @readlines = (); - } - else - { - my ($lib_path) = $out =~ m!(/lib/.*)/libedit.so!; - - @readlines = sort(<$lib_path/libreadline.so.?>); - } - } - } - - if (@readlines) { - $ENV{'LD_PRELOAD'} = ($ENV{'LD_PRELOAD'} or '') . ':' . $readlines[-1]; - } -} - -error "pg_wrapper: $cmdname was not found in $PgCommon::binroot$version/bin" unless $cmd; -unshift @ARGV, $cmd; -exec @ARGV; - -__END__ - -=head1 NAME - -pg_wrapper - wrapper for PostgreSQL client commands - -=head1 SYNOPSIS - -I [B<--cluster> I/I] [...] - -(I: B, B, B, and all other client -programs installed in CIC). - -=head1 DESCRIPTION - -This program is run only as a link to names which correspond to PostgreSQL -programs in CIC. It determines the -configured cluster and database for the user and calls the appropriate version -of the desired program to connect to that cluster and database, supplying any -specified options to that command. - -The target cluster is selected by the following means, in descending order of -precedence: - -=over - -=item 1. - -explicit specification with the B<--host> option - -=item 2. - -explicit specification with the B<--cluster> option - -=item 3. - -if the B environment variable is set, no further cluster selection is -performed. The default PostgreSQL version and port number (from the command -line, the environment variable B, or default 5432) will be used. - -=item 4. - -explicit specification with the B environment variable - -=item 5. - -matching entry in C<~/.postgresqlrc> (see L), if that -file exists - -=item 6. - -matching entry in C (see -L), if that file exists - -=item 7. - -If only one local cluster exists, that one will be selected. - -=item 8. - -If several local clusters exist, the one listening on the default port 5432 -will be selected. - -=back - -If none of these rules match, B aborts with an error. - -For B, B, and B, B will always use the binary from -the newest PostgreSQL version installed, as these are downwards compatible. - -=head1 OPTIONS - -=over - -=item B<--cluster> IBI - -I is either the name of a local cluster, or takes the form -I:I for a remote cluster. If I is left empty (i. e. you just -specify I), it defaults to 5432. - -=back - -=head1 ENVIRONMENT - -=over - -=item B - -If C<$PGCLUSTER> is set, its value (of the form I/I) -specifies the desired cluster, similar to the B<--cluster> option. However, if -B<--cluster> is specified, it overrides the value of C<$PGCLUSTER>. - -=item B - -This specifies an alternative base directory for cluster configurations. This -is usually C, but for testing/development purposes you can -change this to point to e. g. your home directory, so that you can use the -postgresql-common tools without root privileges. - -=item B - -This is the location of PostgreSQL's and postgresql-common's global -configuration (e. g. C, L). The default is -C. - -=back - -=head1 FILES - -=over - -=item C - -stores the default cluster and database for users and groups as set by -the administrators. - -=item C<$HOME/.postgresqlrc> - -stores defaults set by the user himself. - -=back - -=head1 SEE ALSO - -L, L - -=head1 AUTHOR - -Martin Pitt Lmpitt@debian.orgE> diff --git a/pgadmin/pg/pg_restore b/pgadmin/pg/pg_restore deleted file mode 100644 index 9692a847..00000000 --- a/pgadmin/pg/pg_restore +++ /dev/null @@ -1,281 +0,0 @@ -#!/usr/bin/perl -w -# Call a PostgreSQL client program with the version, cluster and default -# database specified in ~/.postgresqlrc or -# /etc/postgresql-common/user_clusters. -# -# (C) 2005-2009 Martin Pitt -# (C) 2013-2014 Christoph Berg -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -use strict; -use POSIX; -use PgCommon; - -my ($version, $cluster, $db, $port, $host); - -$host = $ENV{'PGHOST'}; - -# Check for PGCLUSTER in %ENV -if (defined $ENV{'PGCLUSTER'}) { - ($version, $cluster) = split ('/', $ENV{'PGCLUSTER'}, 2); - error 'Invalid version specified with $PGCLUSTER' unless version_exists $version; - error 'No cluster specified with $PGCLUSTER' unless $cluster; -} - -# Check for --cluster argument and filter it out, and check if --port is specified -my $port_specified = exists $ENV{'PGPORT'}; -for (my $i = 0; $i <= $#ARGV; ++$i) { - last if $ARGV[$i] eq '--'; - - if ($ARGV[$i] eq '--cluster') { - error '--cluster option needs an argument (/)' if ($i >= $#ARGV); - - ($version, $cluster) = split ('/', $ARGV[$i+1], 2); - $host = undef; # --cluster overrides $PGHOST env var - error 'Invalid version specified with --cluster' unless version_exists $version; - error 'No cluster specified with --cluster' unless $cluster; - - splice @ARGV, $i, 2; - last; - } elsif ($ARGV[$i] =~ /^--cluster=(\d+\.?\d)\/(.+)/) { - ($version, $cluster) = ($1, $2); - $host = undef; # --cluster overrides $PGHOST env var - error 'Invalid version specified with --cluster' unless version_exists $version; - error 'No cluster specified with --cluster' unless $cluster; - - splice @ARGV, $i, 1; - last; - } - - $port_specified = 1 if $ARGV[$i] =~ /^--port\b/ || $ARGV[$i] =~ /^-\w*p\w*\d*$/; - $host = '.from.commandline' if $ARGV[$i] =~ /^--host\b/ || $ARGV[$i] =~ /^-\w*h\w*$/; -} - -# Determine $version, $cluster, $db, $port from map files -($version, $cluster, $db) = user_cluster_map() unless $cluster; - -# check if we have a network cluster -if (!$host && $cluster && !cluster_exists $version, $cluster) { - if ($cluster =~ /^(\S+):(\d*)$/) { - $host = $1; - $port = $2 || 5432; - } else { - error 'Specified cluster does not exist locally and does not specify a remote cluster'; - } -} - -if (!$host && $cluster) { - $port = get_cluster_port($version, $cluster); - - unless ($ENV{'PGHOST'}) { - # default to cluster specific Unix socket directory - $ENV{'PGHOST'} = get_cluster_socketdir $version, $cluster; - } -} - -$ENV{'PGSYSCONFDIR'} = '/etc/postgresql-common' if !$ENV{'PGSYSCONFDIR'}; -$ENV{'PGPORT'} = $port if $port && !$ENV{'PGPORT'}; -$ENV{'PGDATABASE'} = $db if $db && !$ENV{'PGDATABASE'}; -$ENV{'PGHOST'} = $host if $host && $host ne '.from.commandline'; - -# if we only have a port, but no version here, use the latest version -# TODO: this could be improved by better argument parsing and mapping back the -# port to a cluster version/name -if (!$version and $port_specified) { - $version = get_newest_version; -} - -unless ($version) { - if (get_versions) { - error 'No existing local cluster is suitable as a default target. Please see man pg_wrapper(1) how to specify one.'; - } else { - error 'You must install at least one postgresql-client- package.'; - } -} - -error 'Invalid PostgreSQL cluster version' unless -d "$PgCommon::binroot$version"; -my $cmdname = (split '/', $0)[-1]; -my $cmd; - -# for psql we always want the latest version, as this is backwards compatible -# to every major version that that we support -if ($cmdname eq 'pg_wrapper') { - error "pg_wrapper should not be called directly, but through a symlink"; -} elsif ($cmdname =~ /^(psql|pg_archivecleanup|pg_isready)$/) { - $cmd = get_program_path ($cmdname, get_newest_version); -} else { - $cmd = get_program_path ($cmdname, $version); -} - -# libreadline is a lot better than libedit, so prefer that -if ($cmdname eq 'psql' and not $PgCommon::rpm) { - my @readlines; - # non-multiarch path - @readlines = sort(); - - unless (@readlines) { - # get multiarch dir for our architecture - if (open PS, '-|', '/usr/bin/ldd', $cmd) { - my $out; - read PS, $out, 10000; - close PS; - if ($out =~ m!/libreadline.so!) { - # already linked against libreadline - @readlines = (); - } - else - { - my ($lib_path) = $out =~ m!(/lib/.*)/libedit.so!; - - @readlines = sort(<$lib_path/libreadline.so.?>); - } - } - } - - if (@readlines) { - $ENV{'LD_PRELOAD'} = ($ENV{'LD_PRELOAD'} or '') . ':' . $readlines[-1]; - } -} - -error "pg_wrapper: $cmdname was not found in $PgCommon::binroot$version/bin" unless $cmd; -unshift @ARGV, $cmd; -exec @ARGV; - -__END__ - -=head1 NAME - -pg_wrapper - wrapper for PostgreSQL client commands - -=head1 SYNOPSIS - -I [B<--cluster> I/I] [...] - -(I: B, B, B, and all other client -programs installed in CIC). - -=head1 DESCRIPTION - -This program is run only as a link to names which correspond to PostgreSQL -programs in CIC. It determines the -configured cluster and database for the user and calls the appropriate version -of the desired program to connect to that cluster and database, supplying any -specified options to that command. - -The target cluster is selected by the following means, in descending order of -precedence: - -=over - -=item 1. - -explicit specification with the B<--host> option - -=item 2. - -explicit specification with the B<--cluster> option - -=item 3. - -if the B environment variable is set, no further cluster selection is -performed. The default PostgreSQL version and port number (from the command -line, the environment variable B, or default 5432) will be used. - -=item 4. - -explicit specification with the B environment variable - -=item 5. - -matching entry in C<~/.postgresqlrc> (see L), if that -file exists - -=item 6. - -matching entry in C (see -L), if that file exists - -=item 7. - -If only one local cluster exists, that one will be selected. - -=item 8. - -If several local clusters exist, the one listening on the default port 5432 -will be selected. - -=back - -If none of these rules match, B aborts with an error. - -For B, B, and B, B will always use the binary from -the newest PostgreSQL version installed, as these are downwards compatible. - -=head1 OPTIONS - -=over - -=item B<--cluster> IBI - -I is either the name of a local cluster, or takes the form -I:I for a remote cluster. If I is left empty (i. e. you just -specify I), it defaults to 5432. - -=back - -=head1 ENVIRONMENT - -=over - -=item B - -If C<$PGCLUSTER> is set, its value (of the form I/I) -specifies the desired cluster, similar to the B<--cluster> option. However, if -B<--cluster> is specified, it overrides the value of C<$PGCLUSTER>. - -=item B - -This specifies an alternative base directory for cluster configurations. This -is usually C, but for testing/development purposes you can -change this to point to e. g. your home directory, so that you can use the -postgresql-common tools without root privileges. - -=item B - -This is the location of PostgreSQL's and postgresql-common's global -configuration (e. g. C, L). The default is -C. - -=back - -=head1 FILES - -=over - -=item C - -stores the default cluster and database for users and groups as set by -the administrators. - -=item C<$HOME/.postgresqlrc> - -stores defaults set by the user himself. - -=back - -=head1 SEE ALSO - -L, L - -=head1 AUTHOR - -Martin Pitt Lmpitt@debian.orgE> diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 952b7929..ed8cb892 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -45,7 +45,7 @@ MAINTAINER Mahmoud Zalt ARG INSTALL_SOAP=false RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the soap extension - apt-get -y update && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php-soap && \ docker-php-ext-install soap \ ;fi @@ -87,11 +87,22 @@ RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ ARG INSTALL_PHPREDIS=false RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ # Install Php Redis Extension - pecl install -o -f redis \ + printf "\n" | pecl install -o -f redis \ && rm -rf /tmp/pear \ && docker-php-ext-enable redis \ ;fi +##################################### +# Swoole EXTENSION FOR PHP 5 +##################################### + +ARG INSTALL_SWOOLE=false +RUN if [ ${INSTALL_SWOOLE} = true ]; then \ + # Install Php Swoole Extension + pecl install swoole \ + && docker-php-ext-enable swoole \ +;fi + ##################################### # MongoDB: ##################################### @@ -148,13 +159,13 @@ RUN if [ ${INSTALL_EXIF} = true ]; then \ # PHP Aerospike: ##################################### -ARG INSTALL_AEROSPIKE_EXTENSION=false -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=false +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ @@ -219,10 +230,58 @@ RUN if [ ${INSTALL_INTL} = true ]; then \ ARG INSTALL_GHOSTSCRIPT=false RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ # Install the ghostscript extension for PDF editing - apt-get update && \ + apt-get update -yqq && \ apt-get install -y poppler-utils ghostscript \ ;fi +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \ + docker-php-ext-install ldap \ +;fi + +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + apt-get -y install php5-sybase freetds-bin && \ + cp /usr/lib/php5/20131226/*.so /usr/local/lib/php/extensions/no-debug-non-zts-20131226/ && \ + docker-php-ext-enable mssql pdo pdo_dblib \ +;fi + +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle \ +;fi + +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get update -y && \ + apt-get install -y libmagickwand-dev imagemagick && \ + pecl install imagick && \ + docker-php-ext-enable imagick \ +;fi + # #-------------------------------------------------------------------------- # Final Touch @@ -230,7 +289,7 @@ RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ # ADD ./laravel.ini /usr/local/etc/php/conf.d -ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ +ADD ./xlaravel.pool.conf /usr/local/etc/php-fpm.d/ #RUN rm -r /var/lib/apt/lists/* diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index c4f83d14..07b984ca 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -45,7 +45,7 @@ MAINTAINER Mahmoud Zalt ARG INSTALL_SOAP=false RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the soap extension - apt-get -y update && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php-soap && \ docker-php-ext-install soap \ ;fi @@ -84,11 +84,22 @@ RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ ARG INSTALL_PHPREDIS=false RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ # Install Php Redis Extension - pecl install -o -f redis \ + printf "\n" | pecl install -o -f redis \ && rm -rf /tmp/pear \ && docker-php-ext-enable redis \ ;fi +##################################### +# Swoole EXTENSION FOR PHP 7 +##################################### + +ARG INSTALL_SWOOLE=false +RUN if [ ${INSTALL_SWOOLE} = true ]; then \ + # Install Php Swoole Extension + pecl install swoole \ + && docker-php-ext-enable swoole \ +;fi + ##################################### # MongoDB: ##################################### @@ -156,17 +167,17 @@ RUN if [ ${INSTALL_EXIF} = true ]; then \ # PHP Aerospike: ##################################### -ARG INSTALL_AEROSPIKE_EXTENSION=false -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=false +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ - cd aerospike-client-php/src/aerospike \ + cd aerospike-client-php/src \ && phpize \ && ./build.sh \ && make install \ @@ -205,86 +216,6 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \ docker-php-ext-install tokenizer \ ;fi -##################################### -# SQL SERVER: -##################################### - -ARG MSSQL=false -RUN if [ ${MSSQL} = true ]; then \ - - ##################################### - # Install Depenencies: - ##################################### - apt-get update && \ - apt-get install -y --force-yes wget apt-transport-https curl freetds-common php5-odbc libsybdb5 freetds-bin unixodbc unixodbc-dev php5-sybase && \ - - ##################################### - # The following steps were taken from - # Microsoft's github account: - # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways - ##################################### - - # Add PHP 7 repository - # for Debian jessie - # And System upgrade - echo "deb http://packages.dotdeb.org jessie all" \ - | tee /etc/apt/sources.list.d/dotdeb.list \ - && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ - | apt-key add - \ - && apt-get update \ - && apt-get upgrade -qq && \ - - # Install UnixODBC - # Compile odbc_config as it is not part of unixodbc package - apt-get install -y whiptail \ - unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ - && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ - && cd unixodbc-*/ \ - && dpkg-buildpackage -uc -us -B -d \ - && cp -v ./exe/odbc_config /usr/local/bin/ && \ - - # Fake uname for install.sh - printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ - | tee /usr/local/bin/uname \ - && chmod +x /usr/local/bin/uname && \ - - # Microsoft ODBC Driver 13 for Linux - # Note: There's a copy of this tar on my hubiC - wget -nv -O msodbcsql-13.0.0.0.tar.gz \ - "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ - && tar -xf msodbcsql-13.0.0.0.tar.gz \ - && cd msodbcsql-*/ \ - && ldd lib64/libmsodbcsql-13.0.so.0.0 \ - && ./install.sh install --accept-license \ - && ls -l /opt/microsoft/msodbcsql/ \ - && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" \ - - ##################################### - # Install pdo_dblib - ##################################### - - && docker-php-ext-install pdo \ - && docker-php-ext-configure pdo_dblib --with-libdir=/lib/x86_64-linux-gnu \ - && docker-php-ext-install pdo_dblib \ - && docker-php-ext-enable pdo_dblib && \ - - ##################################### - # Install sqlsrv y pdo_sqlsrv - # extensions: - ##################################### - - pecl install sqlsrv-4.0.6 && \ - pecl install pdo_sqlsrv-4.0.6 && \ - - ##################################### - # Set locales for the container - ##################################### - - apt-get install -y locales \ - && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ - && locale-gen \ -;fi - ##################################### # Human Language and Character Encoding Support: ##################################### @@ -292,8 +223,8 @@ RUN if [ ${MSSQL} = true ]; then \ ARG INSTALL_INTL=false RUN if [ ${INSTALL_INTL} = true ]; then \ # Install intl and requirements - apt-get -y update \ - && apt-get install -y zlib1g-dev libicu-dev g++ && \ + apt-get update -yqq && \ + apt-get install -y zlib1g-dev libicu-dev g++ && \ docker-php-ext-configure intl && \ docker-php-ext-install intl \ ;fi @@ -306,20 +237,83 @@ ARG INSTALL_GHOSTSCRIPT=false RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ # Install the ghostscript extension # for PDF editing - apt-get -y update \ + apt-get update -yqq \ && apt-get install -y \ poppler-utils \ ghostscript \ ;fi +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \ + docker-php-ext-install ldap \ +;fi + +##################################### +# SQL SERVER: +##################################### + +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Ref from https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-adding-pdo_sqlsrv-and-sqlsrv-to-official-php-image + ##################################### + # Add Microsoft repo for Microsoft ODBC Driver 13 for Linux + apt-get update -yqq \ + && apt-get install -y apt-transport-https \ + && curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ + && curl https://packages.microsoft.com/config/debian/8/prod.list > /etc/apt/sources.list.d/mssql-release.list \ + && apt-get update -yqq \ + + # Install Dependencies + && ACCEPT_EULA=Y apt-get install -y unixodbc unixodbc-dev libgss3 odbcinst msodbcsql locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + + # Install pdo_sqlsrv and sqlsrv from PECL. Replace pdo_sqlsrv-4.1.8preview with preferred version. + && pecl install pdo_sqlsrv-4.1.8preview sqlsrv-4.1.8preview \ + && docker-php-ext-enable pdo_sqlsrv sqlsrv \ +;fi + +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle \ +;fi + +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get update -y && \ + apt-get install -y libmagickwand-dev imagemagick && \ + pecl install imagick && \ + docker-php-ext-enable imagick \ +;fi + # #-------------------------------------------------------------------------- # Final Touch #-------------------------------------------------------------------------- # -ADD ./laravel.ini /usr/local/etc/php/conf.d -ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ +ADD ./laravel.ini /usr/local/etc/php/conf.d/ +ADD ./xlaravel.pool.conf /usr/local/etc/php-fpm.d/ #RUN rm -r /var/lib/apt/lists/* diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 68ff65af..9d9756ae 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -45,7 +45,7 @@ MAINTAINER Mahmoud Zalt ARG INSTALL_SOAP=false RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the soap extension - apt-get -y update && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php-soap && \ docker-php-ext-install soap \ ;fi @@ -61,7 +61,7 @@ RUN if [ ${INSTALL_XDEBUG} = true ]; then \ docker-php-ext-enable xdebug \ ;fi -# Copy xdebug configration for remote debugging +# Copy xdebug configuration for remote debugging COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini ##################################### @@ -78,17 +78,28 @@ RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ ;fi ##################################### -# PHP REDIS EXTENSION FOR PHP 7 +# PHP REDIS EXTENSION FOR PHP 7.0 ##################################### ARG INSTALL_PHPREDIS=false RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ # Install Php Redis Extension - pecl install -o -f redis \ + printf "\n" | pecl install -o -f redis \ && rm -rf /tmp/pear \ && docker-php-ext-enable redis \ ;fi +##################################### +# Swoole EXTENSION FOR PHP 7 +##################################### + +ARG INSTALL_SWOOLE=false +RUN if [ ${INSTALL_SWOOLE} = true ]; then \ + # Install Php Swoole Extension + pecl install swoole \ + && docker-php-ext-enable swoole \ +;fi + ##################################### # MongoDB: ##################################### @@ -156,23 +167,32 @@ RUN if [ ${INSTALL_EXIF} = true ]; then \ # PHP Aerospike: ##################################### -ARG INSTALL_AEROSPIKE_EXTENSION=false -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=false +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} + # Copy aerospike configration for remote debugging COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ + +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ + # Fix dependencies for PHPUnit within aerospike extension + apt-get update -yqq && \ + apt-get -y install sudo wget && \ + # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ - cd aerospike-client-php/src/aerospike \ + cd aerospike-client-php/src \ && phpize \ && ./build.sh \ && make install \ ) \ && rm /tmp/aerospike-client-php.tar.gz \ - && docker-php-ext-enable aerospike \ +;fi + +RUN if [ ${INSTALL_AEROSPIKE} = false ]; then \ + rm /usr/local/etc/php/conf.d/aerospike.ini \ ;fi ##################################### @@ -202,7 +222,7 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \ ARG INSTALL_TOKENIZER=false RUN if [ ${INSTALL_TOKENIZER} = true ]; then \ - docker-php-ext-install tokenizer \ + docker-php-ext-install tokenizer \ ;fi ##################################### @@ -212,6 +232,7 @@ RUN if [ ${INSTALL_TOKENIZER} = true ]; then \ ARG INSTALL_INTL=false RUN if [ ${INSTALL_INTL} = true ]; then \ # Install intl and requirements + apt-get update -yqq && \ apt-get install -y zlib1g-dev libicu-dev g++ && \ docker-php-ext-configure intl && \ docker-php-ext-install intl \ @@ -225,12 +246,73 @@ ARG INSTALL_GHOSTSCRIPT=false RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ # Install the ghostscript extension # for PDF editing - apt-get -y update \ + apt-get update -yqq \ && apt-get install -y \ poppler-utils \ ghostscript \ ;fi +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && \ + docker-php-ext-install ldap \ +;fi + +##################################### +# SQL SERVER: +##################################### + +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Ref from https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-adding-pdo_sqlsrv-and-sqlsrv-to-official-php-image + ##################################### + # Add Microsoft repo for Microsoft ODBC Driver 13 for Linux + apt-get update -yqq && apt-get install -y apt-transport-https \ + && curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ + && curl https://packages.microsoft.com/config/debian/8/prod.list > /etc/apt/sources.list.d/mssql-release.list \ + && apt-get update -yqq \ + + # Install Dependencies + && ACCEPT_EULA=Y apt-get install -y unixodbc unixodbc-dev libgss3 odbcinst msodbcsql locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen \ + + # Install pdo_sqlsrv and sqlsrv from PECL. Replace pdo_sqlsrv-4.1.8preview with preferred version. + && pecl install pdo_sqlsrv-4.1.8preview sqlsrv-4.1.8preview \ + && docker-php-ext-enable pdo_sqlsrv sqlsrv \ +;fi + +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle \ +;fi + +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get update -y && \ + apt-get install -y libmagickwand-dev imagemagick && \ + pecl install imagick && \ + docker-php-ext-enable imagick \ +;fi + # #-------------------------------------------------------------------------- # Final Touch @@ -238,7 +320,7 @@ RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then \ # ADD ./laravel.ini /usr/local/etc/php/conf.d -ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ +ADD ./xlaravel.pool.conf /usr/local/etc/php-fpm.d/ #RUN rm -r /var/lib/apt/lists/* diff --git a/php-fpm/aerospike.ini b/php-fpm/aerospike.ini index 2f2aa1b7..f9c8f614 100644 --- a/php-fpm/aerospike.ini +++ b/php-fpm/aerospike.ini @@ -1,2 +1,3 @@ +extension=aerospike.so aerospike.udf.lua_system_path=/usr/local/aerospike/lua aerospike.udf.lua_user_path=/usr/local/aerospike/usr-lua \ No newline at end of file diff --git a/php-fpm/laravel.ini b/php-fpm/laravel.ini index fdf70e71..486a2cab 100644 --- a/php-fpm/laravel.ini +++ b/php-fpm/laravel.ini @@ -11,6 +11,3 @@ upload_max_filesize = 20M ; Sets max size of post data allowed. ; http://php.net/post-max-size post_max_size = 20M -; Enables the MSSQL extensions -extension=sqlsrv.so -extension=pdo_sqlsrv.so \ No newline at end of file diff --git a/php-fpm/laravel.pool.conf b/php-fpm/xlaravel.pool.conf similarity index 100% rename from php-fpm/laravel.pool.conf rename to php-fpm/xlaravel.pool.conf diff --git a/php-worker/Dockerfile b/php-worker/Dockerfile-70 similarity index 65% rename from php-worker/Dockerfile rename to php-worker/Dockerfile-70 index 58de7d5b..8b7dd601 100644 --- a/php-worker/Dockerfile +++ b/php-worker/Dockerfile-70 @@ -3,14 +3,30 @@ # Image Setup #-------------------------------------------------------------------------- # -# To take a look at the'php-worker' base Image, visit its DockerHub page -# https://hub.docker.com/r/nielsvdoorn/laravel-supervisor/ -# -FROM nielsvdoorn/laravel-supervisor +FROM php:7.0-alpine MAINTAINER Mahmoud Zalt +RUN apk --update add wget \ + curl \ + git \ + build-base \ + libmemcached-dev \ + libmcrypt-dev \ + libxml2-dev \ + zlib-dev \ + autoconf \ + cyrus-sasl-dev \ + libgsasl-dev \ + supervisor + +RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql mcrypt tokenizer xml +RUN pecl channel-update pecl.php.net && pecl install memcached && docker-php-ext-enable memcached + +RUN rm /var/cache/apk/* \ + && mkdir -p /var/www + # #-------------------------------------------------------------------------- # Optional Supervisord Configuration @@ -19,7 +35,10 @@ MAINTAINER Mahmoud Zalt # Modify the ./supervisor.conf file to match your App's requirements. # Make sure you rebuild your container with every change. # -COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf + +COPY supervisord.conf /etc/supervisord.conf + +ENTRYPOINT ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisord.conf"] # #-------------------------------------------------------------------------- @@ -37,5 +56,4 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf #-------------------------------------------------------------------------- # -RUN rm -r /var/lib/apt/lists/* WORKDIR /etc/supervisor/conf.d/ diff --git a/php-worker/Dockerfile-71 b/php-worker/Dockerfile-71 new file mode 100644 index 00000000..697efb67 --- /dev/null +++ b/php-worker/Dockerfile-71 @@ -0,0 +1,59 @@ +# +#-------------------------------------------------------------------------- +# Image Setup +#-------------------------------------------------------------------------- +# + +FROM php:7.1-alpine + +MAINTAINER Mahmoud Zalt + +RUN apk --update add wget \ + curl \ + git \ + build-base \ + libmemcached-dev \ + libmcrypt-dev \ + libxml2-dev \ + zlib-dev \ + autoconf \ + cyrus-sasl-dev \ + libgsasl-dev \ + supervisor + +RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql mcrypt tokenizer xml +RUN pecl channel-update pecl.php.net && pecl install memcached && docker-php-ext-enable memcached + +RUN rm /var/cache/apk/* \ + && mkdir -p /var/www + +# +#-------------------------------------------------------------------------- +# Optional Supervisord Configuration +#-------------------------------------------------------------------------- +# +# Modify the ./supervisor.conf file to match your App's requirements. +# Make sure you rebuild your container with every change. +# + +COPY supervisord.conf /etc/supervisord.conf + +ENTRYPOINT ["/usr/bin/supervisord", "-n", "-c", "/etc/supervisord.conf"] + +# +#-------------------------------------------------------------------------- +# Optional Software's Installation +#-------------------------------------------------------------------------- +# +# If you need to modify this image, feel free to do it right here. +# + # -- Your awesome modifications go here -- # + + +# +#-------------------------------------------------------------------------- +# Final Touch +#-------------------------------------------------------------------------- +# + +WORKDIR /etc/supervisor/conf.d/ diff --git a/redis/Dockerfile b/redis/Dockerfile index e8fedab3..35df84dd 100644 --- a/redis/Dockerfile +++ b/redis/Dockerfile @@ -2,10 +2,13 @@ FROM redis:latest MAINTAINER Mahmoud Zalt +## For security settings uncomment, make the dir, copy conf, and also start with the conf, to use it +#RUN mkdir -p /usr/local/etc/redis #COPY redis.conf /usr/local/etc/redis/redis.conf VOLUME /data EXPOSE 6379 +#CMD ["redis-server", "/usr/local/etc/redis/redis.conf"] CMD ["redis-server"] diff --git a/sync.sh b/sync.sh new file mode 100755 index 00000000..6955358d --- /dev/null +++ b/sync.sh @@ -0,0 +1,89 @@ +#!/bin/bash + +# This shell script is an optional tool to simplify +# the installation and usage of laradock with docker-sync. + +# Make sure that the DOCKER_SYNC_STRATEGY is set in the .env +# DOCKER_SYNC_STRATEGY=native_osx # osx +# DOCKER_SYNC_STRATEGY=unison # windows + +# To run, make sure to add permissions to this file: +# chmod 755 sync.sh + +# USAGE EXAMPLE: +# Install docker-sync: ./sync.sh install +# Start sync and services with nginx and mysql: ./sync.sh up nginx mysql +# Stop containers and sync: ./sync.sh down + +# prints colored text +print_style () { + + if [ "$2" == "info" ] ; then + COLOR="96m" + elif [ "$2" == "success" ] ; then + COLOR="92m" + elif [ "$2" == "warning" ] ; then + COLOR="93m" + elif [ "$2" == "danger" ] ; then + COLOR="91m" + else #default color + COLOR="0m" + fi + + STARTCOLOR="\e[$COLOR" + ENDCOLOR="\e[0m" + + printf "$STARTCOLOR%b$ENDCOLOR" "$1" +} + +display_options () { + printf "Available options:\n"; + print_style " install" "info"; printf "\t\t Installs docker-sync gem on the host machine.\n" + print_style " up [services]" "success"; printf "\t Starts docker-sync and runs docker compose.\n" + print_style " down" "success"; printf "\t\t\t Stops containers and docker-sync.\n" + print_style " bash" "success"; printf "\t\t\t Opens bash on the workspace.\n" + print_style " sync" "info"; printf "\t\t\t Manually triggers the synchronization of files.\n" + print_style " clean" "danger"; printf "\t\t Removes all files from docker-sync.\n" +} + +if [[ $# -eq 0 ]] ; then + print_style "Missing arguments.\n" "danger" + display_options + exit 1 +fi + +if [ "$1" == "up" ] ; then + print_style "Initializing Docker Sync\n" "info" + print_style "May take a long time (15min+) on the first run\n" "info" + docker-sync start; + + print_style "Initializing Docker Compose\n" "info" + shift # removing first argument + docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@} + +elif [ "$1" == "down" ]; then + print_style "Stopping Docker Compose\n" "info" + docker-compose down + + print_style "Stopping Docker Sync\n" "info" + docker-sync stop + +elif [ "$1" == "bash" ]; then + docker-compose exec workspace bash + +elif [ "$1" == "install" ]; then + print_style "Installing docker-sync\n" "info" + gem install docker-sync + +elif [ "$1" == "sync" ]; then + print_style "Manually triggering sync between host and docker-sync container.\n" "info" + docker-sync sync; + +elif [ "$1" == "clean" ]; then + print_style "Removing and cleaning up files from the docker-sync container.\n" "warning" + docker-sync clean +else + print_style "Invalid arguments.\n" "danger" + display_options + exit 1 +fi \ No newline at end of file diff --git a/travis-build.sh b/travis-build.sh index 84fee415..c72f51df 100755 --- a/travis-build.sh +++ b/travis-build.sh @@ -1,11 +1,21 @@ #!/usr/bin/env bash +#### halt script on error +set -xe + +echo '##### Print docker version' +docker --version + +echo '##### Print environment' +env | sort + #### Build the Docker Images if [ -n "${PHP_VERSION}" ]; then cp env-example .env + sed -i -- "s/PHP_VERSION=.*/PHP_VERSION=${PHP_VERSION}/g" .env sed -i -- 's/=false/=true/g' .env cat .env - docker-compose build + docker-compose build ${BUILD_SERVICE} docker images fi @@ -16,11 +26,13 @@ if [ -n "${HUGO_VERSION}" ]; then # Download hugo binary curl -L https://github.com/spf13/hugo/releases/download/v$HUGO_VERSION/$HUGO_PACKAGE.tar.gz | tar xz - mkdir $HOME/bin + mkdir -p $HOME/bin mv ./${HUGO_BIN}/${HUGO_BIN} $HOME/bin/hugo # Remove existing docs - rm -r ./docs + if [ -d "./docs" ]; then + rm -r ./docs + fi # Build docs cd DOCUMENTATION diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 9b05eae7..9ccb62c7 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -12,7 +12,7 @@ # Note: Base Image name format {image-tag}-{php-version} # -FROM laradock/workspace:1.7-56 +FROM laradock/workspace:1.8-56 MAINTAINER Mahmoud Zalt @@ -46,9 +46,13 @@ MAINTAINER Mahmoud Zalt # Add a non-root user to prevent files being created with root permissions on host machine. ARG PUID=1000 ARG PGID=1000 -RUN groupadd -g $PGID laradock && \ - useradd -u $PUID -g laradock -m laradock +ENV PUID ${PUID} +ENV PGID ${PGID} + +RUN groupadd -g ${PGID} laradock && \ + useradd -u ${PUID} -g laradock -m laradock && \ + apt-get update -yqq ##################################### # SOAP: @@ -60,10 +64,9 @@ ENV INSTALL_SOAP ${INSTALL_SOAP} RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the PHP SOAP extension - apt-get -y update && \ add-apt-repository -y ppa:ondrej/php && \ - apt-get -y install libxml2-dev php5.6-soap && \ - echo "extension=soap.so" >> /etc/php/5.6/cli/conf.d/40-soap.ini \ + apt-get update -yqq && \ + apt-get -y install libxml2-dev php5.6-soap \ ;fi ##################################### @@ -114,13 +117,17 @@ COPY ./aliases.sh /home/laradock/aliases.sh RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh USER root RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh ##################################### # xDebug: @@ -129,9 +136,8 @@ RUN echo "" >> ~/.bashrc && \ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands - apt-get update && \ apt-get install -y --force-yes php5.6-xdebug && \ - sed -i 's/^/;/g' /etc/php/5.6/cli/conf.d/20-xdebug.ini && \ + sed -i 's/^;//g' /etc/php/5.6/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ ;fi # ADD for REMOTE debugging @@ -151,7 +157,7 @@ ENV BLACKFIRE_CLIENT_TOKEN ${BLACKFIRE_CLIENT_TOKEN} RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ curl -L https://packagecloud.io/gpg.key | apt-key add - && \ echo "deb http://packages.blackfire.io/debian any main" | tee /etc/apt/sources.list.d/blackfire.list && \ - apt-get update && \ + apt-get update -yqq && \ apt-get install blackfire-agent \ ;fi @@ -183,8 +189,23 @@ ARG INSTALL_MONGO=false ENV INSTALL_MONGO ${INSTALL_MONGO} RUN if [ ${INSTALL_MONGO} = true ]; then \ # Install the mongodb extension + pecl channel-update pecl.php.net && \ pecl install mongodb && \ - echo "extension=mongodb.so" >> /etc/php/5.6/cli/conf.d/30-mongodb.ini \ + echo "extension=mongodb.so" >> /etc/php/5.6/mods-available/mongodb.ini && \ + ln -s /etc/php/5.6/mods-available/mongodb.ini /etc/php/5.6/cli/conf.d/30-mongodb.ini \ +;fi + +##################################### +# PHP REDIS EXTENSION FOR PHP 5.6 +##################################### + +ARG INSTALL_PHPREDIS=false +ENV INSTALL_PHPREDIS ${INSTALL_PHPREDIS} +RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ + # Install Php Redis extension + printf "\n" | pecl -q install -o -f redis && \ + echo "extension=redis.so" >> /etc/php/5.6/mods-available/redis.ini && \ + phpenmod redis \ ;fi ##################################### @@ -195,12 +216,28 @@ ENV DRUSH_VERSION 8.1.2 ARG INSTALL_DRUSH=false ENV INSTALL_DRUSH ${INSTALL_DRUSH} RUN if [ ${INSTALL_DRUSH} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ # Install Drush 8 with the phar file. curl -fsSL -o /usr/local/bin/drush https://github.com/drush-ops/drush/releases/download/$DRUSH_VERSION/drush.phar | bash && \ chmod +x /usr/local/bin/drush && \ drush core-status \ ;fi +##################################### +# Drupal Console: +##################################### +USER root +ARG INSTALL_DRUPAL_CONSOLE=false +ENV INSTALL_DRUPAL_CONSOLE ${INSTALL_DRUPAL_CONSOLE} +RUN if [ ${INSTALL_DRUPAL_CONSOLE} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ + curl https://drupalconsole.com/installer -L -o drupal.phar && \ + mv drupal.phar /usr/local/bin/drupal && \ + chmod +x /usr/local/bin/drupal \ +;fi + USER laradock ##################################### @@ -240,6 +277,9 @@ RUN if [ ${INSTALL_NODE} = true ]; then \ echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm' >> ~/.bashrc \ ;fi +# Add PATH for node +ENV PATH $PATH:$NVM_DIR/versions/node/v${NODE_VERSION}/bin + ##################################### # YARN: ##################################### @@ -276,15 +316,15 @@ RUN if [ ${INSTALL_YARN} = true ]; then \ ##################################### USER root -ARG INSTALL_AEROSPIKE_EXTENSION=true -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=true +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /etc/php/5.6/cli/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/3.4.14.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ @@ -296,27 +336,10 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ && rm /tmp/aerospike-client-php.tar.gz \ ;fi -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = false ]; then \ rm /etc/php/5.6/cli/conf.d/aerospike.ini \ ;fi -##################################### -# PHP V8JS: -##################################### -USER root - -ARG INSTALL_V8JS_EXTENSION=false -ENV INSTALL_V8JS_EXTENSION ${INSTALL_V8JS_EXTENSION} - -RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then \ - # Install the php V8JS extension - add-apt-repository -y ppa:pinepain/libv8-5.4 \ - && apt-get update \ - && apt-get install -y php-dev php-pear libv8-5.4 \ - && pecl install v8js \ - && echo "extension=v8js.so" >> /etc/php/5.6/cli/php.ini \ -;fi - ##################################### # Non-root user : PHPUnit path ##################################### @@ -327,14 +350,6 @@ USER laradock RUN echo "" >> ~/.bashrc && \ echo 'export PATH="/var/www/vendor/bin:$PATH"' >> ~/.bashrc -##################################### -# Laravel Artisan Alias -##################################### -USER root - -RUN echo "" >> ~/.bashrc && \ - echo 'alias art="php artisan"' >> ~/.bashrc - ##################################### # Laravel Envoy: ##################################### @@ -348,6 +363,23 @@ RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then \ composer global require "laravel/envoy=~1.0" \ ;fi +##################################### +# Laravel Installer: +##################################### +USER root + +ARG INSTALL_LARAVEL_INSTALLER=true +ENV INSTALL_LARAVEL_INSTALLER ${INSTALL_LARAVEL_INSTALLER} + +RUN if [ ${INSTALL_LARAVEL_INSTALLER} = true ]; then \ + # Install the Laravel Installer + echo "" >> ~/.bashrc && \ + echo 'export PATH="~/.composer/vendor/bin:$PATH"' >> ~/.bashrc \ + && composer global require "laravel/installer" \ +;fi + +USER laradock + ##################################### # Deployer: ##################################### @@ -372,7 +404,6 @@ ENV INSTALL_LINUXBREW ${INSTALL_LINUXBREW} RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ # Preparation - apt-get update && \ apt-get upgrade -y && \ apt-get install -y build-essential make cmake scons curl git \ ruby autoconf automake autoconf-archive \ @@ -381,7 +412,7 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ libexpat-dev libncurses-dev && \ # Install the Linuxbrew - git clone https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ + git clone --depth=1 https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ echo "" >> ~/.bashrc && \ echo 'export PKG_CONFIG_PATH"=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:$PKG_CONFIG_PATH"' >> ~/.bashrc && \ @@ -394,6 +425,17 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ echo 'export LD_LIBRARY_PATH="$LINUXBREWHOME/lib64:$LINUXBREWHOME/lib:$LD_LIBRARY_PATH"' >> ~/.bashrc \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + apt-get -y install php5.6-sybase freetds-bin freetds-common libsybdb5 \ + && echo "extension=pdo_dblib.so" > /etc/php/5.6/cli/conf.d/20-pdo_dblib.ini \ +;fi + ##################################### # Minio: ##################################### @@ -408,8 +450,110 @@ RUN if [ ${INSTALL_MC} = true ]; then\ chmod +x /usr/local/bin/mc \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ + if [ ${INSTALL_NODE} = true ]; then \ + . ~/.bashrc && npm install -g svgo \ + ;fi\ +;fi + USER laradock +##################################### +# Symfony: +##################################### +USER root +ARG INSTALL_SYMFONY=false +ENV INSTALL_SYMFONY ${INSTALL_SYMFONY} +RUN if [ ${INSTALL_SYMFONY} = true ]; then \ + + mkdir -p /usr/local/bin \ + && curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony \ + && chmod a+x /usr/local/bin/symfony \ + + # Symfony 3 alias + && echo 'alias dev="php bin/console -e=dev"' >> ~/.bashrc \ + && echo 'alias prod="php bin/console -e=prod"' >> ~/.bashrc \ + + # Symfony 2 alias + # && echo 'alias dev="php app/console -e=dev"' >> ~/.bashrc \ + # && echo 'alias prod="php app/console -e=prod"' >> ~/.bashrc \ + +;fi + +##################################### +# PYTHON: +##################################### + +ARG INSTALL_PYTHON=false +ENV INSTALL_PYTHON ${INSTALL_PYTHON} +RUN if [ ${INSTALL_PYTHON} = true ]; then \ + apt-get update \ + && apt-get -y install python python-pip python-dev build-essential \ + && pip install --upgrade pip \ + && pip install --upgrade virtualenv \ +;fi + +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get install -y --force-yes imagemagick php-imagick \ +;fi + +##################################### +# Terraform: +##################################### +USER root +ARG INSTALL_TERRAFORM=false +ENV INSTALL_TERRAFORM ${INSTALL_TERRAFORM} +RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ + apt-get update -yqq \ + && apt-get -y install sudo wget unzip \ + && wget https://releases.hashicorp.com/terraform/0.10.6/terraform_0.10.6_linux_amd64.zip \ + && unzip terraform_0.10.6_linux_amd64.zip \ + && mv terraform /usr/local/bin \ + && rm terraform_0.10.6_linux_amd64.zip \ +;fi + +##################################### +# Dusk Dependencies: +##################################### +USER root +ARG INSTALL_DUSK_DEPS=false +ENV INSTALL_DUSK_DEPS ${INSTALL_DUSK_DEPS} +RUN if [ ${INSTALL_DUSK_DEPS} = true ]; then \ + # Install required packages + add-apt-repository ppa:ondrej/php \ + && apt-get update \ + && apt-get -y install zip wget unzip xdg-utils \ + libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4 xvfb \ + gtk2-engines-pixbuf xfonts-cyrillic xfonts-100dpi xfonts-75dpi \ + xfonts-base xfonts-scalable x11-apps \ + + # Install Google Chrome + && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && apt-get -y -f install \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && rm google-chrome-stable_current_amd64.deb \ + + # Install Chrome Driver + && wget https://chromedriver.storage.googleapis.com/2.31/chromedriver_linux64.zip \ + && unzip chromedriver_linux64.zip \ + && mv chromedriver /usr/local/bin/ \ + && rm chromedriver_linux64.zip \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index d197d727..0daa29fa 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -12,7 +12,7 @@ # Note: Base Image name format {image-tag}-{php-version} # -FROM laradock/workspace:1.7-70 +FROM laradock/workspace:1.8-70 MAINTAINER Mahmoud Zalt @@ -46,9 +46,13 @@ MAINTAINER Mahmoud Zalt # Add a non-root user to prevent files being created with root permissions on host machine. ARG PUID=1000 ARG PGID=1000 -RUN groupadd -g $PGID laradock && \ - useradd -u $PUID -g laradock -m laradock +ENV PUID ${PUID} +ENV PGID ${PGID} + +RUN groupadd -g ${PGID} laradock && \ + useradd -u ${PUID} -g laradock -m laradock && \ + apt-get update -yqq ##################################### # SOAP: @@ -60,11 +64,24 @@ ENV INSTALL_SOAP ${INSTALL_SOAP} RUN if [ ${INSTALL_SOAP} = true ]; then \ # Install the PHP SOAP extension - apt-get -y update && \ add-apt-repository -y ppa:ondrej/php && \ + apt-get update -yqq && \ apt-get -y install libxml2-dev php7.0-soap \ ;fi +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +ENV INSTALL_LDAP ${INSTALL_LDAP} + +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + apt-get install -y php7.0-ldap \ +;fi + ##################################### # Set Timezone ##################################### @@ -113,13 +130,17 @@ COPY ./aliases.sh /home/laradock/aliases.sh RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh USER root RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ - echo "" >> ~/.bashrc + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh ##################################### # xDebug: @@ -128,9 +149,8 @@ RUN echo "" >> ~/.bashrc && \ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands - apt-get update && \ apt-get install -y --force-yes php7.0-xdebug && \ - sed -i 's/^/;/g' /etc/php/7.0/cli/conf.d/20-xdebug.ini && \ + sed -i 's/^;//g' /etc/php/7.0/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ ;fi # ADD for REMOTE debugging @@ -150,7 +170,7 @@ ENV BLACKFIRE_CLIENT_TOKEN ${BLACKFIRE_CLIENT_TOKEN} RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ curl -L https://packagecloud.io/gpg.key | apt-key add - && \ echo "deb http://packages.blackfire.io/debian any main" | tee /etc/apt/sources.list.d/blackfire.list && \ - apt-get update && \ + apt-get update -yqq && \ apt-get install blackfire-agent \ ;fi @@ -183,7 +203,21 @@ ENV INSTALL_MONGO ${INSTALL_MONGO} RUN if [ ${INSTALL_MONGO} = true ]; then \ # Install the mongodb extension pecl install mongodb && \ - echo "extension=mongodb.so" >> /etc/php/7.0/cli/conf.d/30-mongodb.ini \ + echo "extension=mongodb.so" >> /etc/php/7.0/mods-available/mongodb.ini && \ + ln -s /etc/php/7.0/mods-available/mongodb.ini /etc/php/7.0/cli/conf.d/30-mongodb.ini \ +;fi + +##################################### +# PHP REDIS EXTENSION FOR PHP 7 +##################################### + +ARG INSTALL_PHPREDIS=false +ENV INSTALL_PHPREDIS ${INSTALL_PHPREDIS} +RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ + # Install Php Redis extension + printf "\n" | pecl -q install -o -f redis && \ + echo "extension=redis.so" >> /etc/php/7.0/mods-available/redis.ini && \ + phpenmod redis \ ;fi ##################################### @@ -194,12 +228,28 @@ ENV DRUSH_VERSION 8.1.2 ARG INSTALL_DRUSH=false ENV INSTALL_DRUSH ${INSTALL_DRUSH} RUN if [ ${INSTALL_DRUSH} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ # Install Drush 8 with the phar file. curl -fsSL -o /usr/local/bin/drush https://github.com/drush-ops/drush/releases/download/$DRUSH_VERSION/drush.phar | bash && \ chmod +x /usr/local/bin/drush && \ drush core-status \ ;fi +##################################### +# Drupal Console: +##################################### +USER root +ARG INSTALL_DRUPAL_CONSOLE=false +ENV INSTALL_DRUPAL_CONSOLE ${INSTALL_DRUPAL_CONSOLE} +RUN if [ ${INSTALL_DRUPAL_CONSOLE} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ + curl https://drupalconsole.com/installer -L -o drupal.phar && \ + mv drupal.phar /usr/local/bin/drupal && \ + chmod +x /usr/local/bin/drupal \ +;fi + USER laradock ##################################### @@ -239,6 +289,9 @@ RUN if [ ${INSTALL_NODE} = true ]; then \ echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm' >> ~/.bashrc \ ;fi +# Add PATH for node +ENV PATH $PATH:$NVM_DIR/versions/node/v${NODE_VERSION}/bin + ##################################### # YARN: ##################################### @@ -275,19 +328,19 @@ RUN if [ ${INSTALL_YARN} = true ]; then \ ##################################### USER root -ARG INSTALL_AEROSPIKE_EXTENSION=true -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=true +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /etc/php/7.0/cli/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ - cd aerospike-client-php/src/aerospike \ + cd aerospike-client-php/src \ && phpize \ && ./build.sh \ && make install \ @@ -295,7 +348,7 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ && rm /tmp/aerospike-client-php.tar.gz \ ;fi -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = false ]; then \ rm /etc/php/7.0/cli/conf.d/aerospike.ini \ ;fi @@ -304,14 +357,14 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ ##################################### USER root -ARG INSTALL_V8JS_EXTENSION=false -ENV INSTALL_V8JS_EXTENSION ${INSTALL_V8JS_EXTENSION} +ARG INSTALL_V8JS=false +ENV INSTALL_V8JS ${INSTALL_V8JS} -RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_V8JS} = true ]; then \ # Install the php V8JS extension add-apt-repository -y ppa:pinepain/libv8-5.4 \ - && apt-get update \ - && apt-get install -y php-dev php-pear libv8-5.4 \ + && apt-get update -yqq \ + && apt-get install -y php7.0-xml php7.0-dev php-pear libv8-5.4 \ && pecl install v8js \ && echo "extension=v8js.so" >> /etc/php/7.0/cli/php.ini \ ;fi @@ -326,14 +379,6 @@ USER laradock RUN echo "" >> ~/.bashrc && \ echo 'export PATH="/var/www/vendor/bin:$PATH"' >> ~/.bashrc -##################################### -# Laravel Artisan Alias -##################################### -USER root - -RUN echo "" >> ~/.bashrc && \ - echo 'alias art="php artisan"' >> ~/.bashrc - ##################################### # Laravel Envoy: ##################################### @@ -347,6 +392,23 @@ RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then \ composer global require "laravel/envoy=~1.0" \ ;fi +##################################### +# Laravel Installer: +##################################### +USER root + +ARG INSTALL_LARAVEL_INSTALLER=true +ENV INSTALL_LARAVEL_INSTALLER ${INSTALL_LARAVEL_INSTALLER} + +RUN if [ ${INSTALL_LARAVEL_INSTALLER} = true ]; then \ + # Install the Laravel Installer + echo "" >> ~/.bashrc && \ + echo 'export PATH="~/.composer/vendor/bin:$PATH"' >> ~/.bashrc \ + && composer global require "laravel/installer" \ +;fi + +USER laradock + ##################################### # Deployer: ##################################### @@ -371,7 +433,6 @@ ENV INSTALL_LINUXBREW ${INSTALL_LINUXBREW} RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ # Preparation - apt-get update && \ apt-get upgrade -y && \ apt-get install -y build-essential make cmake scons curl git \ ruby autoconf automake autoconf-archive \ @@ -380,7 +441,7 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ libexpat-dev libncurses-dev && \ # Install the Linuxbrew - git clone https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ + git clone --depth=1 https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ echo "" >> ~/.bashrc && \ echo 'export PKG_CONFIG_PATH"=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:$PKG_CONFIG_PATH"' >> ~/.bashrc && \ @@ -393,6 +454,83 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ echo 'export LD_LIBRARY_PATH="$LINUXBREWHOME/lib64:$LINUXBREWHOME/lib:$LD_LIBRARY_PATH"' >> ~/.bashrc \ ;fi +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=true +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Install Depenencies: + ##################################### + cd / && \ + apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ + + ##################################### + # The following steps were taken from + # Microsoft's github account: + # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways + ##################################### + + # Add PHP 7 repository + # for Debian jessie + # And System upgrade + cd / && \ + echo "deb http://packages.dotdeb.org jessie all" \ + | tee /etc/apt/sources.list.d/dotdeb.list \ + && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ + | apt-key add - \ + && apt-get update -yqq \ + && apt-get upgrade -qq && \ + + # Install UnixODBC + # Compile odbc_config as it is not part of unixodbc package + cd / && \ + apt-get install -y whiptail \ + unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ + && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ + && cd unixodbc-*/ \ + && ./configure && make && make install \ + && cp -v ./exe/odbc_config /usr/local/bin/ && \ + + # Fake uname for install.sh + printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ + | tee /usr/local/bin/uname \ + && chmod +x /usr/local/bin/uname && \ + + # Microsoft ODBC Driver 13 for Linux + # Note: There's a copy of this tar on my hubiC + cd / && \ + wget -nv -O msodbcsql-13.0.0.0.tar.gz \ + "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ + && tar -xf msodbcsql-13.0.0.0.tar.gz \ + && cd msodbcsql-*/ \ + && ldd lib64/libmsodbcsql-13.0.so.0.0 \ + && ./install.sh install --accept-license \ + && ls -l /opt/microsoft/msodbcsql/ \ + && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ + + + ##################################### + # Install sqlsrv y pdo_sqlsrv + # extensions: + ##################################### + + pecl install sqlsrv-4.0.8 && \ + pecl install pdo_sqlsrv-4.0.8 && \ + + ##################################### + # Set locales for the container + ##################################### + + apt-get install -y locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo "extension=sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /etc/php/7.0/cli/conf.d/20-pdo_sqlsrv.ini \ +;fi + ##################################### # Minio: ##################################### @@ -407,6 +545,19 @@ RUN if [ ${INSTALL_MC} = true ]; then\ chmod +x /usr/local/bin/mc \ ;fi +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ + if [ ${INSTALL_NODE} = true ]; then \ + . ~/.bashrc && npm install -g svgo \ + ;fi\ +;fi + ##################################### # Symfony: ##################################### @@ -429,7 +580,72 @@ RUN if [ ${INSTALL_SYMFONY} = true ]; then \ ;fi -USER laradock +##################################### +# PYTHON: +##################################### + +ARG INSTALL_PYTHON=false +ENV INSTALL_PYTHON ${INSTALL_PYTHON} +RUN if [ ${INSTALL_PYTHON} = true ]; then \ + apt-get update \ + && apt-get -y install python python-pip python-dev build-essential \ + && pip install --upgrade pip \ + && pip install --upgrade virtualenv \ +;fi + +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get install -y --force-yes imagemagick php-imagick \ +;fi + +##################################### +# Terraform: +##################################### +USER root +ARG INSTALL_TERRAFORM=false +ENV INSTALL_TERRAFORM ${INSTALL_TERRAFORM} +RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ + apt-get update -yqq \ + && apt-get -y install sudo wget unzip \ + && wget https://releases.hashicorp.com/terraform/0.10.6/terraform_0.10.6_linux_amd64.zip \ + && unzip terraform_0.10.6_linux_amd64.zip \ + && mv terraform /usr/local/bin \ + && rm terraform_0.10.6_linux_amd64.zip \ +;fi + +##################################### +# Dusk Dependencies: +##################################### +USER root +ARG INSTALL_DUSK_DEPS=false +ENV INSTALL_DUSK_DEPS ${INSTALL_DUSK_DEPS} +RUN if [ ${INSTALL_DUSK_DEPS} = true ]; then \ + # Install required packages + add-apt-repository ppa:ondrej/php \ + && apt-get update \ + && apt-get -y install zip wget unzip xdg-utils \ + libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4 xvfb \ + gtk2-engines-pixbuf xfonts-cyrillic xfonts-100dpi xfonts-75dpi \ + xfonts-base xfonts-scalable x11-apps \ + + # Install Google Chrome + && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && apt-get -y -f install \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && rm google-chrome-stable_current_amd64.deb \ + + # Install Chrome Driver + && wget https://chromedriver.storage.googleapis.com/2.31/chromedriver_linux64.zip \ + && unzip chromedriver_linux64.zip \ + && mv chromedriver /usr/local/bin/ \ + && rm chromedriver_linux64.zip \ +;fi # #-------------------------------------------------------------------------- diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index aa53ad96..ac47e4e6 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -12,7 +12,7 @@ # Note: Base Image name format {image-tag}-{php-version} # -FROM laradock/workspace:1.7-71 +FROM laradock/workspace:1.8-71 MAINTAINER Mahmoud Zalt @@ -46,8 +46,41 @@ MAINTAINER Mahmoud Zalt # Add a non-root user to prevent files being created with root permissions on host machine. ARG PUID=1000 ARG PGID=1000 -RUN groupadd -g $PGID laradock && \ - useradd -u $PUID -g laradock -m laradock + +ENV PUID ${PUID} +ENV PGID ${PGID} + +RUN groupadd -g ${PGID} laradock && \ + useradd -u ${PUID} -g laradock -m laradock && \ + apt-get update -yqq + +##################################### +# SOAP: +##################################### +USER root + +ARG INSTALL_SOAP=false +ENV INSTALL_SOAP ${INSTALL_SOAP} + +RUN if [ ${INSTALL_SOAP} = true ]; then \ + # Install the PHP SOAP extension + add-apt-repository -y ppa:ondrej/php && \ + apt-get update -yqq && \ + apt-get -y install libxml2-dev php7.1-soap \ +;fi + +##################################### +# LDAP: +##################################### + +ARG INSTALL_LDAP=false +ENV INSTALL_LDAP ${INSTALL_LDAP} + +RUN if [ ${INSTALL_LDAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y libldap2-dev && \ + apt-get install -y php7.1-ldap \ +;fi ##################################### # Set Timezone @@ -81,7 +114,29 @@ RUN if [ ${COMPOSER_GLOBAL_INSTALL} = true ]; then \ ##################################### USER root -COPY ./crontab /var/spool/cron/crontabs +COPY ./crontab /etc/cron.d +RUN chmod -R 644 /etc/cron.d + +##################################### +# User Aliases +##################################### + +USER laradock +COPY ./aliases.sh /home/laradock/aliases.sh +RUN echo "" >> ~/.bashrc && \ + echo "# Load Custom Aliases" >> ~/.bashrc && \ + echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh + +USER root +RUN echo "" >> ~/.bashrc && \ + echo "# Load Custom Aliases" >> ~/.bashrc && \ + echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ + echo "" >> ~/.bashrc && \ + sed -i 's/\r//' /home/laradock/aliases.sh && \ + sed -i 's/^#! \/bin\/sh/#! \/bin\/bash/' /home/laradock/aliases.sh ##################################### # xDebug: @@ -91,8 +146,8 @@ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Load the xdebug extension only with phpunit commands apt-get update && \ - apt-get install -y --force-yes php-xdebug && \ - sed -i 's/^/;/g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ + apt-get install -y --force-yes php7.1-xdebug && \ + sed -i 's/^;//g' /etc/php/7.1/cli/conf.d/20-xdebug.ini && \ echo "alias phpunit='php -dzend_extension=xdebug.so /var/www/vendor/bin/phpunit'" >> ~/.bashrc \ ;fi # ADD for REMOTE debugging @@ -112,7 +167,7 @@ ENV BLACKFIRE_CLIENT_TOKEN ${BLACKFIRE_CLIENT_TOKEN} RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then \ curl -L https://packagecloud.io/gpg.key | apt-key add - && \ echo "deb http://packages.blackfire.io/debian any main" | tee /etc/apt/sources.list.d/blackfire.list && \ - apt-get update && \ + apt-get update -yqq && \ apt-get install blackfire-agent \ ;fi @@ -144,8 +199,22 @@ ARG INSTALL_MONGO=false ENV INSTALL_MONGO ${INSTALL_MONGO} RUN if [ ${INSTALL_MONGO} = true ]; then \ # Install the mongodb extension - pecl install mongodb && \ - echo "extension=mongodb.so" >> /etc/php/7.1/cli/conf.d/30-mongodb.ini \ + pecl -q install mongodb && \ + echo "extension=mongodb.so" >> /etc/php/7.1/mods-available/mongodb.ini && \ + ln -s /etc/php/7.1/mods-available/mongodb.ini /etc/php/7.1/cli/conf.d/30-mongodb.ini \ +;fi + +##################################### +# PHP REDIS EXTENSION FOR PHP 7.1 +##################################### + +ARG INSTALL_PHPREDIS=false +ENV INSTALL_PHPREDIS ${INSTALL_PHPREDIS} +RUN if [ ${INSTALL_PHPREDIS} = true ]; then \ + # Install Php Redis extension + printf "\n" | pecl -q install -o -f redis && \ + echo "extension=redis.so" >> /etc/php/7.1/mods-available/redis.ini && \ + phpenmod redis \ ;fi ##################################### @@ -156,12 +225,28 @@ ENV DRUSH_VERSION 8.1.2 ARG INSTALL_DRUSH=false ENV INSTALL_DRUSH ${INSTALL_DRUSH} RUN if [ ${INSTALL_DRUSH} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ # Install Drush 8 with the phar file. curl -fsSL -o /usr/local/bin/drush https://github.com/drush-ops/drush/releases/download/$DRUSH_VERSION/drush.phar | bash && \ chmod +x /usr/local/bin/drush && \ drush core-status \ ;fi +##################################### +# Drupal Console: +##################################### +USER root +ARG INSTALL_DRUPAL_CONSOLE=false +ENV INSTALL_DRUPAL_CONSOLE ${INSTALL_DRUPAL_CONSOLE} +RUN if [ ${INSTALL_DRUPAL_CONSOLE} = true ]; then \ + apt-get update -yqq && \ + apt-get -y install mysql-client && \ + curl https://drupalconsole.com/installer -L -o drupal.phar && \ + mv drupal.phar /usr/local/bin/drupal && \ + chmod +x /usr/local/bin/drupal \ +;fi + USER laradock ##################################### @@ -176,7 +261,7 @@ ENV INSTALL_NODE ${INSTALL_NODE} ENV NVM_DIR /home/laradock/.nvm RUN if [ ${INSTALL_NODE} = true ]; then \ # Install nvm (A Node Version Manager) - curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.6/install.sh | bash && \ + curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash && \ . $NVM_DIR/nvm.sh && \ nvm install ${NODE_VERSION} && \ nvm use ${NODE_VERSION} && \ @@ -201,6 +286,10 @@ RUN if [ ${INSTALL_NODE} = true ]; then \ echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm' >> ~/.bashrc \ ;fi +# Add PATH for node +ENV PATH $PATH:$NVM_DIR/versions/node/v${NODE_VERSION}/bin + + ##################################### # YARN: ##################################### @@ -209,10 +298,16 @@ USER laradock ARG INSTALL_YARN=false ENV INSTALL_YARN ${INSTALL_YARN} +ARG YARN_VERSION=latest +ENV YARN_VERSION ${YARN_VERSION} RUN if [ ${INSTALL_YARN} = true ]; then \ [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" && \ - curl -o- -L https://yarnpkg.com/install.sh | bash && \ + if [ ${YARN_VERSION} = "latest" ]; then \ + curl -o- -L https://yarnpkg.com/install.sh | bash; \ + else \ + curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version ${YARN_VERSION}; \ + fi && \ echo "" >> ~/.bashrc && \ echo 'export PATH="$HOME/.yarn/bin:$PATH"' >> ~/.bashrc \ ;fi @@ -231,19 +326,23 @@ RUN if [ ${INSTALL_YARN} = true ]; then \ ##################################### USER root -ARG INSTALL_AEROSPIKE_EXTENSION=true -ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION} +ARG INSTALL_AEROSPIKE=false +ENV INSTALL_AEROSPIKE ${INSTALL_AEROSPIKE} # Copy aerospike configration for remote debugging COPY ./aerospike.ini /etc/php/7.1/cli/conf.d/aerospike.ini -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = true ]; then \ + # Fix dependencies for PHPUnit within aerospike extension + apt-get update -yqq && \ + apt-get -y install sudo wget && \ + # Install the php aerospike extension - curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/aerospike-client-php/archive/master.tar.gz" \ + curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz" \ && mkdir -p aerospike-client-php \ && tar -C aerospike-client-php -zxvf /tmp/aerospike-client-php.tar.gz --strip 1 \ && ( \ - cd aerospike-client-php/src/aerospike \ + cd aerospike-client-php/src \ && phpize \ && ./build.sh \ && make install \ @@ -251,10 +350,27 @@ RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then \ && rm /tmp/aerospike-client-php.tar.gz \ ;fi -RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then \ +RUN if [ ${INSTALL_AEROSPIKE} = false ]; then \ rm /etc/php/7.1/cli/conf.d/aerospike.ini \ ;fi +##################################### +# PHP V8JS: +##################################### +USER root + +ARG INSTALL_V8JS=false +ENV INSTALL_V8JS ${INSTALL_V8JS} + +RUN if [ ${INSTALL_V8JS} = true ]; then \ + # Install the php V8JS extension + add-apt-repository -y ppa:pinepain/libv8-5.4 \ + && apt-get update -yqq \ + && apt-get install -y php-xml php-dev php-pear libv8-5.4 \ + && pecl install v8js \ + && echo "extension=v8js.so" >> /etc/php/7.1/cli/php.ini \ +;fi + ##################################### # Non-root user : PHPUnit path ##################################### @@ -265,6 +381,275 @@ USER laradock RUN echo "" >> ~/.bashrc && \ echo 'export PATH="/var/www/vendor/bin:$PATH"' >> ~/.bashrc +##################################### +# Laravel Envoy: +##################################### +USER laradock + +ARG INSTALL_LARAVEL_ENVOY=false +ENV INSTALL_LARAVEL_ENVOY ${INSTALL_LARAVEL_ENVOY} + +RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then \ + # Install the Laravel Envoy + composer global require "laravel/envoy=~1.0" \ +;fi + +##################################### +# Laravel Installer: +##################################### +USER root + +ARG INSTALL_LARAVEL_INSTALLER=false +ENV INSTALL_LARAVEL_INSTALLER ${INSTALL_LARAVEL_INSTALLER} + +RUN if [ ${INSTALL_LARAVEL_INSTALLER} = true ]; then \ + # Install the Laravel Installer + echo "" >> ~/.bashrc && \ + echo 'export PATH="~/.composer/vendor/bin:$PATH"' >> ~/.bashrc \ + && composer global require "laravel/installer" \ +;fi + +USER laradock + +##################################### +# Deployer: +##################################### +USER laradock + +ARG INSTALL_DEPLOYER=false +ENV INSTALL_DEPLOYER ${INSTALL_DEPLOYER} + +RUN if [ ${INSTALL_DEPLOYER} = true ]; then \ + # Install the Deployer + composer global require "deployer/deployer" \ +;fi + +##################################### +# Linuxbrew: +##################################### +USER root + +ARG INSTALL_LINUXBREW=false +ENV INSTALL_LINUXBREW ${INSTALL_LINUXBREW} + +RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ + + # Preparation + apt-get upgrade -y && \ + apt-get install -y build-essential make cmake scons curl git \ + ruby autoconf automake autoconf-archive \ + gettext libtool flex bison \ + libbz2-dev libcurl4-openssl-dev \ + libexpat-dev libncurses-dev && \ + + # Install the Linuxbrew + git clone --depth=1 https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew && \ + + echo "" >> ~/.bashrc && \ + echo 'export PKG_CONFIG_PATH"=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:$PKG_CONFIG_PATH"' >> ~/.bashrc && \ + + # Setup linuxbrew + echo 'export LINUXBREWHOME="$HOME/.linuxbrew"' >> ~/.bashrc && \ + echo 'export PATH="$LINUXBREWHOME/bin:$PATH"' >> ~/.bashrc && \ + echo 'export MANPATH="$LINUXBREWHOME/man:$MANPATH"' >> ~/.bashrc && \ + echo 'export PKG_CONFIG_PATH="$LINUXBREWHOME/lib64/pkgconfig:$LINUXBREWHOME/lib/pkgconfig:$PKG_CONFIG_PATH"' >> ~/.bashrc && \ + echo 'export LD_LIBRARY_PATH="$LINUXBREWHOME/lib64:$LINUXBREWHOME/lib:$LD_LIBRARY_PATH"' >> ~/.bashrc \ +;fi + +##################################### +# SQL SERVER: +##################################### +ARG INSTALL_MSSQL=false +ENV INSTALL_MSSQL ${INSTALL_MSSQL} + +RUN if [ ${INSTALL_MSSQL} = true ]; then \ + ##################################### + # Install Depenencies: + ##################################### + cd / && \ + apt-get update -yqq && \ + apt-get install -y --force-yes wget apt-transport-https curl freetds-common libsybdb5 freetds-bin unixodbc unixodbc-dev && \ + + ##################################### + # The following steps were taken from + # Microsoft's github account: + # https://github.com/Microsoft/msphpsql/wiki/Dockerfile-for-getting-pdo_sqlsrv-for-PHP-7.0-on-Debian-in-3-ways + ##################################### + + # Add PHP 7 repository + # for Debian jessie + # And System upgrade + cd / && \ + echo "deb http://packages.dotdeb.org jessie all" \ + | tee /etc/apt/sources.list.d/dotdeb.list \ + && wget -qO- https://www.dotdeb.org/dotdeb.gpg \ + | apt-key add - \ + && apt-get update -yqq \ + && apt-get upgrade -qq && \ + + # Install UnixODBC + # Compile odbc_config as it is not part of unixodbc package + cd / && \ + apt-get update -yqq && \ + apt-get install -y whiptail \ + unixodbc libgss3 odbcinst devscripts debhelper dh-exec dh-autoreconf libreadline-dev libltdl-dev \ + && dget -u -x http://http.debian.net/debian/pool/main/u/unixodbc/unixodbc_2.3.1-3.dsc \ + && cd unixodbc-*/ \ + && ./configure && make && make install \ + && cp -v ./exe/odbc_config /usr/local/bin/ && \ + + # Fake uname for install.sh + printf '#!/bin/bash\nif [ "$*" == "-p" ]; then echo "x86_64"; else /bin/uname "$@"; fi' \ + | tee /usr/local/bin/uname \ + && chmod +x /usr/local/bin/uname && \ + + # Microsoft ODBC Driver 13 for Linux + # Note: There's a copy of this tar on my hubiC + cd / && \ + wget -nv -O msodbcsql-13.0.0.0.tar.gz \ + "https://meetsstorenew.blob.core.windows.net/contianerhd/Ubuntu%2013.0%20Tar/msodbcsql-13.0.0.0.tar.gz?st=2016-10-18T17%3A29%3A00Z&se=2022-10-19T17%3A29%3A00Z&sp=rl&sv=2015-04-05&sr=b&sig=cDwPfrouVeIQf0vi%2BnKt%2BzX8Z8caIYvRCmicDL5oknY%3D" \ + && tar -xf msodbcsql-13.0.0.0.tar.gz \ + && cd msodbcsql-*/ \ + && ldd lib64/libmsodbcsql-13.0.so.0.0 \ + && ./install.sh install --accept-license \ + && ls -l /opt/microsoft/msodbcsql/ \ + && odbcinst -q -d -n "ODBC Driver 13 for SQL Server" && \ + + + ##################################### + # Install sqlsrv y pdo_sqlsrv + # extensions: + ##################################### + + pecl install sqlsrv-4.0.8 && \ + pecl install pdo_sqlsrv-4.0.8 && \ + + ##################################### + # Set locales for the container + ##################################### + + apt-get install -y locales \ + && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && echo "extension=sqlsrv.so" > /etc/php/7.1/cli/conf.d/20-sqlsrv.ini \ + && echo "extension=pdo_sqlsrv.so" > /etc/php/7.1/cli/conf.d/20-pdo_sqlsrv.ini \ +;fi + +##################################### +# Minio: +##################################### +USER root +ARG INSTALL_MC=false +ENV INSTALL_MC ${INSTALL_MC} + +COPY mc/config.json /root/.mc/config.json + +RUN if [ ${INSTALL_MC} = true ]; then\ + curl -fsSL -o /usr/local/bin/mc https://dl.minio.io/client/mc/release/linux-amd64/mc && \ + chmod +x /usr/local/bin/mc \ +;fi + +##################################### +# Image optimizers: +##################################### +USER root +ARG INSTALL_IMAGE_OPTIMIZERS=false +ENV INSTALL_IMAGE_OPTIMIZERS ${INSTALL_IMAGE_OPTIMIZERS} +RUN if [ ${INSTALL_IMAGE_OPTIMIZERS} = true ]; then \ + apt-get install -y --force-yes jpegoptim optipng pngquant gifsicle && \ + if [ ${INSTALL_NODE} = true ]; then \ + . ~/.bashrc && npm install -g svgo \ + ;fi\ +;fi + +USER laradock + +##################################### +# Symfony: +##################################### +USER root +ARG INSTALL_SYMFONY=false +ENV INSTALL_SYMFONY ${INSTALL_SYMFONY} +RUN if [ ${INSTALL_SYMFONY} = true ]; then \ + + mkdir -p /usr/local/bin \ + && curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony \ + && chmod a+x /usr/local/bin/symfony \ + + # Symfony 3 alias + && echo 'alias dev="php bin/console -e=dev"' >> ~/.bashrc \ + && echo 'alias prod="php bin/console -e=prod"' >> ~/.bashrc \ + + # Symfony 2 alias + # && echo 'alias dev="php app/console -e=dev"' >> ~/.bashrc \ + # && echo 'alias prod="php app/console -e=prod"' >> ~/.bashrc \ + +;fi + +##################################### +# PYTHON: +##################################### + +ARG INSTALL_PYTHON=false +ENV INSTALL_PYTHON ${INSTALL_PYTHON} +RUN if [ ${INSTALL_PYTHON} = true ]; then \ + apt-get update \ + && apt-get -y install python python-pip python-dev build-essential \ + && pip install --upgrade pip \ + && pip install --upgrade virtualenv \ +;fi + +##################################### +# ImageMagick: +##################################### +USER root +ARG INSTALL_IMAGEMAGICK=false +ENV INSTALL_IMAGEMAGICK ${INSTALL_IMAGEMAGICK} +RUN if [ ${INSTALL_IMAGEMAGICK} = true ]; then \ + apt-get install -y --force-yes imagemagick php-imagick \ +;fi + +##################################### +# Terraform: +##################################### +USER root +ARG INSTALL_TERRAFORM=false +ENV INSTALL_TERRAFORM ${INSTALL_TERRAFORM} +RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ + apt-get update -yqq \ + && apt-get -y install sudo wget unzip \ + && wget https://releases.hashicorp.com/terraform/0.10.6/terraform_0.10.6_linux_amd64.zip \ + && unzip terraform_0.10.6_linux_amd64.zip \ + && mv terraform /usr/local/bin \ + && rm terraform_0.10.6_linux_amd64.zip \ +;fi + +##################################### +# Dusk Dependencies: +##################################### +USER root +ARG CHROME_DRIVER_VERSION=stable +ENV CHROME_DRIVER_VERSION ${CHROME_DRIVER_VERSION} +ARG INSTALL_DUSK_DEPS=false +ENV INSTALL_DUSK_DEPS ${INSTALL_DUSK_DEPS} +RUN if [ ${INSTALL_DUSK_DEPS} = true ]; then \ + add-apt-repository ppa:ondrej/php \ + && apt-get update \ + && apt-get -y install zip wget unzip xdg-utils \ + libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4 xvfb \ + gtk2-engines-pixbuf xfonts-cyrillic xfonts-100dpi xfonts-75dpi \ + xfonts-base xfonts-scalable x11-apps \ + && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && apt-get -y -f install \ + && dpkg -i --force-depends google-chrome-stable_current_amd64.deb \ + && rm google-chrome-stable_current_amd64.deb \ + && wget https://chromedriver.storage.googleapis.com/${CHROME_DRIVER_VERSION}/chromedriver_linux64.zip \ + && unzip chromedriver_linux64.zip \ + && mv chromedriver /usr/local/bin/ \ + && rm chromedriver_linux64.zip \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/aliases.sh b/workspace/aliases.sh index f3e2a2c0..29fc22de 100644 --- a/workspace/aliases.sh +++ b/workspace/aliases.sh @@ -10,42 +10,94 @@ COL_BLUE=$ESC_SEQ"34;01m" COL_MAGENTA=$ESC_SEQ"35;01m" COL_CYAN=$ESC_SEQ"36;01m" +# Detect which `ls` flavor is in use +if ls --color > /dev/null 2>&1; then # GNU `ls` + colorflag="--color" + export LS_COLORS='no=00:fi=00:di=01;31:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:' +else # macOS `ls` + colorflag="-G" + export LSCOLORS='BxBxhxDxfxhxhxhxhxcxcx' +fi + +# List all files colorized in long format +#alias l="ls -lF ${colorflag}" +### MEGA: I want l and la ti return hisdden files +alias l="ls -laF ${colorflag}" + +# List all files colorized in long format, including dot files +alias la="ls -laF ${colorflag}" + +# List only directories +alias lsd="ls -lF ${colorflag} | grep --color=never '^d'" + +# Always use color output for `ls` +alias ls="command ls ${colorflag}" + # Commonly Used Aliases alias ..="cd .." +alias ...="cd ../.." +alias ....="cd ../../.." +alias .....="cd ../../../.." +alias ~="cd ~" # `cd` is probably faster to type though +alias -- -="cd -" +alias home="cd ~" + +alias h="history" +alias j="jobs" +alias e='exit' alias c="clear" alias cla="clear && ls -l" alias cll="clear && ls -la" alias cls="clear && ls" alias code="cd /var/www" alias ea="vi ~/aliases" + +# Always enable colored `grep` output +# Note: `GREP_OPTIONS="--color=auto"` is deprecated, hence the alias usage. +alias grep='grep --color=auto' +alias fgrep='fgrep --color=auto' +alias egrep='egrep --color=auto' + +alias art="php artisan" +alias artisan="php artisan" +alias cdump="composer dump-autoload -o" +alias composer:dump="composer dump-autoload -o" +alias db:reset="php artisan migrate:reset && php artisan migrate --seed" +alias dusk="php artisan dusk" +alias fresh="php artisan migrate:fresh" +alias migrate="php artisan migrate" +alias refresh="php artisan migrate:refresh" +alias rollback="php artisan migrate:rollback" +alias seed="php artisan:seed" +alias serve="php artisan serve --quiet &" + +alias phpunit="./vendor/bin/phpunit" +alias pu="phpunit" +alias puf="phpunit --filter" +alias pud='phpunit --debug' + +alias cc='codecept' +alias ccb='codecept build' +alias ccr='codecept run' +alias ccu='codecept run unit' +alias ccf='codecept run functional' + alias g="gulp" -alias home="cd ~" alias npm-global="npm list -g --depth 0" alias ra="reload" alias reload="source ~/.aliases && echo \"$COL_GREEN ==> Aliases Reloaded... $COL_RESET \n \"" alias run="npm run" alias tree="xtree" -# Laravel / PHP Alisases -alias art="php artisan" -alias artisan="php artisan" -alias cdump="composer dump-autoload -o" -alias composer:dump="composer dump-autoload -o" -alias db:reset="php artisan migrate:reset && php artisan migrate --seed" -alias migrate="php artisan migrate" -alias seed="php artisan:seed" -alias phpunit="./vendor/bin/phpunit" - +# Xvfb +alias xvfb="Xvfb -ac :0 -screen 0 1024x768x16 &" # requires installation of 'https://www.npmjs.com/package/npms-cli' alias npms="npms search" - # requires installation of 'https://www.npmjs.com/package/package-menu-cli' alias pm="package-menu" - # requires installation of 'https://www.npmjs.com/package/pkg-version-cli' alias pv="package-version" - # requires installation of 'https://github.com/sindresorhus/latest-version-cli' alias lv="latest-version" @@ -56,7 +108,6 @@ alias git-revert="git reset --hard && git clean -df" alias gs="git status" alias whoops="git reset --hard && git clean -df" - # Create a new directory and enter it function mkd() { mkdir -p "$@" && cd "$@" @@ -69,3 +120,25 @@ function md() { function xtree { find ${1:-.} -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g' } + +# `tre` is a shorthand for `tree` with hidden files and color enabled, ignoring +# the `.git` directory, listing directories first. The output gets piped into +# `less` with options to preserve color and line numbers, unless the output is +# small enough for one screen. +function tre() { + tree -aC -I '.git|node_modules|bower_components' --dirsfirst "$@" | less -FRNX; +} + +# Determine size of a file or total size of a directory +function fs() { + if du -b /dev/null > /dev/null 2>&1; then + local arg=-sbh; + else + local arg=-sh; + fi + if [[ -n "$@" ]]; then + du $arg -- "$@"; + else + du $arg .[^.]* ./*; + fi; +} From 8e556008d883a953a9068347a1e5344c9d385ba4 Mon Sep 17 00:00:00 2001 From: Maxime Helias Date: Sat, 14 Oct 2017 20:01:16 +0200 Subject: [PATCH 221/313] Add MailDev Container --- .travis.yml | 6 +++--- DOCUMENTATION/content/introduction/index.md | 2 +- docker-compose.yml | 11 +++++++++++ env-example | 5 +++++ maildev/Dockerfile | 5 +++++ 5 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 maildev/Dockerfile diff --git a/.travis.yml b/.travis.yml index f54fc735..887b61ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,9 +33,9 @@ env: - PHP_VERSION=70 BUILD_SERVICE=aerospike - PHP_VERSION=71 BUILD_SERVICE=aerospike - - PHP_VERSION=56 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" - - PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" - - PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=56 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer" - HUGO_VERSION=0.20.2 diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 115a79c6..58e35680 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -97,7 +97,7 @@ Beanstalkd - RabbitMQ - PHP Worker - **Queueing Management:** Beanstalkd Console - RabbitMQ Console - **Random Tools:** -HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Mailhog - Minio - Varnish - Swoole - Laravel Echo... +HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Mailhog - MailDev - Minio - Varnish - Swoole - Laravel Echo... Laradock introduces the **Workspace** Image, as a development environment. It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose. diff --git a/docker-compose.yml b/docker-compose.yml index e0fee7de..ae47a28d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -550,6 +550,17 @@ services: - frontend - backend +### MailDev Container ####################################### + + maildev: + build: ./maildev + ports: + - "${MAILDEV_HTTP_PORT}:80" + - "${MAILDEV_SMTP_PORT}:25" + networks: + - frontend + - backend + ### Selenium Container ######################################## selenium: diff --git a/env-example b/env-example index 0fe6ddb8..52cfb46f 100644 --- a/env-example +++ b/env-example @@ -205,6 +205,11 @@ PMA_PASSWORD=secret PMA_ROOT_PASSWORD=secret PMA_PORT=8080 +### MAILDEV ############################################################################################################ + +MAILDEV_HTTP_PORT=1080 +MAILDEV_SMTP_PORT=25 + ### VARNISH ############################################################################################################ VARNISH_CONFIG=/etc/varnish/default.vcl diff --git a/maildev/Dockerfile b/maildev/Dockerfile new file mode 100644 index 00000000..4484c832 --- /dev/null +++ b/maildev/Dockerfile @@ -0,0 +1,5 @@ +FROM djfarrelly/maildev + +MAINTAINER Maxime Hélias + +EXPOSE 80 25 From 7f5d9d07d154a7c73b0e0c50e39625ec4f59c913 Mon Sep 17 00:00:00 2001 From: Zuohuadong Date: Tue, 17 Oct 2017 12:23:48 +0800 Subject: [PATCH 222/313] add postgresql for php-fpm --- .travis.yml | 6 +++--- DOCUMENTATION/content/introduction/index.md | 2 +- caddy/Dockerfile | 23 ++++++++------------- docker-compose.yml | 11 ++++++++++ env-example | 6 ++++++ jenkins/Dockerfile | 12 +++++------ maildev/Dockerfile | 5 +++++ php-fpm/Dockerfile-70 | 9 ++++++++ php-fpm/Dockerfile-71 | 9 ++++++++ postgres/Dockerfile | 4 ++-- 10 files changed, 61 insertions(+), 26 deletions(-) create mode 100644 maildev/Dockerfile diff --git a/.travis.yml b/.travis.yml index f54fc735..887b61ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,9 +33,9 @@ env: - PHP_VERSION=70 BUILD_SERVICE=aerospike - PHP_VERSION=71 BUILD_SERVICE=aerospike - - PHP_VERSION=56 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" - - PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" - - PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=56 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer" + - PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer" - HUGO_VERSION=0.20.2 diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 115a79c6..58e35680 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -97,7 +97,7 @@ Beanstalkd - RabbitMQ - PHP Worker - **Queueing Management:** Beanstalkd Console - RabbitMQ Console - **Random Tools:** -HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Mailhog - Minio - Varnish - Swoole - Laravel Echo... +HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Mailhog - MailDev - Minio - Varnish - Swoole - Laravel Echo... Laradock introduces the **Workspace** Image, as a development environment. It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose. diff --git a/caddy/Dockerfile b/caddy/Dockerfile index d88fe390..aca00cdb 100644 --- a/caddy/Dockerfile +++ b/caddy/Dockerfile @@ -1,22 +1,17 @@ -FROM alpine:3.5 +FROM golang -MAINTAINER Eric Pfeiffer +MAINTAINER Huadong Zuo -ENV caddy_version=0.10.5 -ARG plugins=http.git +ARG plugins="git" -LABEL caddy_version="$caddy_version" architecture="amd64" +## If you come frome china, please ues it. -RUN apk update \ - && apk upgrade \ - && apk add --no-cache openssh-client git tar curl +# RUN echo "172.217.6.127 golang.org" >> /etc/hosts -RUN curl --silent --show-error --fail --location \ - --header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \ - "https://caddyserver.com/download/linux/amd64?plugins=${plugins}" \ - | tar --no-same-owner -C /usr/bin/ -xz caddy \ - && mv /usr/bin/caddy /usr/bin/caddy \ - && chmod 0755 /usr/bin/caddy +RUN go get github.com/abiosoft/caddyplug/caddyplug \ + && caddyplug install-caddy \ + && caddyplug install git +RUN caddy --version EXPOSE 80 443 2015 diff --git a/docker-compose.yml b/docker-compose.yml index e0fee7de..ae47a28d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -550,6 +550,17 @@ services: - frontend - backend +### MailDev Container ####################################### + + maildev: + build: ./maildev + ports: + - "${MAILDEV_HTTP_PORT}:80" + - "${MAILDEV_SMTP_PORT}:25" + networks: + - frontend + - backend + ### Selenium Container ######################################## selenium: diff --git a/env-example b/env-example index 0fe6ddb8..5d0360ca 100644 --- a/env-example +++ b/env-example @@ -76,6 +76,7 @@ PHP_FPM_INSTALL_OPCACHE=false PHP_FPM_INSTALL_EXIF=false PHP_FPM_INSTALL_AEROSPIKE=false PHP_FPM_INSTALL_MYSQLI=false +PHP_FPM_INSTALL_POSTGRES=false PHP_FPM_INSTALL_TOKENIZER=false PHP_FPM_INSTALL_INTL=false PHP_FPM_INSTALL_GHOSTSCRIPT=false @@ -205,6 +206,11 @@ PMA_PASSWORD=secret PMA_ROOT_PASSWORD=secret PMA_PORT=8080 +### MAILDEV ############################################################################################################ + +MAILDEV_HTTP_PORT=1080 +MAILDEV_SMTP_PORT=25 + ### VARNISH ############################################################################################################ VARNISH_CONFIG=/etc/varnish/default.vcl diff --git a/jenkins/Dockerfile b/jenkins/Dockerfile index 63480c7c..cfcba23f 100644 --- a/jenkins/Dockerfile +++ b/jenkins/Dockerfile @@ -25,8 +25,8 @@ VOLUME /var/jenkins_home # or config file with your custom jenkins Docker image. RUN mkdir -p /usr/share/jenkins/ref/init.groovy.d -ENV TINI_VERSION 0.13.2 -ENV TINI_SHA afbf8de8a63ce8e4f18cb3f34dfdbbd354af68a1 +ENV TINI_VERSION 0.16.1 +ENV TINI_SHA d1cb5d71adc01d47e302ea439d70c79bd0864288 # Use tini as subreaper in Docker container to adopt zombie processes RUN curl -fsSL https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini-static-amd64 -o /bin/tini && chmod +x /bin/tini \ @@ -36,10 +36,10 @@ COPY init.groovy /usr/share/jenkins/ref/init.groovy.d/tcp-slave-agent-port.groov # jenkins version being bundled in this docker image ARG JENKINS_VERSION -ENV JENKINS_VERSION ${JENKINS_VERSION:-2.32.3} +ENV JENKINS_VERSION ${JENKINS_VERSION:-2.73.2} # jenkins.war checksum, download will be validated using it -ARG JENKINS_SHA=a25b9a314ca9e76f9673da7309e1882e32674223 +ARG JENKINS_SHA=f6d1351beef34d980b32f8c463be505445f637e2fc62156fecd42891c53c97d3 # Can be used to customize where jenkins.war get downloaded from ARG JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/${JENKINS_VERSION}/jenkins-war-${JENKINS_VERSION}.war @@ -47,7 +47,7 @@ ARG JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-w # could use ADD but this one does not check Last-Modified header neither does it allow to control checksum # see https://github.com/docker/docker/issues/8331 RUN curl -fsSL ${JENKINS_URL} -o /usr/share/jenkins/jenkins.war \ - && echo "${JENKINS_SHA} /usr/share/jenkins/jenkins.war" | sha1sum -c - + && echo "${JENKINS_SHA} /usr/share/jenkins/jenkins.war" | sha256sum -c - ENV JENKINS_UC https://updates.jenkins.io RUN chown -R ${user} "$JENKINS_HOME" /usr/share/jenkins/ref @@ -71,7 +71,7 @@ RUN apt-get install -y curl && curl -sSL https://get.docker.com/ | sh RUN usermod -aG docker jenkins # Install Docker-Compose -RUN curl -L "https://github.com/docker/compose/releases/download/1.10.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose +RUN curl -L "https://github.com/docker/compose/releases/download/1.16.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose RUN chmod +x /usr/local/bin/docker-compose diff --git a/maildev/Dockerfile b/maildev/Dockerfile new file mode 100644 index 00000000..4484c832 --- /dev/null +++ b/maildev/Dockerfile @@ -0,0 +1,5 @@ +FROM djfarrelly/maildev + +MAINTAINER Maxime Hélias + +EXPOSE 80 25 diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 07b984ca..6e6ebec6 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -207,6 +207,15 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \ docker-php-ext-install mysqli \ ;fi +##################################### +# postgres Modifications: +##################################### + +ARG INSTALL_POSTGRES=false +RUN if [ ${INSTALL_POSTGRES} = true ]; then \ + docker-php-ext-install pgsql \ +;fi + ##################################### # Tokenizer Modifications: ##################################### diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index 9d9756ae..4d929949 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -216,6 +216,15 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \ docker-php-ext-install mysqli \ ;fi +##################################### +# postgres Modifications: +##################################### + +ARG INSTALL_POSTGRES=false +RUN if [ ${INSTALL_POSTGRES} = true ]; then \ + docker-php-ext-install pgsql \ +;fi + ##################################### # Tokenizer Modifications: ##################################### diff --git a/postgres/Dockerfile b/postgres/Dockerfile index 56a4ddb8..423c5d6b 100644 --- a/postgres/Dockerfile +++ b/postgres/Dockerfile @@ -1,7 +1,7 @@ -FROM postgres:latest +FROM postgres:alpine MAINTAINER Ben M CMD ["postgres"] -EXPOSE 5432 \ No newline at end of file +EXPOSE 5432 From 9abd7c30f2dd2d8cb53dc6dac92a5a89e0899512 Mon Sep 17 00:00:00 2001 From: Titas Gailius Date: Tue, 17 Oct 2017 18:05:21 +0300 Subject: [PATCH 223/313] Use node:alpine image for laravel-echo-server --- laravel-echo-server/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel-echo-server/Dockerfile b/laravel-echo-server/Dockerfile index 5074a1f8..658da3ff 100644 --- a/laravel-echo-server/Dockerfile +++ b/laravel-echo-server/Dockerfile @@ -1,4 +1,4 @@ -FROM node:argon +FROM node:alpine # Create app directory RUN mkdir -p /usr/src/app From ee03bb607fb4650dee55f5d0602d63950cd0792f Mon Sep 17 00:00:00 2001 From: Geraint Dong Date: Wed, 18 Oct 2017 10:04:23 +0700 Subject: [PATCH 224/313] Add support for pgclient to workspace & php-fpm --- docker-compose.yml | 1 + php-fpm/Dockerfile-56 | 11 +++++++++++ php-fpm/Dockerfile-70 | 11 +++++++++++ php-fpm/Dockerfile-71 | 11 +++++++++++ workspace/Dockerfile-56 | 11 +++++++++++ workspace/Dockerfile-70 | 11 +++++++++++ workspace/Dockerfile-71 | 9 +++++++++ 7 files changed, 65 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 2aa41103..abecd829 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -78,6 +78,7 @@ services: - INSTALL_AEROSPIKE=${PHP_FPM_INSTALL_AEROSPIKE} - INSTALL_MYSQLI=${PHP_FPM_INSTALL_MYSQLI} - INSTALL_PGSQL=${PHP_FPM_INSTALL_PGSQL} + - PHP_FPM_PG_CLIENT=${PHP_FPM_PG_CLIENT} - INSTALL_TOKENIZER=${PHP_FPM_INSTALL_TOKENIZER} - INSTALL_INTL=${PHP_FPM_INSTALL_INTL} - INSTALL_GHOSTSCRIPT=${PHP_FPM_INSTALL_GHOSTSCRIPT} diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 057db070..057553b1 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -61,6 +61,17 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \ docker-php-ext-install pgsql \ ;fi +##################################### +# pgsql client +##################################### + +ARG PHP_FPM_PG_CLIENT=true +RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \ + # Install the pgsql clint + apt-get update -yqq && \ + apt-get install -y postgresql-client \ +;fi + ##################################### # xDebug: ##################################### diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 7543524f..96b980fe 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -61,6 +61,17 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \ docker-php-ext-install pgsql \ ;fi +##################################### +# pgsql client +##################################### + +ARG PHP_FPM_PG_CLIENT=false +RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \ + # Install the pgsql client + apt-get update -yqq && \ + apt-get install -y postgresql-client \ +;fi + ##################################### # xDebug: ##################################### diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index a9da3955..02c1a365 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -61,6 +61,17 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \ docker-php-ext-install pgsql \ ;fi +##################################### +# pgsql client +##################################### + +ARG PHP_FPM_PG_CLIENT=false +RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \ + # Install the pgsql client + apt-get update -yqq && \ + apt-get install -y postgresql-client \ +;fi + ##################################### # xDebug: ##################################### diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index a3885523..47c56f18 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -524,6 +524,17 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ && rm terraform_0.10.6_linux_amd64.zip \ ;fi +##################################### +# pgsql client +##################################### + +ARG WORKSPACE_PG_CLIENT=false +RUN if [ ${WORKSPACE_PG_CLIENT} = true ]; then \ + # Install the pgsql clint + apt-get update -yqq && \ + apt-get -y install postgresql-client \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 297d26df..d3a17f58 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -605,6 +605,17 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ && rm terraform_0.10.6_linux_amd64.zip \ ;fi +##################################### +# pgsql client +##################################### + +ARG WORKSPACE_PG_CLIENT=false +RUN if [ ${WORKSPACE_PG_CLIENT} = true ]; then \ + # Install the pgsql client + apt-get update -yqq && \ + apt-get -y install postgresql-client \ +;fi + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index a57bff60..87f1dc6c 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -610,6 +610,15 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ && mv terraform /usr/local/bin \ && rm terraform_0.10.6_linux_amd64.zip \ ;fi +##################################### +# pgsql client +##################################### +ARG WORKSPACE_PG_CLIENT=false +RUN if [ ${WORKSPACE_PG_CLIENT} = true ]; then \ + # Install the pgsql clint + apt-get update -yqq && \ + apt-get -y install postgresql-client \ +;fi # #-------------------------------------------------------------------------- From 7fb00658cf2f24c5c40250e77fd0b62a122b2a39 Mon Sep 17 00:00:00 2001 From: Geraint Dong Date: Wed, 18 Oct 2017 10:18:23 +0700 Subject: [PATCH 225/313] Add support for pgclient to workspace & php-fpm + Update sample .env file --- env-example | 1 + 1 file changed, 1 insertion(+) diff --git a/env-example b/env-example index f8609699..d2c819e6 100644 --- a/env-example +++ b/env-example @@ -58,6 +58,7 @@ WORKSPACE_NODE_VERSION=stable WORKSPACE_YARN_VERSION=latest WORKSPACE_TIMEZONE=UTC WORKSPACE_SSH_PORT=2222 +WORKSPACE_PG_CLIENT=true ### PHP_FPM ############################################################################################################ From bea122a1fd967523d59fb1fe8ac019e6fa45967f Mon Sep 17 00:00:00 2001 From: Arkadius Jonczek Date: Wed, 18 Oct 2017 14:34:27 +0200 Subject: [PATCH 226/313] removed depends_on from grafana and added Grafana port to env-example --- docker-compose.yml | 4 +--- env-example | 4 ++++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7de65b7d..45f7a9e2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -230,9 +230,7 @@ services: volumes: - ${DATA_SAVE_PATH}/grafana:/var/lib/grafana ports: - - "3000:3000" - depends_on: - - mysql + - "${GRAFANA_PORT}:3000" networks: - backend diff --git a/env-example b/env-example index 2fd338bd..48b697fb 100644 --- a/env-example +++ b/env-example @@ -234,6 +234,10 @@ JENKINS_HOST_HTTP_PORT=8090 JENKINS_HOST_SLAVE_AGENT_PORT=50000 JENKINS_HOME=./jenkins/jenkins_home +### JENKINS ############################################################################################################ + +GRAFANA_PORT=3000 + ### BLACKFIRE ########################################################################################################## # Create an account on blackfire.io. Don't enable blackfire and xDebug at the same time. From 182386b514be2260b87fb33f63a88274c3476003 Mon Sep 17 00:00:00 2001 From: Arkadius Jonczek Date: Wed, 18 Oct 2017 14:38:10 +0200 Subject: [PATCH 227/313] removed grafana-storage --- docker-compose.yml | 29 ++++++++++++----------------- env-example | 2 +- 2 files changed, 13 insertions(+), 18 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 45f7a9e2..2ccb330f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -222,23 +222,6 @@ services: networks: - backend -### Grafana Container ######################################### - - grafana: - build: - context: ./grafana - volumes: - - ${DATA_SAVE_PATH}/grafana:/var/lib/grafana - ports: - - "${GRAFANA_PORT}:3000" - networks: - - backend - - #grafana-storage: - # image: busybox:latest - # volumes: - # - ${DATA_SAVE_PATH}/grafana:/var/lib/grafana - ### Percona Container ######################################### percona: @@ -643,6 +626,18 @@ services: - frontend - backend +### Grafana Container ######################################### + + grafana: + build: + context: ./grafana + volumes: + - ${DATA_SAVE_PATH}/grafana:/var/lib/grafana + ports: + - "${GRAFANA_PORT}:3000" + networks: + - backend + ### Laravel Echo Server ####################################### laravel-echo-server: build: diff --git a/env-example b/env-example index 48b697fb..c0e4a7a8 100644 --- a/env-example +++ b/env-example @@ -234,7 +234,7 @@ JENKINS_HOST_HTTP_PORT=8090 JENKINS_HOST_SLAVE_AGENT_PORT=50000 JENKINS_HOME=./jenkins/jenkins_home -### JENKINS ############################################################################################################ +### GRAFANA ############################################################################################################ GRAFANA_PORT=3000 From 8aaa074af2037a37f17a373ce0c05dd99bf2bc52 Mon Sep 17 00:00:00 2001 From: Arkadius Jonczek Date: Thu, 19 Oct 2017 14:29:50 +0200 Subject: [PATCH 228/313] add Use Grafana section to documention --- DOCUMENTATION/content/documentation/index.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 628c420a..4c2a8bcb 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -942,6 +942,24 @@ docker-compose up -d aws +
    + +## Use Grafana + +1 - Configure Grafana: Change Port using `GRAFANA_PORT` if you wish to. Default is port 3000. + +2 - Run the Grafana Container (`grafana`) with the `docker-compose up`command: + +```bash +docker-compose up -d grafana +``` + +3 - Open your browser and visit the localhost on port **3000** at the following URL: `http://localhost:3000` + +4 - Login using the credentials User = `admin` Passwort = `admin`. Change the password in the webinterface if you want to. + + +
    From a71d5a8548fd5cc4e95f2e73a350709d5432a416 Mon Sep 17 00:00:00 2001 From: Arkadius Jonczek Date: Thu, 19 Oct 2017 18:51:17 +0200 Subject: [PATCH 229/313] add Grafana to Random Tools list in introduction documentation --- DOCUMENTATION/content/introduction/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 58e35680..4d484b12 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -97,7 +97,7 @@ Beanstalkd - RabbitMQ - PHP Worker - **Queueing Management:** Beanstalkd Console - RabbitMQ Console - **Random Tools:** -HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Mailhog - MailDev - Minio - Varnish - Swoole - Laravel Echo... +HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Grafana - Mailhog - MailDev - Minio - Varnish - Swoole - Laravel Echo... Laradock introduces the **Workspace** Image, as a development environment. It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose. From eac717fb214858d6d4811e71fb9e7bf9a5a258ad Mon Sep 17 00:00:00 2001 From: Thorvald Falkenburg Date: Wed, 25 Oct 2017 09:32:12 +0200 Subject: [PATCH 230/313] Fix grammar --- DOCUMENTATION/content/contributing/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOCUMENTATION/content/contributing/index.md b/DOCUMENTATION/content/contributing/index.md index 3c716558..94adc472 100644 --- a/DOCUMENTATION/content/contributing/index.md +++ b/DOCUMENTATION/content/contributing/index.md @@ -13,7 +13,7 @@ If you have questions about how to use Laradock, please direct your questions to ## Found an Issue -If have an issue or you found a typo in the documentation, you can help us by +If you have an issue or you found a typo in the documentation, you can help us by opening an [Issue](https://github.com/laradock/laradock/issues). **Steps to do before opening an Issue:** From f4ede08b9c0b3ba6da27395576d79bd3a79a6801 Mon Sep 17 00:00:00 2001 From: Thorvald Falkenburg Date: Wed, 25 Oct 2017 11:40:47 +0200 Subject: [PATCH 231/313] Fix variable issues. Also made the variables introduced with the psql client consistent with the existing ones. Fixes #1208 --- docker-compose.yml | 3 ++- env-example | 2 ++ php-fpm/Dockerfile-56 | 4 ++-- php-fpm/Dockerfile-70 | 4 ++-- php-fpm/Dockerfile-71 | 4 ++-- workspace/Dockerfile-56 | 7 ++++--- workspace/Dockerfile-70 | 7 ++++--- workspace/Dockerfile-71 | 6 ++++-- 8 files changed, 22 insertions(+), 15 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index bd69ec91..8bff74fd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -41,6 +41,7 @@ services: - INSTALL_IMAGEMAGICK=${WORKSPACE_INSTALL_IMAGEMAGICK} - INSTALL_TERRAFORM=${WORKSPACE_INSTALL_TERRAFORM} - INSTALL_DUSK_DEPS=${WORKSPACE_INSTALL_DUSK_DEPS} + - INSTALL_PG_CLIENT=${WORKSPACE_INSTALL_PG_CLIENT} - PUID=${WORKSPACE_PUID} - PGID=${WORKSPACE_PGID} - CHROME_DRIVER_VERSION=${WORKSPACE_CHROME_DRIVER_VERSION} @@ -81,7 +82,7 @@ services: - INSTALL_AEROSPIKE=${PHP_FPM_INSTALL_AEROSPIKE} - INSTALL_MYSQLI=${PHP_FPM_INSTALL_MYSQLI} - INSTALL_PGSQL=${PHP_FPM_INSTALL_PGSQL} - - PHP_FPM_PG_CLIENT=${PHP_FPM_PG_CLIENT} + - INSTALL_PG_CLIENT=${PHP_FPM_INSTALL_PG_CLIENT} - INSTALL_TOKENIZER=${PHP_FPM_INSTALL_TOKENIZER} - INSTALL_INTL=${PHP_FPM_INSTALL_INTL} - INSTALL_GHOSTSCRIPT=${PHP_FPM_INSTALL_GHOSTSCRIPT} diff --git a/env-example b/env-example index c8a62943..ad206b5a 100644 --- a/env-example +++ b/env-example @@ -54,6 +54,7 @@ WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false WORKSPACE_INSTALL_IMAGEMAGICK=false WORKSPACE_INSTALL_TERRAFORM=false WORKSPACE_INSTALL_DUSK_DEPS=false +WORKSPACE_INSTALL_PG_CLIENT=false WORKSPACE_PUID=1000 WORKSPACE_PGID=1000 WORKSPACE_CHROME_DRIVER_VERSION=2.32 @@ -86,6 +87,7 @@ PHP_FPM_INSTALL_LDAP=false PHP_FPM_INSTALL_SWOOLE=false PHP_FPM_INSTALL_IMAGE_OPTIMIZERS=false PHP_FPM_INSTALL_IMAGEMAGICK=false +PHP_FPM_INSTALL_PG_CLIENT=false ### NGINX ############################################################################################################## diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index 057553b1..8d5ed0b6 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -65,8 +65,8 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \ # pgsql client ##################################### -ARG PHP_FPM_PG_CLIENT=true -RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \ +ARG INSTALL_PG_CLIENT=false +RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \ # Install the pgsql clint apt-get update -yqq && \ apt-get install -y postgresql-client \ diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index f621a9a3..3530b76d 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -65,8 +65,8 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \ # pgsql client ##################################### -ARG PHP_FPM_PG_CLIENT=false -RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \ +ARG INSTALL_PG_CLIENT=false +RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \ # Install the pgsql client apt-get update -yqq && \ apt-get install -y postgresql-client \ diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index b2d55520..cefc64c8 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -65,8 +65,8 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \ # pgsql client ##################################### -ARG PHP_FPM_PG_CLIENT=false -RUN if [ ${PHP_FPM_PG_CLIENT} = true ]; then \ +ARG INSTALL_PG_CLIENT=false +RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \ # Install the pgsql client apt-get update -yqq && \ apt-get install -y postgresql-client \ diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 8e9e4860..968596f2 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -528,9 +528,10 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ ##################################### # pgsql client ##################################### - -ARG WORKSPACE_PG_CLIENT=false -RUN if [ ${WORKSPACE_PG_CLIENT} = true ]; then \ +USER root +ARG INSTALL_PG_CLIENT=false +ENV INSTALL_PG_CLIENT ${INSTALL_PG_CLIENT} +RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \ # Install the pgsql clint apt-get update -yqq && \ apt-get -y install postgresql-client \ diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index fc814af2..f1e0ebb8 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -621,9 +621,10 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ ##################################### # pgsql client ##################################### - -ARG WORKSPACE_PG_CLIENT=false -RUN if [ ${WORKSPACE_PG_CLIENT} = true ]; then \ +USER root +ARG INSTALL_PG_CLIENT=false +ENV INSTALL_PG_CLIENT ${INSTALL_PG_CLIENT} +RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \ # Install the pgsql client apt-get update -yqq && \ apt-get -y install postgresql-client \ diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 44416ae7..2dfbf44d 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -626,8 +626,10 @@ RUN if [ ${INSTALL_TERRAFORM} = true ]; then \ ##################################### # pgsql client ##################################### -ARG WORKSPACE_PG_CLIENT=false -RUN if [ ${WORKSPACE_PG_CLIENT} = true ]; then \ +USER root +ARG INSTALL_PG_CLIENT=false +ENV INSTALL_PG_CLIENT ${INSTALL_PG_CLIENT} +RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \ # Install the pgsql clint apt-get update -yqq && \ apt-get -y install postgresql-client \ From a31114955aa46e6e62caa81480656e0dc782637a Mon Sep 17 00:00:00 2001 From: Thorvald Falkenburg Date: Wed, 25 Oct 2017 12:12:20 +0200 Subject: [PATCH 232/313] Remove variable --- env-example | 1 - 1 file changed, 1 deletion(-) diff --git a/env-example b/env-example index ad206b5a..692f08af 100644 --- a/env-example +++ b/env-example @@ -62,7 +62,6 @@ WORKSPACE_NODE_VERSION=stable WORKSPACE_YARN_VERSION=latest WORKSPACE_TIMEZONE=UTC WORKSPACE_SSH_PORT=2222 -WORKSPACE_PG_CLIENT=true ### PHP_FPM ############################################################################################################ From c2c30bfd0f278f6978a48dc62cf3ee063c9f3efa Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Sat, 28 Oct 2017 04:34:59 +0300 Subject: [PATCH 233/313] update workspace base image version --- workspace/Dockerfile-56 | 2 +- workspace/Dockerfile-70 | 2 +- workspace/Dockerfile-71 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 968596f2..6651022a 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -12,7 +12,7 @@ # Note: Base Image name format {image-tag}-{php-version} # -FROM laradock/workspace:1.8-56 +FROM laradock/workspace:1.9-56 MAINTAINER Mahmoud Zalt diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index f1e0ebb8..b475a791 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -12,7 +12,7 @@ # Note: Base Image name format {image-tag}-{php-version} # -FROM laradock/workspace:1.8-70 +FROM laradock/workspace:1.9-70 MAINTAINER Mahmoud Zalt diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 2dfbf44d..eedb8f2e 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -12,7 +12,7 @@ # Note: Base Image name format {image-tag}-{php-version} # -FROM laradock/workspace:1.8-71 +FROM laradock/workspace:1.9-71 MAINTAINER Mahmoud Zalt From 894b0197e0ec92dd13314af381d15a56133b4f7f Mon Sep 17 00:00:00 2001 From: Nick Hope Date: Sun, 29 Oct 2017 12:54:05 +0000 Subject: [PATCH 234/313] Fixed: PHP-Worker has missing PGSQL drivers. --- docker-compose.yml | 2 ++ env-example | 4 ++++ php-worker/Dockerfile-70 | 7 +++++++ php-worker/Dockerfile-71 | 7 +++++++ 4 files changed, 20 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 8bff74fd..2649ec3f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -112,6 +112,8 @@ services: build: context: ./php-worker dockerfile: "Dockerfile-${PHP_VERSION}" + args: + - INSTALL_PGSQL=${PHP_WORKER_INSTALL_PGSQL} volumes_from: - applications depends_on: diff --git a/env-example b/env-example index 692f08af..95d5e254 100644 --- a/env-example +++ b/env-example @@ -88,6 +88,10 @@ PHP_FPM_INSTALL_IMAGE_OPTIMIZERS=false PHP_FPM_INSTALL_IMAGEMAGICK=false PHP_FPM_INSTALL_PG_CLIENT=false +### PHP_WORKER ######################################################################################################### + +PHP_WORKER_INSTALL_PGSQL=false + ### NGINX ############################################################################################################## NGINX_HOST_HTTP_PORT=80 diff --git a/php-worker/Dockerfile-70 b/php-worker/Dockerfile-70 index 8b7dd601..030bf8bb 100644 --- a/php-worker/Dockerfile-70 +++ b/php-worker/Dockerfile-70 @@ -24,6 +24,13 @@ RUN apk --update add wget \ RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql mcrypt tokenizer xml RUN pecl channel-update pecl.php.net && pecl install memcached && docker-php-ext-enable memcached +# Install PostgreSQL drivers: +ARG INSTALL_PGSQL=false +RUN if [ ${INSTALL_PGSQL} = true ]; then \ + apk --update add postgresql-dev \ + && docker-php-ext-install pdo_pgsql \ +;fi + RUN rm /var/cache/apk/* \ && mkdir -p /var/www diff --git a/php-worker/Dockerfile-71 b/php-worker/Dockerfile-71 index 697efb67..eeebe8da 100644 --- a/php-worker/Dockerfile-71 +++ b/php-worker/Dockerfile-71 @@ -24,6 +24,13 @@ RUN apk --update add wget \ RUN docker-php-ext-install mysqli mbstring pdo pdo_mysql mcrypt tokenizer xml RUN pecl channel-update pecl.php.net && pecl install memcached && docker-php-ext-enable memcached +# Install PostgreSQL drivers: +ARG INSTALL_PGSQL=false +RUN if [ ${INSTALL_PGSQL} = true ]; then \ + apk --update add postgresql-dev \ + && docker-php-ext-install pdo_pgsql \ +;fi + RUN rm /var/cache/apk/* \ && mkdir -p /var/www From 9e807e39eee31b8bacfbe0befc8f10933a8b5e15 Mon Sep 17 00:00:00 2001 From: Nick Hope Date: Sun, 29 Oct 2017 13:03:59 +0000 Subject: [PATCH 235/313] Updated: PHP-Worker documentation. --- DOCUMENTATION/content/documentation/index.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 4c2a8bcb..9900f648 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -541,11 +541,18 @@ b) add a new service container by simply copy-paste this section below PHP-FPM c ```yaml php-worker: build: - context: ./php-fpm - dockerfile: Dockerfile-70 # or Dockerfile-56, choose your PHP-FPM container setting + context: ./php-worker + dockerfile: "Dockerfile-${PHP_VERSION}" #Dockerfile-71 or #Dockerfile-70 available + args: + - INSTALL_PGSQL=${PHP_WORKER_INSTALL_PGSQL} #Optionally install PGSQL PHP drivers volumes_from: - applications - command: php artisan queue:work + depends_on: + - workspace + extra_hosts: + - "dockerhost:${DOCKER_HOST_IP}" + networks: + - backend ``` 2 - Start everything up From 23ee4f6679af5e5d5cc03f9d433b189781ba3cec Mon Sep 17 00:00:00 2001 From: Jeroen van Oort Date: Mon, 6 Nov 2017 11:12:02 +0100 Subject: [PATCH 236/313] added IMAP extension to workspace --- docker-compose.yml | 1 + env-example | 1 + workspace/Dockerfile-56 | 15 +++++++++++++++ workspace/Dockerfile-70 | 12 ++++++++++++ workspace/Dockerfile-71 | 12 ++++++++++++ 5 files changed, 41 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 2649ec3f..494670d9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,6 +19,7 @@ services: - INSTALL_BLACKFIRE=${INSTALL_BLACKFIRE} - INSTALL_SOAP=${WORKSPACE_INSTALL_SOAP} - INSTALL_LDAP=${WORKSPACE_INSTALL_LDAP} + - INSTALL_IMAP=${WORKSPACE_INSTALL_IMAP} - INSTALL_MONGO=${WORKSPACE_INSTALL_MONGO} - INSTALL_PHPREDIS=${WORKSPACE_INSTALL_PHPREDIS} - INSTALL_MSSQL=${WORKSPACE_INSTALL_MSSQL} diff --git a/env-example b/env-example index 95d5e254..5d082ab9 100644 --- a/env-example +++ b/env-example @@ -32,6 +32,7 @@ PHP_INTERPRETER=php-fpm WORKSPACE_INSTALL_XDEBUG=false WORKSPACE_INSTALL_LDAP=false WORKSPACE_INSTALL_SOAP=false +WORKSPACE_INSTALL_IMAP=false WORKSPACE_INSTALL_MONGO=false WORKSPACE_INSTALL_PHPREDIS=false WORKSPACE_INSTALL_MSSQL=false diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 6651022a..76fbe2cc 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -69,6 +69,21 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \ apt-get -y install libxml2-dev php5.6-soap \ ;fi +##################################### +# IMAP: +##################################### +USER root + +ARG INSTALL_IMAP=false +ENV INSTALL_IMAP ${INSTALL_IMAP} + +RUN if [ ${INSTALL_IMAP} = true ]; then \ + # Install the PHP IMAP extension + add-apt-repository -y ppa:ondrej/php && \ + apt-get update -yqq && \ + apt-get -y install php5.6-imap \ +;fi + ##################################### # Set Timezone ##################################### diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index b475a791..06421db7 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -82,6 +82,18 @@ RUN if [ ${INSTALL_LDAP} = true ]; then \ apt-get install -y php7.0-ldap \ ;fi +##################################### +# IMAP: +##################################### + +ARG INSTALL_IMAP=false +ENV INSTALL_IMAP ${INSTALL_IMAP} + +RUN if [ ${INSTALL_IMAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y php7.0-imap \ +;fi + ##################################### # Set Timezone ##################################### diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index eedb8f2e..6fe59915 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -82,6 +82,18 @@ RUN if [ ${INSTALL_LDAP} = true ]; then \ apt-get install -y php7.1-ldap \ ;fi +##################################### +# IMAP: +##################################### + +ARG INSTALL_IMAP=false +ENV INSTALL_IMAP ${INSTALL_IMAP} + +RUN if [ ${INSTALL_IMAP} = true ]; then \ + apt-get update -yqq && \ + apt-get install -y php7.1-imap \ +;fi + ##################################### # Set Timezone ##################################### From 4fc85d499df1204f20caa8c066fd9846be8ac531 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Tue, 7 Nov 2017 10:52:23 +0800 Subject: [PATCH 237/313] Update Dockerfile-70 Remove duplicate configuration --- php-fpm/Dockerfile-70 | 9 --------- 1 file changed, 9 deletions(-) diff --git a/php-fpm/Dockerfile-70 b/php-fpm/Dockerfile-70 index 3530b76d..d3ebbd18 100644 --- a/php-fpm/Dockerfile-70 +++ b/php-fpm/Dockerfile-70 @@ -229,15 +229,6 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \ docker-php-ext-install mysqli \ ;fi -##################################### -# postgres Modifications: -##################################### - -ARG INSTALL_POSTGRES=false -RUN if [ ${INSTALL_POSTGRES} = true ]; then \ - docker-php-ext-install pgsql \ -;fi - ##################################### # Tokenizer Modifications: ##################################### From 5835d185f216d198a92b66ac94daffc75841a558 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Tue, 7 Nov 2017 10:53:26 +0800 Subject: [PATCH 238/313] Update Dockerfile-71 Remove duplicate configuration. --- php-fpm/Dockerfile-71 | 9 --------- 1 file changed, 9 deletions(-) diff --git a/php-fpm/Dockerfile-71 b/php-fpm/Dockerfile-71 index cefc64c8..a4fa522a 100644 --- a/php-fpm/Dockerfile-71 +++ b/php-fpm/Dockerfile-71 @@ -238,15 +238,6 @@ RUN if [ ${INSTALL_MYSQLI} = true ]; then \ docker-php-ext-install mysqli \ ;fi -##################################### -# postgres Modifications: -##################################### - -ARG INSTALL_POSTGRES=false -RUN if [ ${INSTALL_POSTGRES} = true ]; then \ - docker-php-ext-install pgsql \ -;fi - ##################################### # Tokenizer Modifications: ##################################### From fd5bb38a8ce41fac6b4da8274e8b649c0a5cc906 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Tue, 7 Nov 2017 10:54:19 +0800 Subject: [PATCH 239/313] Update env-example Remove duplicate configuration --- env-example | 1 - 1 file changed, 1 deletion(-) diff --git a/env-example b/env-example index 95d5e254..285c173e 100644 --- a/env-example +++ b/env-example @@ -78,7 +78,6 @@ PHP_FPM_INSTALL_EXIF=false PHP_FPM_INSTALL_AEROSPIKE=false PHP_FPM_INSTALL_MYSQLI=false PHP_FPM_INSTALL_PGSQL=false -PHP_FPM_INSTALL_POSTGRES=false PHP_FPM_INSTALL_TOKENIZER=false PHP_FPM_INSTALL_INTL=false PHP_FPM_INSTALL_GHOSTSCRIPT=false From 1b1f6b70484ff34863945e988c9521ff5f02e461 Mon Sep 17 00:00:00 2001 From: zuohuadong Date: Tue, 7 Nov 2017 10:55:27 +0800 Subject: [PATCH 240/313] fix error --- caddy/Caddyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddy/Caddyfile b/caddy/Caddyfile index 288d9d3b..2545ef6d 100644 --- a/caddy/Caddyfile +++ b/caddy/Caddyfile @@ -25,6 +25,6 @@ # dns cloudflare #} } -laradock.demo { +laradock.demo:80 { root /var/www/public } From beecbe758be95dae68c8b8c5a32b8a1a17312836 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 8 Nov 2017 04:55:58 +0200 Subject: [PATCH 241/313] add Ads to docs --- .travis.yml | 6 +- .../layouts/_default/single.html | 18 +++++- .../hugo-material-docs/layouts/index.html | 14 +++++ .../layouts/partials/drawer.html | 60 +++++++++++++------ 4 files changed, 74 insertions(+), 24 deletions(-) diff --git a/.travis.yml b/.travis.yml index 887b61ac..7af8a7d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,9 @@ services: - docker env: - matrix: + matrix: + - HUGO_VERSION=0.20.2 + - PHP_VERSION=56 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis" - PHP_VERSION=70 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis" - PHP_VERSION=71 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis" @@ -37,8 +39,6 @@ env: - PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer" - PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer" - - HUGO_VERSION=0.20.2 - # Installing a newer Docker version before_install: - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - diff --git a/DOCUMENTATION/themes/hugo-material-docs/layouts/_default/single.html b/DOCUMENTATION/themes/hugo-material-docs/layouts/_default/single.html index 8ed8bfd6..af662ad5 100644 --- a/DOCUMENTATION/themes/hugo-material-docs/layouts/_default/single.html +++ b/DOCUMENTATION/themes/hugo-material-docs/layouts/_default/single.html @@ -20,11 +20,25 @@
    {{ partial "drawer" . }} -
    +
    -

    {{ .Title }} {{ if .IsDraft }} (Draft){{ end }}

    + + + + + + + + + +

    {{ .Title }} {{ if .IsDraft }} (Draft){{ end }}

    {{ .Content }} diff --git a/DOCUMENTATION/themes/hugo-material-docs/layouts/index.html b/DOCUMENTATION/themes/hugo-material-docs/layouts/index.html index 703e7e8c..f76e458e 100644 --- a/DOCUMENTATION/themes/hugo-material-docs/layouts/index.html +++ b/DOCUMENTATION/themes/hugo-material-docs/layouts/index.html @@ -24,6 +24,20 @@
    + + + + + + + + + {{ range where .Site.Pages "Type" "index" }}

    {{ .Title }} {{ if .IsDraft }} (Draft){{ end }}

    diff --git a/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html b/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html index cf03d552..052b48a2 100644 --- a/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html +++ b/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html @@ -42,18 +42,39 @@ {{ end }} - {{ if isset .Site.Params "author" }} + +
    +
    +
    + + + + + + + +
    +
    +
    + + + - - - {{ end }} + + + + + + + + +
    +
    From 7e393efbb63690027aa22ce792b37844cf953b19 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 8 Nov 2017 05:16:50 +0200 Subject: [PATCH 242/313] add donations section --- .github/README.md | 10 ++++++++++ DOCUMENTATION/content/introduction/index.md | 14 ++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/.github/README.md b/.github/README.md index 7bc43ac1..f76d6473 100644 --- a/.github/README.md +++ b/.github/README.md @@ -44,6 +44,16 @@ - [Vince Chu](https://github.com/vwchu) @vwchu - Join Us. + +## Donations + +Help keeping the project development going, by [contributing](http://laradock.io/contributing/) or donating. +Thanks in advance. + +[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/mzalt) + +[![Beerpay](https://beerpay.io/apiato/apiato/badge.svg?style=flat)](https://beerpay.io/laradock/laradock) + ## License [MIT License](https://github.com/laradock/laradock/blob/master/LICENSE) diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 4d484b12..4472fa9e 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -170,3 +170,17 @@ What's better than a **Demo Video**: You are welcome to join our chat room on Gitter. [![Gitter](https://badges.gitter.im/Laradock/laradock.svg)](https://gitter.im/Laradock/laradock?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) + + + + + + +## Donations + +Help keeping the project development going, by [contributing](http://laradock.io/contributing/) or donating. +Thanks in advance. + +[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/mzalt) + +[![Beerpay](https://beerpay.io/apiato/apiato/badge.svg?style=flat)](https://beerpay.io/laradock/laradock) From 6f3c41b84d2be84228f07b69b4b1fdfbe78421c5 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 8 Nov 2017 08:18:26 +0200 Subject: [PATCH 243/313] add sponsors section --- .github/README.md | 8 +++++++- DOCUMENTATION/content/introduction/index.md | 4 ++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index f76d6473..d3e37425 100644 --- a/.github/README.md +++ b/.github/README.md @@ -29,7 +29,13 @@

    -## Credits +## Sponsors + + + Sponsor + + +## Contributors - [Mahmoud Zalt](https://github.com/Mahmoudz) @mahmoudz | [Twitter](https://twitter.com/Mahmoud_Zalt) | [Site](http://zalt.me) - [Bo-Yi Wu](https://github.com/appleboy) @appleboy | [Twitter](https://twitter.com/appleboy) diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index 4472fa9e..d19b5687 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -172,7 +172,11 @@ You are welcome to join our chat room on Gitter. [![Gitter](https://badges.gitter.im/Laradock/laradock.svg)](https://gitter.im/Laradock/laradock?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) +## Sponsors + + Sponsor + From c7695ca175d218301f9f6438690711928fc57910 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 8 Nov 2017 08:31:29 +0200 Subject: [PATCH 244/313] add Huadong Zuo @zuohuadong to the contributors list --- .github/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index d3e37425..223d989a 100644 --- a/.github/README.md +++ b/.github/README.md @@ -48,7 +48,8 @@ - [Yu-Lung Shao (Allen)](https://github.com/bestlong) @bestlong - [Milan Urukalo](https://github.com/urukalo) @urukalo - [Vince Chu](https://github.com/vwchu) @vwchu -- Join Us. +- [Huadong Zuo](https://github.com/zuohuadong) @zuohuadong +- Join us, by contributing. ## Donations From 7138d7a13c797339f1c3c5930d9cc6a2d9505d9c Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Wed, 8 Nov 2017 09:01:40 +0200 Subject: [PATCH 245/313] update some text in the index page --- .github/README.md | 17 +++++++++++++---- DOCUMENTATION/content/introduction/index.md | 19 ++++++++++++------- 2 files changed, 25 insertions(+), 11 deletions(-) diff --git a/.github/README.md b/.github/README.md index 223d989a..40fe7c60 100644 --- a/.github/README.md +++ b/.github/README.md @@ -37,6 +37,7 @@ ## Contributors +#### Core contributors: - [Mahmoud Zalt](https://github.com/Mahmoudz) @mahmoudz | [Twitter](https://twitter.com/Mahmoud_Zalt) | [Site](http://zalt.me) - [Bo-Yi Wu](https://github.com/appleboy) @appleboy | [Twitter](https://twitter.com/appleboy) - [Philippe Trépanier](https://github.com/philtrep) @philtrep @@ -49,17 +50,25 @@ - [Milan Urukalo](https://github.com/urukalo) @urukalo - [Vince Chu](https://github.com/vwchu) @vwchu - [Huadong Zuo](https://github.com/zuohuadong) @zuohuadong -- Join us, by contributing. +- Join us, by submitting 20 useful PR's. + +#### Awesome contributors: +- See full list [here](https://github.com/apiato/apiato/graphs/contributors). ## Donations -Help keeping the project development going, by [contributing](http://laradock.io/contributing/) or donating. -Thanks in advance. +> Help keeping the project development going, by [contributing](http://laradock.io/contributing) or donating a little. +> Thanks in advance. + +Donate directly via [Paypal](https://www.paypal.me/mzalt) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/mzalt) -[![Beerpay](https://beerpay.io/apiato/apiato/badge.svg?style=flat)](https://beerpay.io/laradock/laradock) +or show your support via [Beerpay](https://beerpay.io/laradock/laradock) + +[![Beerpay](https://beerpay.io/laradock/laradock/badge.svg?style=flat)](https://beerpay.io/laradock/laradock) + ## License diff --git a/DOCUMENTATION/content/introduction/index.md b/DOCUMENTATION/content/introduction/index.md index d19b5687..eda748cf 100644 --- a/DOCUMENTATION/content/introduction/index.md +++ b/DOCUMENTATION/content/introduction/index.md @@ -116,6 +116,11 @@ If you can't find your Software in the list, build it yourself and submit it. Co +## Sponsors + + + Sponsor + @@ -172,19 +177,19 @@ You are welcome to join our chat room on Gitter. [![Gitter](https://badges.gitter.im/Laradock/laradock.svg)](https://gitter.im/Laradock/laradock?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) -## Sponsors - - Sponsor - ## Donations -Help keeping the project development going, by [contributing](http://laradock.io/contributing/) or donating. -Thanks in advance. +> Help keeping the project development going, by [contributing](http://laradock.io/contributing) or donating a little. +> Thanks in advance. + +Donate directly via [Paypal](https://www.paypal.me/mzalt) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/mzalt) -[![Beerpay](https://beerpay.io/apiato/apiato/badge.svg?style=flat)](https://beerpay.io/laradock/laradock) +or show your support via [Beerpay](https://beerpay.io/laradock/laradock) + +[![Beerpay](https://beerpay.io/laradock/laradock/badge.svg?style=flat)](https://beerpay.io/laradock/laradock) From 34ef36cd7e004a565e7c77220049e470b83f5962 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Fri, 10 Nov 2017 14:37:01 +0200 Subject: [PATCH 246/313] doc updates --- DOCUMENTATION/content/documentation/index.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/DOCUMENTATION/content/documentation/index.md b/DOCUMENTATION/content/documentation/index.md index 9900f648..113ca3cd 100644 --- a/DOCUMENTATION/content/documentation/index.md +++ b/DOCUMENTATION/content/documentation/index.md @@ -574,13 +574,15 @@ docker-compose up -d php-worker docker-compose up -d redis ``` +> To execute redis commands, enter the redis container first `docker-compose exec redis bash` then enter the `redis-cli`. + 2 - Open your Laravel's `.env` file and set the `REDIS_HOST` to `redis` ```env REDIS_HOST=redis ``` -If you don't find the `REDIS_HOST` variable in your `.env` file. Go to the database configuration file `config/database.php` and replace the default `127.0.0.1` IP with `redis` for Redis like this: +If you're using Laravel, and you don't find the `REDIS_HOST` variable in your `.env` file. Go to the database configuration file `config/database.php` and replace the default `127.0.0.1` IP with `redis` for Redis like this: ```php 'redis' => [ @@ -820,19 +822,20 @@ docker-compose up -d elasticsearch 2 - Open your browser and visit the localhost on port **9200**: `http://localhost:9200` +> The default username is `user` and the default password is `changeme`. ### Install ElasticSearch Plugin -1 - Install the ElasticSearch plugin like [delete-by-query](https://www.elastic.co/guide/en/elasticsearch/plugins/current/plugins-delete-by-query.html). +1 - Install an ElasticSearch plugin. ```bash -docker exec {container-name} /usr/share/elasticsearch/bin/plugin install delete-by-query +docker-compose exec elasticsearch /usr/share/elasticsearch/bin/plugin install {plugin-name} ``` 2 - Restart elasticsearch container ```bash -docker restart {container-name} +docker-compose restart elasticsearch ``` From c5ccc2f4ff26adce44ce98373b951ff14eae3f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Desseaux?= Date: Sun, 12 Nov 2017 11:04:57 +0100 Subject: [PATCH 247/313] soving python issue when using INSTALL_NODE=true and VueJS with Laravel. --- env-example | 1 - workspace/Dockerfile-71 | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/env-example b/env-example index 5d082ab9..14c047dc 100644 --- a/env-example +++ b/env-example @@ -322,4 +322,3 @@ PHP_IDE_CONFIG=serverName=laradock # Fix for windows users to make sure the application path works. COMPOSE_CONVERT_WINDOWS_PATHS=1 - diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 6fe59915..b745eaf8 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -52,7 +52,8 @@ ENV PGID ${PGID} RUN groupadd -g ${PGID} laradock && \ useradd -u ${PUID} -g laradock -m laradock && \ - apt-get update -yqq + apt-get update -yqq \ + apt-get install -y python2.7 ##################################### # SOAP: @@ -682,7 +683,8 @@ RUN if [ ${INSTALL_DUSK_DEPS} = true ]; then \ # Clean up USER root RUN apt-get clean && \ - rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ + npm config set python /usr/bin/python2.7 # Set default work directory WORKDIR /var/www From b47963c80d88ff393ce25b0df1c9c8986dcdfdae Mon Sep 17 00:00:00 2001 From: Thorvald Falkenburg Date: Sun, 12 Nov 2017 19:45:44 +0100 Subject: [PATCH 248/313] Fix Dockerfile Building the workspace docker image with Dockerfile-71 failed because of missing "&&" --- workspace/Dockerfile-71 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index b745eaf8..98c98614 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -52,7 +52,7 @@ ENV PGID ${PGID} RUN groupadd -g ${PGID} laradock && \ useradd -u ${PUID} -g laradock -m laradock && \ - apt-get update -yqq \ + apt-get update -yqq && \ apt-get install -y python2.7 ##################################### From bd0f04bd80ccb308a254aa300c967350b1c290f8 Mon Sep 17 00:00:00 2001 From: huadong zuo Date: Mon, 13 Nov 2017 18:33:28 +0800 Subject: [PATCH 249/313] fix pgadmin-backup new version has new contents --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 494670d9..0d352062 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -485,7 +485,7 @@ services: ports: - "5050:5050" volumes: - - ${DATA_SAVE_PATH}/pgadmin-backup:/var/lib/pgadmin4/data/storage/pgadmin4 + - ${DATA_SAVE_PATH}/pgadmin-backup:/var/lib/pgadmin/storage/pgadmin4 depends_on: - postgres networks: From be13fdba7f61dda6fff4147534f7f51408714d24 Mon Sep 17 00:00:00 2001 From: huadong zuo Date: Mon, 13 Nov 2017 18:35:11 +0800 Subject: [PATCH 250/313] upgrade Description upgrade Description --- pgadmin/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pgadmin/Dockerfile b/pgadmin/Dockerfile index 5836801f..0ad672b7 100644 --- a/pgadmin/Dockerfile +++ b/pgadmin/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Huadong Zuo # user: pgadmin4@pgadmin.org # password: admin -# pg_dump in "/usr/bin" -# backup in "/var/lib/pgadmin4/data/storage/pgadmin4/" +# pg_dump & postgresql all in "/usr/bin" +# backup in "/var/lib/pgadmin/storage/pgadmin4" EXPOSE 5050 From f0401f5047d833652c308b9ebbb7733e3af2d298 Mon Sep 17 00:00:00 2001 From: Joost Jacobs Date: Mon, 13 Nov 2017 14:39:57 +0100 Subject: [PATCH 251/313] Fixes laradock/laradock#/1245 by adding python to the image --- laravel-echo-server/Dockerfile | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/laravel-echo-server/Dockerfile b/laravel-echo-server/Dockerfile index 658da3ff..6a338f45 100644 --- a/laravel-echo-server/Dockerfile +++ b/laravel-echo-server/Dockerfile @@ -1,15 +1,22 @@ FROM node:alpine - + # Create app directory RUN mkdir -p /usr/src/app WORKDIR /usr/src/app - + # Install app dependencies COPY package.json /usr/src/app/ + +RUN apk add --update \ + python \ + python-dev \ + py-pip \ + build-base + RUN npm install - + # Bundle app source COPY laravel-echo-server.json /usr/src/app/laravel-echo-server.json - + EXPOSE 3000 -CMD [ "npm", "start" ] \ No newline at end of file +CMD [ "npm", "start" ] From 05dd1b0339234622226b076186d76e1a3387193d Mon Sep 17 00:00:00 2001 From: Mariano D'Agostino Date: Mon, 13 Nov 2017 13:37:04 -0300 Subject: [PATCH 252/313] Fixes #1247 by removing /var/log/fastlog and /var/log/lastlog --- workspace/Dockerfile-56 | 3 +++ workspace/Dockerfile-70 | 3 +++ workspace/Dockerfile-71 | 3 +++ 3 files changed, 9 insertions(+) diff --git a/workspace/Dockerfile-56 b/workspace/Dockerfile-56 index 76fbe2cc..d6f43f42 100644 --- a/workspace/Dockerfile-56 +++ b/workspace/Dockerfile-56 @@ -16,6 +16,9 @@ FROM laradock/workspace:1.9-56 MAINTAINER Mahmoud Zalt +# Remove Faillog and Lastlog to reduce the size of the final image. +RUN rm /var/log/lastlog /var/log/faillog + # #-------------------------------------------------------------------------- # Mandatory Software's Installation diff --git a/workspace/Dockerfile-70 b/workspace/Dockerfile-70 index 06421db7..34752c1e 100644 --- a/workspace/Dockerfile-70 +++ b/workspace/Dockerfile-70 @@ -16,6 +16,9 @@ FROM laradock/workspace:1.9-70 MAINTAINER Mahmoud Zalt +# Remove Faillog and Lastlog to reduce the size of the final image. +RUN rm /var/log/lastlog /var/log/faillog + # #-------------------------------------------------------------------------- # Mandatory Software's Installation diff --git a/workspace/Dockerfile-71 b/workspace/Dockerfile-71 index 98c98614..2fdfe9ff 100644 --- a/workspace/Dockerfile-71 +++ b/workspace/Dockerfile-71 @@ -16,6 +16,9 @@ FROM laradock/workspace:1.9-71 MAINTAINER Mahmoud Zalt +# Remove Faillog and Lastlog to reduce the size of the final image. +RUN rm /var/log/lastlog /var/log/faillog + # #-------------------------------------------------------------------------- # Mandatory Software's Installation From 2fc0f3cb2ece8fd17a53036b32c53b059bb818ec Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 14 Nov 2017 12:53:30 +0200 Subject: [PATCH 253/313] improve readability of the .env file --- env-example | 72 ++++++++++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 39 deletions(-) diff --git a/env-example b/env-example index 14c047dc..9c401912 100644 --- a/env-example +++ b/env-example @@ -1,31 +1,47 @@ -############################ +########################################################### # General Setup -############################ +########################################################### -### Application Path -# Point to your application code, will be available at `/var/www`. +### Application Path ################################################################################################### +# Point to your code, will be available at `/var/www`. APPLICATION=../ -### Data Path: -# For all storage systems. - -DATA_SAVE_PATH=~/.laradock/data - -### PHP version -# Applies to the Workspace and PHP-FPM containers (Does not apply to HHVM) -# Accepted values: 71 - 70 - 56 +### PHP Version ######################################################################################################## +# Select a PHP version of the Workspace and PHP-FPM containers (Does not apply to HHVM). Accepted values: 71 - 70 - 56 PHP_VERSION=71 -### PHP interpreter -# Accepted values: hhvm - php-fpm +### PHP Interpreter #################################################################################################### +# Select the PHP Interpreter. Accepted values: hhvm - php-fpm PHP_INTERPRETER=php-fpm -############################ +### Data Path ########################################################################################################## +# Choose storage path on your machine. For all storage systems. + +DATA_SAVE_PATH=~/.laradock/data + +### Docker Host IP ##################################################################################################### +# Enter your Docker Host IP (will be appended to /etc/hosts). Default is `10.0.75.1` + +DOCKER_HOST_IP=10.0.75.1 + +### Remote Interpreter ################################################################################################# +# Choose a Remote Interpreter entry matching name. Default is `laradock` + +PHP_IDE_CONFIG=serverName=laradock + +### Windows Path ####################################################################################################### +# A fix for Windows users, to ensure the application path works. + +COMPOSE_CONVERT_WINDOWS_PATHS=1 + +######################################################################################################################## + +########################################################### # Containers Customization -############################ +########################################################### ### WORKSPACE ########################################################################################################## @@ -299,26 +315,4 @@ LARAVEL_ECHO_SERVER_PORT=6001 DOCKER_SYNC_STRATEGY=native_osx -##### TO BE CONTINUE ................................. - -# ......... Missing: neo4j mongo rethinkdb redis aerospike pgadmin... -# ......... -# ......... - -############################ -# Miscellaneous -############################ - -# Replace with your Docker Host IP (will be appended to /etc/hosts) - -DOCKER_HOST_IP=10.0.75.1 - - -# The Remote Interpreter entry matching name `laradock` - -PHP_IDE_CONFIG=serverName=laradock - - -# Fix for windows users to make sure the application path works. - -COMPOSE_CONVERT_WINDOWS_PATHS=1 +######################################################################################################################## From a99281cda844eb8a3a9d00ff4b8dd00406c22f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=89=9F=E5=8B=87?= Date: Tue, 14 Nov 2017 21:01:07 +0800 Subject: [PATCH 254/313] Change application source from dl-cdn.alpinelinux.org to aliyun source --- env-example | 5 +++++ nginx/Dockerfile | 13 +++++++++---- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/env-example b/env-example index 9c401912..e69c33ed 100644 --- a/env-example +++ b/env-example @@ -2,6 +2,11 @@ # General Setup ########################################################### +### Environment ######################################################################################################## +# If you're in China, or you need to change sources, will be set CHANGE_SOURCE to true in .env. + +CHANGE_SOURCE=false + ### Application Path ################################################################################################### # Point to your code, will be available at `/var/www`. diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 77f4abdd..7fe29820 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -4,17 +4,22 @@ MAINTAINER Mahmoud Zalt ADD nginx.conf /etc/nginx/ -ARG PHP_UPSTREAM_CONTAINER=php-fpm -ARG PHP_UPSTREAM_PORT=9000 +# If you're in China, or you need to change sources, will be set CHANGE_SOURCE to true in .env. -# fix a problem--#397, change application source from dl-cdn.alpinelinux.org to aliyun source. -RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories +ARG CHANGE_SOURCE=false +RUN if [ ${CHANGE_SOURCE} = true ]; then \ + # Change application source from dl-cdn.alpinelinux.org to aliyun source + RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories +;fi RUN apk update \ && apk upgrade \ && apk add --no-cache bash \ && adduser -D -H -u 1000 -s /bin/bash www-data +ARG PHP_UPSTREAM_CONTAINER=php-fpm +ARG PHP_UPSTREAM_PORT=9000 + # Set upstream conf and remove the default conf RUN echo "upstream php-upstream { server ${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}; }" > /etc/nginx/conf.d/upstream.conf \ && rm /etc/nginx/conf.d/default.conf From ff20333d8c19945a6eaa88a3c8c03b05f5eb1f54 Mon Sep 17 00:00:00 2001 From: G Roques Date: Tue, 14 Nov 2017 09:41:58 -0600 Subject: [PATCH 255/313] Fix logo covering links in mobile drawer menu (Closes #1252) --- .../layouts/partials/drawer.html | 1 + .../static/stylesheets/highlight/highlight.css | 14 +++++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html b/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html index 052b48a2..62e6fa2c 100644 --- a/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html +++ b/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html @@ -5,6 +5,7 @@ + Laradock {{ end }} diff --git a/DOCUMENTATION/themes/hugo-material-docs/static/stylesheets/highlight/highlight.css b/DOCUMENTATION/themes/hugo-material-docs/static/stylesheets/highlight/highlight.css index 179f790e..6f2f2d8a 100644 --- a/DOCUMENTATION/themes/hugo-material-docs/static/stylesheets/highlight/highlight.css +++ b/DOCUMENTATION/themes/hugo-material-docs/static/stylesheets/highlight/highlight.css @@ -108,9 +108,17 @@ font-weight:700; OVERRIDING THE DEFAULT STYLES - By Mahmoud Zalt (mahmoud@zalt.me) for Laradock.io */ -.project .logo img{ - width: 140px; - height: 140px; + +.project .logo img { + max-width: 100%; + height: auto; background: transparent; border-radius: 0%; } + +.project .banner { + display: flex; + align-items: center; + font-size: 14px; + font-weight: bold; +} \ No newline at end of file From 5bcb99dfb9b9fcec3ce8c9537465a7ed44a3beaa Mon Sep 17 00:00:00 2001 From: huadong zuo Date: Wed, 15 Nov 2017 13:00:57 +0800 Subject: [PATCH 256/313] add git & Chinese users friendly. China can not access golang.org. --- caddy/Dockerfile | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/caddy/Dockerfile b/caddy/Dockerfile index aca00cdb..70d69c38 100644 --- a/caddy/Dockerfile +++ b/caddy/Dockerfile @@ -1,17 +1,15 @@ -FROM golang +FROM zuohuadong/caddy:alpine + MAINTAINER Huadong Zuo -ARG plugins="git" +ARG plugins="cors" -## If you come frome china, please ues it. +## ARG plugins="cors cgi cloudflare azure linode" -# RUN echo "172.217.6.127 golang.org" >> /etc/hosts -RUN go get github.com/abiosoft/caddyplug/caddyplug \ - && caddyplug install-caddy \ - && caddyplug install git -RUN caddy --version +RUN caddyplug install ${plugins} + EXPOSE 80 443 2015 From 9835a208635b02dcfafd2f2781d24db80efdd05c Mon Sep 17 00:00:00 2001 From: huadong zuo Date: Wed, 15 Nov 2017 13:05:26 +0800 Subject: [PATCH 257/313] Remove useless... Remove useless... --- env-example | 1 - 1 file changed, 1 deletion(-) diff --git a/env-example b/env-example index 9c401912..a46bff3e 100644 --- a/env-example +++ b/env-example @@ -95,7 +95,6 @@ PHP_FPM_INSTALL_EXIF=false PHP_FPM_INSTALL_AEROSPIKE=false PHP_FPM_INSTALL_MYSQLI=false PHP_FPM_INSTALL_PGSQL=false -PHP_FPM_INSTALL_POSTGRES=false PHP_FPM_INSTALL_TOKENIZER=false PHP_FPM_INSTALL_INTL=false PHP_FPM_INSTALL_GHOSTSCRIPT=false From 50a3e24db8292db2617f8e0119fb46948f5edf3f Mon Sep 17 00:00:00 2001 From: Ricardo Seriani Date: Thu, 16 Nov 2017 12:13:00 -0200 Subject: [PATCH 258/313] Remove the github paragraph on header Remove the github paragraph on header, since it already has a link to github using aria to accessibility --- .../themes/hugo-material-docs/layouts/partials/header.html | 1 - 1 file changed, 1 deletion(-) diff --git a/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/header.html b/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/header.html index 472324c6..526aec8f 100644 --- a/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/header.html +++ b/DOCUMENTATION/themes/hugo-material-docs/layouts/partials/header.html @@ -21,7 +21,6 @@
    -

    Github

    {{ end }}