Skip to content

Instantly share code, notes, and snippets.

Created January 3, 2018 12:18
Show Gist options
  • Save anonymous/4b70ab341b4f2a531cda63beb58b0caa to your computer and use it in GitHub Desktop.
Save anonymous/4b70ab341b4f2a531cda63beb58b0caa to your computer and use it in GitHub Desktop.
Vessel crash issue
./vessel start
Creating network "vesselproject_vessel" with driver "bridge"
Creating volume "vesselproject_vesselredis" with local driver
Creating volume "vesselproject_vesselmysql" with local driver
Building node
Step 1/6 : FROM node:latest
latest: Pulling from library/node
f49cf87b52c1: Pull complete
7b491c575b06: Pull complete
b313b08bab3b: Pull complete
51d6678c3f0e: Pull complete
da59faba155b: Pull complete
7f84ea62c1fd: Pull complete
1ae6c7e5e8c9: Pull complete
7c07b0a5c6a6: Pull complete
Digest: sha256:a0e9ecaf0519151f308968ab06b001c99753297a6ce1560a69d47e7b1f16926d
Status: Downloaded newer image for node:latest
---> 3d1823068e39
Step 2/6 : LABEL maintainer "Chris Fidao"
---> Running in 716674fbde60
---> fb6902668e32
Removing intermediate container 716674fbde60
Step 3/6 : WORKDIR /var/www/html
---> 8592c792c192
Removing intermediate container 46d455924314
Step 4/6 : ARG uid=999
---> Running in f6f7929534f2
---> f6a7b92c7e22
Removing intermediate container f6f7929534f2
Step 5/6 : RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && echo "deb http://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && apt-get update && apt-get install -y git yarn && apt-get -y autoremove && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
---> Running in df791687ca50
OK
Get:1 http://dl.yarnpkg.com stable InRelease [11.5 kB]
Get:2 http://security.debian.org jessie/updates InRelease [63.1 kB]
Ign http://deb.debian.org jessie InRelease
Get:3 http://deb.debian.org jessie-updates InRelease [145 kB]
Get:4 http://dl.yarnpkg.com stable/main amd64 Packages [6603 B]
Get:5 http://security.debian.org jessie/updates/main amd64 Packages [599 kB]
Get:6 http://deb.debian.org jessie Release.gpg [2434 B]
Get:7 http://deb.debian.org jessie Release [148 kB]
Get:8 http://deb.debian.org jessie-updates/main amd64 Packages [23.1 kB]
Get:9 http://deb.debian.org jessie/main amd64 Packages [9064 kB]
Fetched 10.1 MB in 17s (584 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
git is already the newest version.
Recommended packages:
nodejs
The following NEW packages will be installed:
yarn
0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
Need to get 670 kB of archives.
After this operation, 4125 kB of additional disk space will be used.
Get:1 http://dl.yarnpkg.com/debian/ stable/main yarn all 1.3.2-1 [670 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 670 kB in 0s (970 kB/s)
Selecting previously unselected package yarn.
(Reading database ... 21671 files and directories currently installed.)
Preparing to unpack .../archives/yarn_1.3.2-1_all.deb ...
Unpacking yarn (1.3.2-1) ...
Setting up yarn (1.3.2-1) ...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
---> 1acd7f3bfe99
Removing intermediate container df791687ca50
Step 6/6 : RUN usermod -u $uid node
---> Running in 2324b18ac56e
---> 58b0f22b417f
Removing intermediate container 2324b18ac56e
Successfully built 58b0f22b417f
Successfully tagged vessel/node:latest
WARNING: Image for service node was built because it did not already exist. To rebuild this image you must use `docker-compose build` or `docker-compose up --build`.
Building app
Step 1/17 : FROM ubuntu:16.04
16.04: Pulling from library/ubuntu
50aff78429b1: Pull complete
f6d82e297bce: Pull complete
275abb2c8a6f: Pull complete
9f15a39356d6: Pull complete
fc0342a94c89: Pull complete
Digest: sha256:ec0e4e8bf2c1178e025099eed57c566959bb408c6b478c284c1683bc4298b683
Status: Downloaded newer image for ubuntu:16.04
---> 00fd29ccc6f1
Step 2/17 : LABEL maintainer "Chris Fidao"
---> Running in 10bdea33602e
---> 7ff503bc491c
Removing intermediate container 10bdea33602e
Step 3/17 : RUN useradd -ms /bin/bash -u 1337 vessel
---> Running in dfb3776f5622
---> 1ae1e51a5140
Removing intermediate container dfb3776f5622
Step 4/17 : WORKDIR /var/www/html
---> 9bc9fd1c7fab
Removing intermediate container fc2e32cdd796
Step 5/17 : ENV GOSU_VERSION 1.7
---> Running in 8754fc9ae00a
---> 1312c375e5b8
Removing intermediate container 8754fc9ae00a
Step 6/17 : RUN set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget
---> Running in ca1b97e3eda9
+ apt-get update
Get:1 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Get:3 http://security.ubuntu.com/ubuntu xenial-security/universe Sources [56.7 kB]
Get:4 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [521 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [102 kB]
Get:6 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [102 kB]
Get:7 http://archive.ubuntu.com/ubuntu xenial/universe Sources [9802 kB]
Get:8 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [12.7 kB]
Get:9 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [239 kB]
Get:10 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [3481 B]
Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1558 kB]
Get:12 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [14.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [9827 kB]
Get:14 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [176 kB]
Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/universe Sources [233 kB]
Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [889 kB]
Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [13.1 kB]
Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [726 kB]
Get:19 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [18.5 kB]
Get:20 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [5162 B]
Get:21 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [7146 B]
Fetched 24.7 MB in 4min 10s (98.4 kB/s)
Reading package lists...
+ apt-get install -y --no-install-recommends ca-certificates wget
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
libidn11 libssl1.0.0 openssl
The following NEW packages will be installed:
ca-certificates libidn11 libssl1.0.0 openssl wget
0 upgraded, 5 newly installed, 0 to remove and 1 not upgraded.
Need to get 2088 kB of archives.
After this operation, 6027 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libidn11 amd64 1.32-3ubuntu1.2 [46.5 kB]
Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libssl1.0.0 amd64 1.0.2g-1ubuntu4.10 [1083 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 openssl amd64 1.0.2g-1ubuntu4.10 [492 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ca-certificates all 20170717~16.04.1 [168 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 wget amd64 1.17.1-1ubuntu1.3 [299 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 2088 kB in 26s (77.5 kB/s)
Selecting previously unselected package libidn11:amd64.
(Reading database ... 4768 files and directories currently installed.)
Preparing to unpack .../libidn11_1.32-3ubuntu1.2_amd64.deb ...
Unpacking libidn11:amd64 (1.32-3ubuntu1.2) ...
Selecting previously unselected package libssl1.0.0:amd64.
Preparing to unpack .../libssl1.0.0_1.0.2g-1ubuntu4.10_amd64.deb ...
Unpacking libssl1.0.0:amd64 (1.0.2g-1ubuntu4.10) ...
Selecting previously unselected package openssl.
Preparing to unpack .../openssl_1.0.2g-1ubuntu4.10_amd64.deb ...
Unpacking openssl (1.0.2g-1ubuntu4.10) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../ca-certificates_20170717~16.04.1_all.deb ...
Unpacking ca-certificates (20170717~16.04.1) ...
Selecting previously unselected package wget.
Preparing to unpack .../wget_1.17.1-1ubuntu1.3_amd64.deb ...
Unpacking wget (1.17.1-1ubuntu1.3) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Setting up libidn11:amd64 (1.32-3ubuntu1.2) ...
Setting up libssl1.0.0:amd64 (1.0.2g-1ubuntu4.10) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Setting up openssl (1.0.2g-1ubuntu4.10) ...
Setting up ca-certificates (20170717~16.04.1) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Setting up wget (1.17.1-1ubuntu1.3) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for ca-certificates (20170717~16.04.1) ...
Updating certificates in /etc/ssl/certs...
148 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
+ rm -rf /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-backports_InRelease /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-backports_main_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-backports_universe_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-updates_InRelease /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-updates_main_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-updates_multiverse_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-updates_restricted_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-updates_universe_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial-updates_universe_source_Sources.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_InRelease /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_main_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_multiverse_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_restricted_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_binary-amd64_Packages.lz4 /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_xenial_universe_source_Sources.lz4 /var/lib/apt/lists/lock /var/lib/apt/lists/partial /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_InRelease /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_main_binary-amd64_Packages.lz4 /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_multiverse_binary-amd64_Packages.lz4 /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_restricted_binary-amd64_Packages.lz4 /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_universe_binary-amd64_Packages.lz4 /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_xenial-security_universe_source_Sources.lz4
+ dpkg --print-architecture
+ wget -O /usr/local/bin/gosu https://github.com/tianon/gosu/releases/download/1.7/gosu-amd64
--2018-01-03 12:02:36-- https://github.com/tianon/gosu/releases/download/1.7/gosu-amd64
Resolving github.com (github.com)... 192.30.253.112, 192.30.253.113, 64:ff9b::ffff:ffff:c01e:fd71, ...
Connecting to github.com (github.com)|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github-production-release-asset-2e65be.s3.amazonaws.com/19708981/40d1b00c-8619-11e5-8953-d0122dcf07b9?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20180103%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180103T120239Z&X-Amz-Expires=300&X-Amz-Signature=48d889972be0d8bfbfdeb46a92cdad31bd21b7eb22457ca1bbf967ce3e902746&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dgosu-amd64&response-content-type=application%2Foctet-stream [following]
--2018-01-03 12:02:38-- https://github-production-release-asset-2e65be.s3.amazonaws.com/19708981/40d1b00c-8619-11e5-8953-d0122dcf07b9?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20180103%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180103T120239Z&X-Amz-Expires=300&X-Amz-Signature=48d889972be0d8bfbfdeb46a92cdad31bd21b7eb22457ca1bbf967ce3e902746&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dgosu-amd64&response-content-type=application%2Foctet-stream
Resolving github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)... 52.216.130.43, 64:ff9b::34d8:822b
Connecting to github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)|52.216.130.43|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2698808 (2.6M) [application/octet-stream]
Saving to: '/usr/local/bin/gosu'
0K .......... .......... .......... .......... .......... 1% 43.5K 59s
50K .......... .......... .......... .......... .......... 3% 167K 37s
100K .......... .......... .......... .......... .......... 5% 164K 29s
150K .......... .......... .......... .......... .......... 7% 187K 25s
200K .......... .......... .......... .......... .......... 9% 1.33M 20s
250K .......... .......... .......... .......... .......... 11% 203K 18s
300K .......... .......... .......... .......... .......... 13% 1.41M 15s
350K .......... .......... .......... .......... .......... 15% 660K 14s
400K .......... .......... .......... .......... .......... 17% 295K 13s
450K .......... .......... .......... .......... .......... 18% 1.29M 11s
500K .......... .......... .......... .......... .......... 20% 1.55M 10s
550K .......... .......... .......... .......... .......... 22% 1.92M 9s
600K .......... .......... .......... .......... .......... 24% 317K 9s
650K .......... .......... .......... .......... .......... 26% 1.12M 8s
700K .......... .......... .......... .......... .......... 28% 1.12M 7s
750K .......... .......... .......... .......... .......... 30% 1.32M 7s
800K .......... .......... .......... .......... .......... 32% 1.29M 6s
850K .......... .......... .......... .......... .......... 34% 1.69M 6s
900K .......... .......... .......... .......... .......... 36% 368K 6s
950K .......... .......... .......... .......... .......... 37% 1.08M 5s
1000K .......... .......... .......... .......... .......... 39% 1.08M 5s
1050K .......... .......... .......... .......... .......... 41% 1.37M 5s
1100K .......... .......... .......... .......... .......... 43% 920K 4s
1150K .......... .......... .......... .......... .......... 45% 431K 4s
1200K .......... .......... .......... .......... .......... 47% 955K 4s
1250K .......... .......... .......... .......... .......... 49% 1.15M 4s
1300K .......... .......... .......... .......... .......... 51% 1.29M 3s
1350K .......... .......... .......... .......... .......... 53% 657K 3s
1400K .......... .......... .......... .......... .......... 55% 599K 3s
1450K .......... .......... .......... .......... .......... 56% 887K 3s
1500K .......... .......... .......... .......... .......... 58% 1.06M 3s
1550K .......... .......... .......... .......... .......... 60% 1.05M 3s
1600K .......... .......... .......... .......... .......... 62% 830K 2s
1650K .......... .......... .......... .......... .......... 64% 543K 2s
1700K .......... .......... .......... .......... .......... 66% 1.47M 2s
1750K .......... .......... .......... .......... .......... 68% 999K 2s
1800K .......... .......... .......... .......... .......... 70% 1.07M 2s
1850K .......... .......... .......... .......... .......... 72% 722K 2s
1900K .......... .......... .......... .......... .......... 73% 832K 2s
1950K .......... .......... .......... .......... .......... 75% 732K 1s
2000K .......... .......... .......... .......... .......... 77% 928K 1s
2050K .......... .......... .......... .......... .......... 79% 992K 1s
2100K .......... .......... .......... .......... .......... 81% 911K 1s
2150K .......... .......... .......... .......... .......... 83% 693K 1s
2200K .......... .......... .......... .......... .......... 85% 893K 1s
2250K .......... .......... .......... .......... .......... 87% 916K 1s
2300K .......... .......... .......... .......... .......... 89% 965K 1s
2350K .......... .......... .......... .......... .......... 91% 930K 0s
2400K .......... .......... .......... .......... .......... 92% 770K 0s
2450K .......... .......... .......... .......... .......... 94% 809K 0s
2500K .......... .......... .......... .......... .......... 96% 875K 0s
2550K .......... .......... .......... .......... .......... 98% 1.18M 0s
2600K .......... .......... .......... ..... 100% 1.05M=5.1s
2018-01-03 12:02:44 (518 KB/s) - '/usr/local/bin/gosu' saved [2698808/2698808]
+ dpkg --print-architecture
+ wget -O /usr/local/bin/gosu.asc https://github.com/tianon/gosu/releases/download/1.7/gosu-amd64.asc
--2018-01-03 12:02:44-- https://github.com/tianon/gosu/releases/download/1.7/gosu-amd64.asc
Resolving github.com (github.com)... 192.30.253.112, 192.30.253.113, 64:ff9b::ffff:ffff:c01e:fd71, ...
Connecting to github.com (github.com)|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github-production-release-asset-2e65be.s3.amazonaws.com/19708981/40e5b35e-8619-11e5-98cb-8377dd5f2aac?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20180103%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180103T120246Z&X-Amz-Expires=300&X-Amz-Signature=60df69471da73123e610883dc61928fa9af4e1c7f888ed6e49f224237f6bcc4b&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dgosu-amd64.asc&response-content-type=application%2Foctet-stream [following]
--2018-01-03 12:02:45-- https://github-production-release-asset-2e65be.s3.amazonaws.com/19708981/40e5b35e-8619-11e5-98cb-8377dd5f2aac?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20180103%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180103T120246Z&X-Amz-Expires=300&X-Amz-Signature=60df69471da73123e610883dc61928fa9af4e1c7f888ed6e49f224237f6bcc4b&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3Dgosu-amd64.asc&response-content-type=application%2Foctet-stream
Resolving github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)... 52.216.130.43, 64:ff9b::34d8:822b
Connecting to github-production-release-asset-2e65be.s3.amazonaws.com (github-production-release-asset-2e65be.s3.amazonaws.com)|52.216.130.43|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 543 [application/octet-stream]
Saving to: '/usr/local/bin/gosu.asc'
0K 100% 5.04M=0s
2018-01-03 12:02:47 (5.04 MB/s) - '/usr/local/bin/gosu.asc' saved [543/543]
+ mktemp -d
+ export GNUPGHOME=/tmp/tmp.8b3PLcMDOq
+ gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4
gpg: keyring `/tmp/tmp.8b3PLcMDOq/secring.gpg' created
gpg: keyring `/tmp/tmp.8b3PLcMDOq/pubring.gpg' created
gpg: requesting key BF357DD4 from hkp server ha.pool.sks-keyservers.net
gpg: /tmp/tmp.8b3PLcMDOq/trustdb.gpg: trustdb created
gpg: key BF357DD4: public key "Tianon Gravi <tianon@tianon.xyz>" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
+ gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu
gpg: Signature made Sun Nov 8 21:04:08 2015 UTC using RSA key ID BF357DD4
gpg: Good signature from "Tianon Gravi <tianon@tianon.xyz>"
gpg: aka "Tianon Gravi <tianon@debian.org>"
gpg: aka "Tianon Gravi <tianon@dockerproject.org>"
gpg: aka "Andrew Page (tianon) <andrew@infosiftr.com>"
gpg: aka "Andrew Page (tianon) <andrew@vitalroute.com>"
gpg: aka "Andrew Page (Tianon Gravi) <admwiggin@gmail.com>"
gpg: aka "Tianon Gravi (Andrew Page) <tianon@infosiftr.com>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg: There is no indication that the signature belongs to the owner.
Primary key fingerprint: B42F 6819 007F 00F8 8E36 4FD4 036A 9C25 BF35 7DD4
+ rm -r /tmp/tmp.8b3PLcMDOq /usr/local/bin/gosu.asc
+ chmod +x /usr/local/bin/gosu
+ gosu nobody true
+ apt-get purge -y --auto-remove ca-certificates wget
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be REMOVED:
ca-certificates* libidn11* libssl1.0.0* openssl* wget*
0 upgraded, 0 newly installed, 5 to remove and 0 not upgraded.
After this operation, 6027 kB disk space will be freed.
(Reading database ... 5073 files and directories currently installed.)
Removing ca-certificates (20170717~16.04.1) ...
Removing dangling symlinks from /etc/ssl/certs... done.
Purging configuration files for ca-certificates (20170717~16.04.1) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Removing dangling symlinks from /etc/ssl/certs... done.
Removing wget (1.17.1-1ubuntu1.3) ...
Purging configuration files for wget (1.17.1-1ubuntu1.3) ...
Removing libidn11:amd64 (1.32-3ubuntu1.2) ...
Removing openssl (1.0.2g-1ubuntu4.10) ...
Purging configuration files for openssl (1.0.2g-1ubuntu4.10) ...
Removing libssl1.0.0:amd64 (1.0.2g-1ubuntu4.10) ...
Purging configuration files for libssl1.0.0:amd64 (1.0.2g-1ubuntu4.10) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Processing triggers for libc-bin (2.23-0ubuntu9) ...
---> 7bbafe7f61e1
Removing intermediate container ca1b97e3eda9
Step 7/17 : RUN echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu xenial main" > /etc/apt/sources.list.d/ppa_ondrej_php.list && echo "deb http://ppa.launchpad.net/nginx/development/ubuntu xenial main" > /etc/apt/sources.list.d/ppa_nginx_mainline.list && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E5267A6C && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C300EE8C && apt-get update && apt-get install -y curl zip unzip git supervisor sqlite3 && apt-get install -y nginx php7.1-fpm php7.1-cli php7.1-mcrypt php7.1-gd php7.1-mysql php7.1-pgsql php7.1-imap php-memcached php7.1-mbstring php7.1-xml php7.1-curl php7.1-imagick php7.1-zip php7.1-bcmath php7.1-sqlite3 php7.1-xdebug && php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer && mkdir /run/php && apt-get -y autoremove && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && echo "daemon off;" >> /etc/nginx/nginx.conf
---> Running in fc069ea84d53
Executing: /tmp/tmp.kB6H2ZnrNx/gpg.1.sh --keyserver
keyserver.ubuntu.com
--recv-keys
E5267A6C
gpg: requesting key E5267A6C from hkp server keyserver.ubuntu.com
gpg: key E5267A6C: public key "Launchpad PPA for Ond\xc5\x99ej Sur�" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
Executing: /tmp/tmp.UmEbvvI5yf/gpg.1.sh --keyserver
keyserver.ubuntu.com
--recv-keys
C300EE8C
gpg: requesting key C300EE8C from hkp server keyserver.ubuntu.com
gpg: key C300EE8C: public key "Launchpad Stable" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
Get:1 http://ppa.launchpad.net/nginx/development/ubuntu xenial InRelease [17.5 kB]
Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
Get:4 http://ppa.launchpad.net/ondrej/php/ubuntu xenial InRelease [23.9 kB]
Get:5 http://security.ubuntu.com/ubuntu xenial-security/universe Sources [56.7 kB]
Get:6 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [521 kB]
Get:7 http://ppa.launchpad.net/nginx/development/ubuntu xenial/main amd64 Packages [4476 B]
Get:8 http://ppa.launchpad.net/ondrej/php/ubuntu xenial/main amd64 Packages [61.2 kB]
Get:9 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [12.7 kB]
Get:10 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [239 kB]
Get:11 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [102 kB]
Get:12 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [3481 B]
Get:13 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [102 kB]
Get:14 http://archive.ubuntu.com/ubuntu xenial/universe Sources [9802 kB]
Get:15 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1558 kB]
Get:16 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [14.1 kB]
Get:17 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [9827 kB]
load: 1.68 cmd: docker-compose 1687 waiting 0.63u 0.07s
Get:18 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [176 kB]
Get:19 http://archive.ubuntu.com/ubuntu xenial-updates/universe Sources [233 kB]
Get:20 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [889 kB]
Get:21 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [13.1 kB]
Get:22 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [726 kB]
Get:23 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [18.5 kB]
Get:24 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [5162 B]
Get:25 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [7146 B]
Fetched 24.8 MB in 4min 3s (102 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
ca-certificates file git-man ifupdown iproute2 isc-dhcp-client
isc-dhcp-common krb5-locales less libasn1-8-heimdal libatm1 libbsd0
libcurl3-gnutls libdns-export162 libedit2 liberror-perl libexpat1 libffi6
libgdbm3 libgmp10 libgnutls30 libgssapi-krb5-2 libgssapi3-heimdal
libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal libhogweed4
libhx509-5-heimdal libidn11 libisc-export160 libk5crypto3 libkeyutils1
libkrb5-26-heimdal libkrb5-3 libkrb5support0 libldap-2.4-2 libmagic1 libmnl0
libnettle6 libp11-kit0 libperl5.22 libpopt0 libpython-stdlib
libpython2.7-minimal libpython2.7-stdlib libroken18-heimdal librtmp1
libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssl1.0.0
libssl1.1 libtasn1-6 libwind0-heimdal libx11-6 libx11-data libxau6 libxcb1
libxdmcp6 libxext6 libxmuu1 libxtables11 mime-support netbase openssh-client
openssl patch perl perl-modules-5.22 python python-meld3 python-minimal
python-pkg-resources python2.7 python2.7-minimal rename rsync xauth
Suggested packages:
gettext-base git-daemon-run | git-daemon-sysvinit git-doc git-el git-email
git-gui gitk gitweb git-arch git-cvs git-mediawiki git-svn ppp rdnssd
iproute2-doc resolvconf avahi-autoipd isc-dhcp-client-ddns apparmor
gnutls-bin krb5-doc krb5-user libsasl2-modules-otp libsasl2-modules-ldap
libsasl2-modules-sql libsasl2-modules-gssapi-mit
| libsasl2-modules-gssapi-heimdal ssh-askpass libpam-ssh keychain
monkeysphere ed diffutils-doc perl-doc libterm-readline-gnu-perl
| libterm-readline-perl-perl make python-doc python-tk python-setuptools
python2.7-doc binutils binfmt-support openssh-server sqlite3-doc
supervisor-doc
The following NEW packages will be installed:
ca-certificates curl file git git-man ifupdown iproute2 isc-dhcp-client
isc-dhcp-common krb5-locales less libasn1-8-heimdal libatm1 libbsd0
libcurl3-gnutls libdns-export162 libedit2 liberror-perl libexpat1 libffi6
libgdbm3 libgmp10 libgnutls30 libgssapi-krb5-2 libgssapi3-heimdal
libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal libhogweed4
libhx509-5-heimdal libidn11 libisc-export160 libk5crypto3 libkeyutils1
libkrb5-26-heimdal libkrb5-3 libkrb5support0 libldap-2.4-2 libmagic1 libmnl0
libnettle6 libp11-kit0 libperl5.22 libpopt0 libpython-stdlib
libpython2.7-minimal libpython2.7-stdlib libroken18-heimdal librtmp1
libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssl1.0.0
libssl1.1 libtasn1-6 libwind0-heimdal libx11-6 libx11-data libxau6 libxcb1
libxdmcp6 libxext6 libxmuu1 libxtables11 mime-support netbase openssh-client
openssl patch perl perl-modules-5.22 python python-meld3 python-minimal
python-pkg-resources python2.7 python2.7-minimal rename rsync sqlite3
supervisor unzip xauth zip
0 upgraded, 85 newly installed, 0 to remove and 2 not upgraded.
Need to get 26.4 MB of archives.
After this operation, 128 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu xenial/main amd64 libatm1 amd64 1:2.5.1-1.5 [24.2 kB]
Get:2 http://ppa.launchpad.net/ondrej/php/ubuntu xenial/main amd64 libssl1.1 amd64 1.1.0g-2.1+ubuntu16.04.1+deb.sury.org+1 [1334 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmnl0 amd64 1.0.3-5 [12.0 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpopt0 amd64 1.16-10 [26.0 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgdbm3 amd64 1.8.3-13.1 [16.9 kB]
Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxau6 amd64 1:1.0.8-1 [8376 B]
Get:7 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxdmcp6 amd64 1:1.1.2-1.1 [11.0 kB]
Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxcb1 amd64 1.11.1-1ubuntu1 [40.0 kB]
Get:9 http://archive.ubuntu.com/ubuntu xenial/main amd64 libx11-data all 2:1.6.3-1ubuntu2 [113 kB]
Get:10 http://archive.ubuntu.com/ubuntu xenial/main amd64 libx11-6 amd64 2:1.6.3-1ubuntu2 [571 kB]
Get:11 http://ppa.launchpad.net/ondrej/php/ubuntu xenial/main amd64 openssl amd64 1.1.0g-2.1+ubuntu16.04.1+deb.sury.org+1 [731 kB]
Get:12 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB]
Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 perl-modules-5.22 all 5.22.1-9ubuntu0.2 [2661 kB]
Get:14 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libperl5.22 amd64 5.22.1-9ubuntu0.2 [3391 kB]
Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 perl amd64 5.22.1-9ubuntu0.2 [237 kB]
Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-minimal amd64 2.7.12-1ubuntu0~16.04.2 [338 kB]
Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7-minimal amd64 2.7.12-1ubuntu0~16.04.2 [1294 kB]
Get:18 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-minimal amd64 2.7.11-1 [28.2 kB]
Get:19 http://archive.ubuntu.com/ubuntu xenial/main amd64 mime-support all 3.59ubuntu1 [31.0 kB]
Get:20 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libexpat1 amd64 2.1.0-7ubuntu0.16.04.3 [71.2 kB]
Get:21 http://archive.ubuntu.com/ubuntu xenial/main amd64 libffi6 amd64 3.2.1-4 [17.8 kB]
Get:22 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsqlite3-0 amd64 3.11.0-1ubuntu1 [396 kB]
Get:23 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libssl1.0.0 amd64 1.0.2g-1ubuntu4.10 [1083 kB]
Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-stdlib amd64 2.7.12-1ubuntu0~16.04.2 [1880 kB]
Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7 amd64 2.7.12-1ubuntu0~16.04.2 [224 kB]
Get:26 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpython-stdlib amd64 2.7.11-1 [7656 B]
Get:27 http://archive.ubuntu.com/ubuntu xenial/main amd64 python amd64 2.7.11-1 [137 kB]
Get:28 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmagic1 amd64 1:5.25-2ubuntu1 [216 kB]
Get:29 http://archive.ubuntu.com/ubuntu xenial/main amd64 file amd64 1:5.25-2ubuntu1 [21.2 kB]
Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 iproute2 amd64 4.3.0-1ubuntu3.16.04.2 [522 kB]
Get:31 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ifupdown amd64 0.8.10ubuntu1.2 [54.9 kB]
Get:32 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libisc-export160 amd64 1:9.10.3.dfsg.P4-8ubuntu1.9 [153 kB]
Get:33 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdns-export162 amd64 1:9.10.3.dfsg.P4-8ubuntu1.9 [666 kB]
Get:34 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 isc-dhcp-client amd64 4.3.3-5ubuntu12.7 [223 kB]
Get:35 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 isc-dhcp-common amd64 4.3.3-5ubuntu12.7 [105 kB]
Get:36 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 less amd64 481-2.1ubuntu0.2 [110 kB]
Get:37 http://archive.ubuntu.com/ubuntu xenial/main amd64 libbsd0 amd64 0.8.2-1 [41.7 kB]
Get:38 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgmp10 amd64 2:6.1.0+dfsg-2 [240 kB]
Get:39 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libnettle6 amd64 3.2-1ubuntu0.16.04.1 [93.5 kB]
Get:40 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhogweed4 amd64 3.2-1ubuntu0.16.04.1 [136 kB]
Get:41 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libidn11 amd64 1.32-3ubuntu1.2 [46.5 kB]
Get:42 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libp11-kit0 amd64 0.23.2-5~ubuntu16.04.1 [105 kB]
Get:43 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtasn1-6 amd64 4.7-3ubuntu0.16.04.2 [43.3 kB]
Get:44 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgnutls30 amd64 3.4.10-4ubuntu1.4 [548 kB]
Get:45 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxtables11 amd64 1.6.0-2ubuntu3 [27.2 kB]
Get:46 http://archive.ubuntu.com/ubuntu xenial/main amd64 netbase all 5.3 [12.9 kB]
Get:47 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ca-certificates all 20170717~16.04.1 [168 kB]
Get:48 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 krb5-locales all 1.13.2+dfsg-5ubuntu2 [13.2 kB]
Get:49 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libroken18-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [41.4 kB]
Get:50 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasn1-8-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [174 kB]
Get:51 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5support0 amd64 1.13.2+dfsg-5ubuntu2 [30.8 kB]
Get:52 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libk5crypto3 amd64 1.13.2+dfsg-5ubuntu2 [81.2 kB]
Get:53 http://archive.ubuntu.com/ubuntu xenial/main amd64 libkeyutils1 amd64 1.5.9-8ubuntu1 [9904 B]
Get:54 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5-3 amd64 1.13.2+dfsg-5ubuntu2 [273 kB]
Get:55 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgssapi-krb5-2 amd64 1.13.2+dfsg-5ubuntu2 [120 kB]
Get:56 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhcrypto4-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [85.0 kB]
Get:57 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libheimbase1-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [29.3 kB]
Get:58 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libwind0-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [47.8 kB]
Get:59 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libhx509-5-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [107 kB]
Get:60 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libkrb5-26-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [202 kB]
Get:61 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libheimntlm0-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [15.1 kB]
Get:62 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgssapi3-heimdal amd64 1.7~git20150920+dfsg-4ubuntu1.16.04.1 [96.1 kB]
Get:63 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsasl2-modules-db amd64 2.1.26.dfsg1-14build1 [14.5 kB]
Get:64 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsasl2-2 amd64 2.1.26.dfsg1-14build1 [48.7 kB]
Get:65 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libldap-2.4-2 amd64 2.4.42+dfsg-2ubuntu3.2 [160 kB]
Get:66 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d-1ubuntu0.1 [54.4 kB]
Get:67 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcurl3-gnutls amd64 7.47.0-1ubuntu2.5 [184 kB]
Get:68 http://archive.ubuntu.com/ubuntu xenial/main amd64 libedit2 amd64 3.1-20150325-1ubuntu2 [76.5 kB]
Get:69 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsasl2-modules amd64 2.1.26.dfsg1-14build1 [47.5 kB]
Get:70 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxmuu1 amd64 2:1.1.2-2 [9674 B]
Get:71 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 openssh-client amd64 1:7.2p2-4ubuntu2.2 [587 kB]
Get:72 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 rsync amd64 3.1.1-3ubuntu1.1 [329 kB]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment