Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jenkins PR (803) causing issues #809

Closed
mikeerickson opened this issue Apr 15, 2017 · 7 comments
Closed

Jenkins PR (803) causing issues #809

mikeerickson opened this issue Apr 15, 2017 · 7 comments

Comments

@mikeerickson
Copy link
Contributor

It seems the Jenkins PR #803 has some problems

I created a new installation with the latest master repo, but when I ran docker-compose up -d nginx there are number of errors and warnings output all related to Jenkins. Without going into a deeper debug task, I just disabled all the Jenkins stuff in the docker-compose.yml file.

@activeobjects Could you please have a look at this and see what is happening. You might have to clean out all your images, etc. (or however you test with a clean slate).

@thorerik
Copy link
Contributor

A number of errors? What errors? with a clean copy of the repo I get no errors when running cp env-example .env && docker-compose up -d nginx

@bestlong
Copy link
Member

bestlong commented May 2, 2017

@mikeerickson FYI

At My MAC not about Jenkins errors, my step:
clone git master to /tmp/laradock
cd /tmp/laradock
cp env-example .env
docker-compose up -d --build nginx

/tmp/laradock (master)$ git log -n 1
commit b2821b85ab3b317583a3180f371601ecfb2124e1
Merge: 47150da 9413f2c
Author: Winfried <winfried-van-loon@users.noreply.github.com>
Date:   Mon May 1 21:11:57 2017 +0200

    Merge pull request #881 from winfried-van-loon/revert-unintended-md-formatting

    Reverting unintended MD formatting
/tmp/laradock (master)$ docker-compose up -d --build  nginx
Creating network "laradock_default" with the default driver
Creating network "laradock_frontend" with driver "bridge"
Creating network "laradock_backend" with driver "bridge"
Building workspace
Step 1/105 : FROM laradock/workspace:1.8-71
 ---> b88aa2c85533
Step 2/105 : MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
 ---> Using cache
 ---> c2308f27ef78
Step 3/105 : ARG PUID=1000
 ---> Using cache
 ---> 8dc077b6cfe4
Step 4/105 : ARG PGID=1000
 ---> Using cache
 ---> 4b640836480e
Step 5/105 : RUN groupadd -g $PGID laradock &&     useradd -u $PUID -g laradock -m laradock
 ---> Using cache
 ---> 3958080daa7c
Step 6/105 : USER root
 ---> Using cache
 ---> 99fc5c6ab656
Step 7/105 : ARG INSTALL_SOAP=false
 ---> Using cache
 ---> 5a3800bca595
Step 8/105 : ENV INSTALL_SOAP ${INSTALL_SOAP}
 ---> Using cache
 ---> 85373d32199e
Step 9/105 : RUN if [ ${INSTALL_SOAP} = true ]; then   apt-get -y update &&   add-apt-repository -y ppa:ondrej/php &&   apt-get -y install libxml2-dev php7.1-soap ;fi
 ---> Using cache
 ---> bbdbd991d282
Step 10/105 : ARG TZ=UTC
 ---> Using cache
 ---> f30653ea89be
Step 11/105 : ENV TZ ${TZ}
 ---> Using cache
 ---> 0bb727b8f3b4
Step 12/105 : RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
 ---> Using cache
 ---> de9485d8dab0
Step 13/105 : COPY ./composer.json /home/laradock/.composer/composer.json
 ---> Using cache
 ---> 7ceeb977cc51
Step 14/105 : RUN chown -R laradock:laradock /home/laradock/.composer
 ---> Using cache
 ---> a098c4a45cf2
Step 15/105 : USER laradock
 ---> Using cache
 ---> 91ea25e80d55
Step 16/105 : ARG COMPOSER_GLOBAL_INSTALL=false
 ---> Using cache
 ---> 3c70e06e486b
Step 17/105 : ENV COMPOSER_GLOBAL_INSTALL ${COMPOSER_GLOBAL_INSTALL}
 ---> Using cache
 ---> e8e2d68c5c07
Step 18/105 : RUN if [ ${COMPOSER_GLOBAL_INSTALL} = true ]; then     composer global install ;fi
 ---> Using cache
 ---> a64ce91c57f4
Step 19/105 : USER root
 ---> Using cache
 ---> 938d858b682d
Step 20/105 : COPY ./crontab /etc/cron.d
 ---> Using cache
 ---> dd226b512632
Step 21/105 : RUN chmod -R 644 /etc/cron.d
 ---> Using cache
 ---> 9f1b42211786
Step 22/105 : USER laradock
 ---> Using cache
 ---> 9ebb2c132071
Step 23/105 : COPY ./aliases.sh /home/laradock/aliases.sh
 ---> Using cache
 ---> 9ab371c3f375
Step 24/105 : RUN echo "" >> ~/.bashrc &&     echo "# Load Custom Aliases" >> ~/.bashrc &&     echo "source /home/laradock/aliases.sh" >> ~/.bashrc &&     echo "" >> ~/.bashrc
 ---> Using cache
 ---> e8b8debe5773
Step 25/105 : USER root
 ---> Using cache
 ---> 81037db9bd31
Step 26/105 : RUN echo "" >> ~/.bashrc &&     echo "# Load Custom Aliases" >> ~/.bashrc &&     echo "source /home/laradock/aliases.sh" >> ~/.bashrc &&     echo "" >> ~/.bashrc
 ---> Using cache
 ---> a8f150575d08
Step 27/105 : ARG INSTALL_XDEBUG=false
 ---> Using cache
 ---> 9ca30877db37
Step 28/105 : RUN if [ ${INSTALL_XDEBUG} = true ]; then     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 ;fi
 ---> Using cache
 ---> 692cbd230df9
Step 29/105 : COPY ./xdebug.ini /etc/php/7.1/cli/conf.d/xdebug.ini
 ---> Using cache
 ---> d2766fa4654d
Step 30/105 : ARG INSTALL_BLACKFIRE=false
 ---> Using cache
 ---> 1f6c4655d50e
Step 31/105 : ARG BLACKFIRE_CLIENT_ID
 ---> Using cache
 ---> 11e373ce84b6
Step 32/105 : ARG BLACKFIRE_CLIENT_TOKEN
 ---> Using cache
 ---> 83b9ffabe465
Step 33/105 : ENV BLACKFIRE_CLIENT_ID ${BLACKFIRE_CLIENT_ID}
 ---> Using cache
 ---> 31f4183ca83d
Step 34/105 : ENV BLACKFIRE_CLIENT_TOKEN ${BLACKFIRE_CLIENT_TOKEN}
 ---> Using cache
 ---> a99a757b4b9b
Step 35/105 : 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 install blackfire-agent ;fi
 ---> Using cache
 ---> e0f49e2c6da1
Step 36/105 : ARG INSTALL_WORKSPACE_SSH=false
 ---> Using cache
 ---> 77f2fe1ede9e
Step 37/105 : ENV INSTALL_WORKSPACE_SSH ${INSTALL_WORKSPACE_SSH}
 ---> Using cache
 ---> 08bca73e7ae7
Step 38/105 : ADD insecure_id_rsa /tmp/id_rsa
 ---> Using cache
 ---> dcdefe9427c5
Step 39/105 : ADD insecure_id_rsa.pub /tmp/id_rsa.pub
 ---> Using cache
 ---> 03e0fbc70451
Step 40/105 : RUN if [ ${INSTALL_WORKSPACE_SSH} = true ]; then     rm -f /etc/service/sshd/down &&     cat /tmp/id_rsa.pub >> /root/.ssh/authorized_keys         && cat /tmp/id_rsa.pub >> /root/.ssh/id_rsa.pub         && cat /tmp/id_rsa >> /root/.ssh/id_rsa         && rm -f /tmp/id_rsa*         && chmod 644 /root/.ssh/authorized_keys /root/.ssh/id_rsa.pub     && chmod 400 /root/.ssh/id_rsa ;fi
 ---> Using cache
 ---> 4ad944e7ecd5
Step 41/105 : ARG INSTALL_MONGO=false
 ---> Using cache
 ---> c8d1275778d8
Step 42/105 : ENV INSTALL_MONGO ${INSTALL_MONGO}
 ---> Using cache
 ---> 2d797384e102
Step 43/105 : RUN if [ ${INSTALL_MONGO} = true ]; then     pecl install mongodb &&     echo "extension=mongodb.so" >> /etc/php/7.1/cli/conf.d/30-mongodb.ini ;fi
 ---> Using cache
 ---> 9d3c07ab51ad
Step 44/105 : USER root
 ---> Using cache
 ---> 60a87678bec0
Step 45/105 : ENV DRUSH_VERSION 8.1.2
 ---> Using cache
 ---> 799ec6edf0e2
Step 46/105 : ARG INSTALL_DRUSH=false
 ---> Using cache
 ---> d5acce099eac
Step 47/105 : ENV INSTALL_DRUSH ${INSTALL_DRUSH}
 ---> Using cache
 ---> 51c91f9d4216
Step 48/105 : RUN if [ ${INSTALL_DRUSH} = true ]; then     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
 ---> Using cache
 ---> fb23bae3087f
Step 49/105 : USER laradock
 ---> Using cache
 ---> 09324b053526
Step 50/105 : ARG NODE_VERSION=stable
 ---> Using cache
 ---> 9ef2d7698163
Step 51/105 : ENV NODE_VERSION ${NODE_VERSION}
 ---> Using cache
 ---> 9998398c3eca
Step 52/105 : ARG INSTALL_NODE=false
 ---> Using cache
 ---> 11cf1f689e60
Step 53/105 : ENV INSTALL_NODE ${INSTALL_NODE}
 ---> Using cache
 ---> 203f2205e2ed
Step 54/105 : ENV NVM_DIR /home/laradock/.nvm
 ---> Using cache
 ---> 9c5bff6c56f3
Step 55/105 : RUN if [ ${INSTALL_NODE} = true ]; then     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} &&         nvm alias ${NODE_VERSION} &&         npm install -g gulp bower vue-cli ;fi
 ---> Using cache
 ---> 3cdb40ea58b2
Step 56/105 : RUN if [ ${INSTALL_NODE} = true ]; then     echo "" >> ~/.bashrc &&     echo 'export NVM_DIR="$HOME/.nvm"' >> ~/.bashrc &&     echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"  # This loads nvm' >> ~/.bashrc ;fi
 ---> Using cache
 ---> a90e6acfab23
Step 57/105 : USER root
 ---> Using cache
 ---> 10317145b5b3
Step 58/105 : RUN if [ ${INSTALL_NODE} = true ]; then     echo "" >> ~/.bashrc &&     echo 'export NVM_DIR="/home/laradock/.nvm"' >> ~/.bashrc &&     echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"  # This loads nvm' >> ~/.bashrc ;fi
 ---> Using cache
 ---> dbe60f71bc93
Step 59/105 : USER laradock
 ---> Using cache
 ---> c10d996a3311
Step 60/105 : ARG INSTALL_YARN=false
 ---> Using cache
 ---> 03bca90a544d
Step 61/105 : ENV INSTALL_YARN ${INSTALL_YARN}
 ---> Using cache
 ---> 11233269ab21
Step 62/105 : ARG YARN_VERSION=latest
 ---> Using cache
 ---> 70f7aff877fb
Step 63/105 : ENV YARN_VERSION ${YARN_VERSION}
 ---> Using cache
 ---> 98d714a80b98
Step 64/105 : RUN if [ ${INSTALL_YARN} = true ]; then     [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" &&     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
 ---> Using cache
 ---> 585fafc1ce35
Step 65/105 : USER root
 ---> Using cache
 ---> de8f1027b89d
Step 66/105 : RUN if [ ${INSTALL_YARN} = true ]; then     echo "" >> ~/.bashrc &&     echo 'export YARN_DIR="/home/laradock/.yarn"' >> ~/.bashrc &&     echo 'export PATH="$YARN_DIR/bin:$PATH"' >> ~/.bashrc ;fi
 ---> Using cache
 ---> d3dcbd01f77d
Step 67/105 : USER root
 ---> Using cache
 ---> 2b2d078e7286
Step 68/105 : ARG INSTALL_AEROSPIKE_EXTENSION=true
 ---> Using cache
 ---> 2dd9f6bf503d
Step 69/105 : ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION}
 ---> Using cache
 ---> 9e366e2d98c5
Step 70/105 : COPY ./aerospike.ini /etc/php/7.1/cli/conf.d/aerospike.ini
 ---> Using cache
 ---> bc16b01dcbbd
Step 71/105 : RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then     curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/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         && phpize         && ./build.sh         && make install     )     && rm /tmp/aerospike-client-php.tar.gz ;fi
 ---> Using cache
 ---> efc761ef4718
Step 72/105 : RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = false ]; then     rm /etc/php/7.1/cli/conf.d/aerospike.ini ;fi
 ---> Using cache
 ---> 6d30bb59b21f
Step 73/105 : USER root
 ---> Using cache
 ---> 68208de1ab9a
Step 74/105 : ARG INSTALL_V8JS_EXTENSION=false
 ---> Using cache
 ---> 9755bacab7bf
Step 75/105 : ENV INSTALL_V8JS_EXTENSION ${INSTALL_V8JS_EXTENSION}
 ---> Using cache
 ---> 85e2ea258f31
Step 76/105 : RUN if [ ${INSTALL_V8JS_EXTENSION} = true ]; then     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/7.1/cli/php.ini ;fi
 ---> Using cache
 ---> b7c170296b3a
Step 77/105 : USER laradock
 ---> Using cache
 ---> b37f3c0fd5c6
Step 78/105 : RUN echo "" >> ~/.bashrc &&     echo 'export PATH="/var/www/vendor/bin:$PATH"' >> ~/.bashrc
 ---> Using cache
 ---> 2308cf48552f
Step 79/105 : USER root
 ---> Using cache
 ---> fd54b1dd5a37
Step 80/105 : RUN echo "" >> ~/.bashrc &&     echo 'alias art="php artisan"' >> ~/.bashrc
 ---> Using cache
 ---> 3d0e7edbb615
Step 81/105 : USER laradock
 ---> Using cache
 ---> bb2c4ed4f815
Step 82/105 : ARG INSTALL_LARAVEL_ENVOY=true
 ---> Using cache
 ---> 09c6c47fe57a
Step 83/105 : ENV INSTALL_LARAVEL_ENVOY ${INSTALL_LARAVEL_ENVOY}
 ---> Using cache
 ---> 35aac7be5b60
Step 84/105 : RUN if [ ${INSTALL_LARAVEL_ENVOY} = true ]; then     composer global require "laravel/envoy=~1.0" ;fi
 ---> Using cache
 ---> 09bbfceece31
Step 85/105 : USER laradock
 ---> Using cache
 ---> 0053abba3f0a
Step 86/105 : ARG INSTALL_DEPLOYER=false
 ---> Using cache
 ---> 0e84c7760391
Step 87/105 : ENV INSTALL_DEPLOYER ${INSTALL_DEPLOYER}
 ---> Using cache
 ---> 783bfe7ae9df
Step 88/105 : RUN if [ ${INSTALL_DEPLOYER} = true ]; then     composer global require "deployer/deployer" ;fi
 ---> Using cache
 ---> a42d3e4b1afe
Step 89/105 : USER root
 ---> Using cache
 ---> 95305f81b4b4
Step 90/105 : ARG INSTALL_LINUXBREW=true
 ---> Using cache
 ---> 5e1545216d4a
Step 91/105 : ENV INSTALL_LINUXBREW ${INSTALL_LINUXBREW}
 ---> Using cache
 ---> d1ef37287aa2
Step 92/105 : RUN if [ ${INSTALL_LINUXBREW} = true ]; then     apt-get update &&     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 &&     git clone 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 &&     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
 ---> Using cache
 ---> e7258359eecd
Step 93/105 : USER root
 ---> Using cache
 ---> 7f302a897df8
Step 94/105 : ARG INSTALL_MC=false
 ---> Using cache
 ---> fc7771124dab
Step 95/105 : ENV INSTALL_MC ${INSTALL_MC}
 ---> Using cache
 ---> ac4d91dabf2f
Step 96/105 : COPY mc/config.json /root/.mc/config.json
 ---> Using cache
 ---> b8638ac4f17e
Step 97/105 : 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
 ---> Using cache
 ---> 0993294bca6f
Step 98/105 : USER root
 ---> Using cache
 ---> f7d3e943797f
Step 99/105 : ARG INSTALL_SYMFONY=false
 ---> Using cache
 ---> b42c129e697b
Step 100/105 : ENV INSTALL_SYMFONY ${INSTALL_SYMFONY}
 ---> Using cache
 ---> 2390142e98a2
Step 101/105 : 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   && echo 'alias dev="php bin/console -e=dev"' >> ~/.bashrc   && echo 'alias prod="php bin/console -e=prod"' >> ~/.bashrc ;fi
 ---> Using cache
 ---> e177dcecb7cf
Step 102/105 : USER laradock
 ---> Using cache
 ---> d9de84c73e5a
Step 103/105 : USER root
 ---> Using cache
 ---> 3752a32f3df8
Step 104/105 : RUN apt-get clean &&     rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
 ---> Using cache
 ---> f9cf531b6e50
Step 105/105 : WORKDIR /var/www
 ---> Using cache
 ---> f6fa44bef692
Successfully built f6fa44bef692
Building php-fpm
Step 1/42 : FROM laradock/php-fpm:1.4-71
 ---> a8cca8d57319
Step 2/42 : MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
 ---> Using cache
 ---> 6bc4abcd43a2
Step 3/42 : ARG INSTALL_SOAP=false
 ---> Using cache
 ---> af456c86ff42
Step 4/42 : RUN if [ ${INSTALL_SOAP} = true ]; then     apt-get -y update &&     apt-get -y install libxml2-dev php-soap &&     docker-php-ext-install soap ;fi
 ---> Using cache
 ---> 8ef83ce72f6f
Step 5/42 : ARG INSTALL_XDEBUG=false
 ---> Using cache
 ---> 0f9f3257110e
Step 6/42 : RUN if [ ${INSTALL_XDEBUG} = true ]; then     pecl install xdebug &&     docker-php-ext-enable xdebug ;fi
 ---> Using cache
 ---> 64b5ea621dd9
Step 7/42 : COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
 ---> Using cache
 ---> e435f6bc746b
Step 8/42 : ARG INSTALL_BLACKFIRE=false
 ---> Using cache
 ---> bd91813dd697
Step 9/42 : RUN if [ ${INSTALL_XDEBUG} = false -a ${INSTALL_BLACKFIRE} = true ]; then     version=$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;")     && curl -A "Docker" -o /tmp/blackfire-probe.tar.gz -D - -L -s https://blackfire.io/api/v1/releases/probe/php/linux/amd64/$version     && tar zxpf /tmp/blackfire-probe.tar.gz -C /tmp     && mv /tmp/blackfire-*.so $(php -r "echo ini_get('extension_dir');")/blackfire.so     && printf "extension=blackfire.so\nblackfire.agent_socket=tcp://blackfire:8707\n" > $PHP_INI_DIR/conf.d/blackfire.ini ;fi
 ---> Using cache
 ---> b5126d171902
Step 10/42 : ARG INSTALL_PHPREDIS=false
 ---> Using cache
 ---> 216188a4ee77
Step 11/42 : RUN if [ ${INSTALL_PHPREDIS} = true ]; then     pecl install -o -f redis     &&  rm -rf /tmp/pear     &&  docker-php-ext-enable redis ;fi
 ---> Using cache
 ---> 7e5294972c9e
Step 12/42 : ARG INSTALL_MONGO=false
 ---> Using cache
 ---> 2f407b484445
Step 13/42 : RUN if [ ${INSTALL_MONGO} = true ]; then     pecl install mongodb &&     docker-php-ext-enable mongodb ;fi
 ---> Using cache
 ---> 5881378de6bd
Step 14/42 : ARG INSTALL_ZIP_ARCHIVE=false
 ---> Using cache
 ---> b05259008f22
Step 15/42 : RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then     docker-php-ext-install zip ;fi
 ---> Using cache
 ---> 2415e420309d
Step 16/42 : ARG INSTALL_BCMATH=false
 ---> Using cache
 ---> 9f71a87943dd
Step 17/42 : RUN if [ ${INSTALL_BCMATH} = true ]; then     docker-php-ext-install bcmath ;fi
 ---> Using cache
 ---> 2d7841156a80
Step 18/42 : ARG INSTALL_MEMCACHED=false
 ---> Using cache
 ---> 1459d17e9e3f
Step 19/42 : RUN if [ ${INSTALL_MEMCACHED} = true ]; then     curl -L -o /tmp/memcached.tar.gz "https://github.com/php-memcached-dev/php-memcached/archive/php7.tar.gz"     && mkdir -p memcached     && tar -C memcached -zxvf /tmp/memcached.tar.gz --strip 1     && (         cd memcached         && phpize         && ./configure         && make -j$(nproc)         && make install     )     && rm -r memcached     && rm /tmp/memcached.tar.gz     && docker-php-ext-enable memcached ;fi
 ---> Using cache
 ---> 483320aec486
Step 20/42 : ARG INSTALL_EXIF=false
 ---> Using cache
 ---> 25888d6c0b8e
Step 21/42 : RUN if [ ${INSTALL_EXIF} = true ]; then     docker-php-ext-install exif ;fi
 ---> Using cache
 ---> dec400b55881
Step 22/42 : ARG INSTALL_AEROSPIKE_EXTENSION=false
 ---> Using cache
 ---> aa46302d3750
Step 23/42 : ENV INSTALL_AEROSPIKE_EXTENSION ${INSTALL_AEROSPIKE_EXTENSION}
 ---> Using cache
 ---> 3b7aaec65a05
Step 24/42 : COPY ./aerospike.ini /usr/local/etc/php/conf.d/aerospike.ini
 ---> Using cache
 ---> a1586b8159a6
Step 25/42 : RUN if [ ${INSTALL_AEROSPIKE_EXTENSION} = true ]; then     curl -L -o /tmp/aerospike-client-php.tar.gz "https://github.com/luciano-jr/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         && phpize         && ./build.sh         && make install     )     && rm /tmp/aerospike-client-php.tar.gz     && docker-php-ext-enable aerospike ;fi
 ---> Using cache
 ---> 45ffaafd2868
Step 26/42 : ARG INSTALL_OPCACHE=false
 ---> Using cache
 ---> f347363af67c
Step 27/42 : RUN if [ ${INSTALL_OPCACHE} = true ]; then     docker-php-ext-install opcache ;fi
 ---> Using cache
 ---> 1adc02b47d22
Step 28/42 : COPY ./opcache.ini /usr/local/etc/php/conf.d/opcache.ini
 ---> Using cache
 ---> dfc944e9c58d
Step 29/42 : ARG INSTALL_MYSQLI=false
 ---> Using cache
 ---> b5c06422a9c7
Step 30/42 : RUN if [ ${INSTALL_MYSQLI} = true ]; then     docker-php-ext-install mysqli ;fi
 ---> Using cache
 ---> 798c9e51b92b
Step 31/42 : ARG INSTALL_TOKENIZER=false
 ---> Using cache
 ---> 795262f286bc
Step 32/42 : RUN if [ ${INSTALL_TOKENIZER} = true ]; then      docker-php-ext-install tokenizer ;fi
 ---> Using cache
 ---> bf49cf7350ed
Step 33/42 : ARG INSTALL_INTL=false
 ---> Using cache
 ---> ef1e40294832
Step 34/42 : RUN if [ ${INSTALL_INTL} = true ]; then     apt-get -y update &&     apt-get install -y zlib1g-dev libicu-dev g++ &&     docker-php-ext-configure intl &&     docker-php-ext-install intl ;fi
 ---> Using cache
 ---> 71a587831b9b
Step 35/42 : ARG INSTALL_GHOSTSCRIPT=false
 ---> Using cache
 ---> 5c27bc870b69
Step 36/42 : RUN if [ ${INSTALL_GHOSTSCRIPT} = true ]; then     apt-get -y update     && apt-get install -y     poppler-utils     ghostscript ;fi
 ---> Using cache
 ---> 9ad3fb694c8b
Step 37/42 : ADD ./laravel.ini /usr/local/etc/php/conf.d
 ---> Using cache
 ---> 50a8768cad66
Step 38/42 : ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
 ---> Using cache
 ---> 90c490dfbaa5
Step 39/42 : RUN usermod -u 1000 www-data
 ---> Using cache
 ---> ba8226506f00
Step 40/42 : WORKDIR /var/www
 ---> Using cache
 ---> 3cab5fa4a873
Step 41/42 : CMD php-fpm
 ---> Using cache
 ---> 9f9466d068a6
Step 42/42 : EXPOSE 9000
 ---> Using cache
 ---> 02ee1bbbaab4
Successfully built 02ee1bbbaab4
Building nginx
Step 1/8 : FROM nginx:alpine
 ---> 0ae090dba3ab
Step 2/8 : MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
 ---> Using cache
 ---> 532ca39806d4
Step 3/8 : ADD nginx.conf /etc/nginx/
 ---> Using cache
 ---> ae22d83e1a2a
Step 4/8 : ARG PHP_UPSTREAM=php-fpm
 ---> Using cache
 ---> a7acd5dbe6e7
Step 5/8 : RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories
 ---> Using cache
 ---> 13929a8af18d
Step 6/8 : 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
 ---> Using cache
 ---> 866a59d89845
Step 7/8 : CMD nginx
 ---> Using cache
 ---> 605e7a9d1996
Step 8/8 : EXPOSE 80 443
 ---> Using cache
 ---> 8efc667f2251
Successfully built 8efc667f2251
Creating laradock_applications_1
Creating laradock_workspace_1
Creating laradock_php-fpm_1
Creating laradock_nginx_1
/tmp/laradock (master)$

@winfried-van-loon
Copy link
Contributor

@mikeerickson @thorerik @bestlong The build process seems (I could be mistaken) to be functioning perfectly right now. Is this issue still open/accurate?

@bestlong
Copy link
Member

@winfried-van-loon I just build again. i think is all fine.

@bestlong
Copy link
Member

but up jenkins container will exit.
#973

@stale
Copy link

stale bot commented Feb 2, 2020

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the Stale label Feb 2, 2020
@stale
Copy link

stale bot commented Feb 23, 2020

Hi again 👋 we would like to inform you that this issue has been automatically closed 🔒 because it had not recent activity during the stale period. We really really appreciate your contributions, and looking forward for more in the future 🎈.

@stale stale bot closed this as completed Feb 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants