Ludovic Courtès <ludo@HIDDEN>
to control <at> debbugs.gnu.org
.
Full text available.Received: (at 48035) by debbugs.gnu.org; 28 Apr 2021 21:29:48 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Apr 28 17:29:48 2021 Received: from localhost ([127.0.0.1]:54238 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1lbrki-0003Je-3H for submit <at> debbugs.gnu.org; Wed, 28 Apr 2021 17:29:48 -0400 Received: from eggs.gnu.org ([209.51.188.92]:49092) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <ludo@HIDDEN>) id 1lbrkf-0003JR-SD for 48035 <at> debbugs.gnu.org; Wed, 28 Apr 2021 17:29:47 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:52890) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from <ludo@HIDDEN>) id 1lbrka-0003iz-C1; Wed, 28 Apr 2021 17:29:40 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=35262 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from <ludo@HIDDEN>) id 1lbrkZ-0004PE-ED; Wed, 28 Apr 2021 17:29:40 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= <ludo@HIDDEN> To: Ricardo Wurmus <rekado@HIDDEN> Subject: Re: bug#48035: Fwd: regression: =?utf-8?B?4oCcZ3VpeCBwYWNr4oCd?= Docker images no longer work on AWS References: <87tupgndrw.fsf@HIDDEN> <877dkpoz40.fsf@HIDDEN> Date: Wed, 28 Apr 2021 23:29:37 +0200 In-Reply-To: <877dkpoz40.fsf@HIDDEN> (Ricardo Wurmus's message of "Mon, 26 Apr 2021 17:16:15 +0200") Message-ID: <87wnsmp072.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48035 Cc: 48035 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, Ricardo Wurmus <rekado@HIDDEN> skribis: > I=E2=80=99m using =E2=80=9Cguix pack=E2=80=9D-generated Docker images on = AWS ECS. On June 17, > 2020 I generated and uploaded an image that works fine. According to > AWS this image has this manifest type: > > application/vnd.docker.distribution.manifest.v2+json > > Today I generated a new image that does not work. It cannot be opened > by ECS; it cannot find /bin/sh, which exists. The manifest type is > now > recognized as > > application/vnd.oci.image.manifest.v1+json > > It also now detects an =E2=80=9CArtifact media type=E2=80=9D and prints i= t as > > application/vnd.oci.image.config.v1+json > > I=E2=80=99d very much like to push a newly generated image. Is there a w= ay to > generate the image as it was done in the summer of 2020? > > Note that both these images appear to work =E2=80=9Cfine=E2=80=9D with a = local Docker > installation (i.e. when run with =E2=80=9Cdocker run=E2=80=9D). (When ru= nning /bin/sh > in the container interactively it appears to freeze whenever I try to > actually run a command, but perhaps I=E2=80=99m just holding it wrong=E2= =80=A6) The Git log of (guix docker) and (guix scripts pack) doesn=E2=80=99t show anything suspicious. Could you try generating an image with =E2=80=98guix pack=E2=80=99 and feed= ing it to Docker using Guix=E2=80=99 Docker service in a VM? Attached is an OS that I used previously to test Docker things. (You need to run with =E2=80=98-m 8= 192=E2=80=99 or similar so that when you run =E2=80=98docker load -i /gnu/store/=E2=80=A6-docker-pack.tar.gz=E2=80=99 the whole VM disk fits int= o RAM.) If you used =E2=80=98-S /bin=3Dbin=E2=80=99, /bin/sh in the image is a syml= ink to /gnu/store/=E2=80=A6-bash/bin/sh, an absolute file name that=E2=80=99s only= valid within the image. Perhaps Docker is confused by that like Singularity is/was. In that case, try changing =E2=80=98guix pack=E2=80=99 so it produces relat= ive symlinks as it already does for the =E2=80=98singularity=E2=80=99 backend. HTH! Ludo=E2=80=99. --=-=-= Content-Type: text/plain Content-Disposition: inline; filename=docker-os.scm Content-Description: the OS (use-modules (gnu) (srfi srfi-1)) (use-package-modules docker linux) (use-service-modules dbus desktop networking docker) (operating-system (host-name "dockeros") (timezone "Europe/Paris") (locale "fr_FR.utf8") (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sdX"))) (file-systems (cons (file-system (device (file-system-label "my-root")) (mount-point "/") (type "ext4")) %base-file-systems)) (users (cons (user-account (name "ludo") (group "users") (supplementary-groups '("wheel")) (password (crypt "foo" "$6$")) (home-directory "/home/ludo")) %base-user-accounts)) (packages (cons* docker-cli singularity %base-packages)) (services (append (list (service docker-service-type) (service dbus-root-service-type) (service elogind-service-type) (service dhcp-client-service-type)) ;; Choose a better console font. (modify-services %base-services (console-font-service-type config => (map (lambda (tty) (cons tty "lat9u-16")) '("tty1" "tty2" "tty3" "tty4" "tty5" "tty6"))))))) --=-=-=--
bug-guix@HIDDEN
:bug#48035
; Package guix
.
Full text available.Received: (at 48035) by debbugs.gnu.org; 27 Apr 2021 07:49:10 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Tue Apr 27 03:49:09 2021 Received: from localhost ([127.0.0.1]:47968 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1lbISz-0005e0-Nr for submit <at> debbugs.gnu.org; Tue, 27 Apr 2021 03:49:09 -0400 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21175) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <rekado@HIDDEN>) id 1lbISv-0005dp-Ny for 48035 <at> debbugs.gnu.org; Tue, 27 Apr 2021 03:49:08 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1619509738; cv=none; d=zohomail.com; s=zohoarc; b=NU7kvs8WAK0L7lVQ0fVnWE6vWLl27jpEg2uKoneZIZHYjNLcUPp+REmqsFsPjRSYhUxQLGtl/KI0T1yjdC94uea8jD4t3n5nNl2XoeoI2VS3/P1SEQuXl/9jcYjpjKB4RF6wDesZ8gquVGwMPVZSb7cU04K3OldDEhZjJ/SVXL8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1619509738; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=JKzKH7kWGayHCJawqmAH5JDzZxJKfHvTTnXabb50j/c=; b=EI6wxTVmkkZwcvB/F7EWte5IN7AbjzJnWKdSmPtKTkxWhY2G31nUbPPLeatVTLgSmI+l0xX7Onl+8Gy0Se7UUgvyYoqFumC/2sw1fFvSx7MZhsaKZfSMZg16CYetbab1rfaCDsUjUaLBrVFh25tQQvCnp4ear7512X92SDFuaOE= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@HIDDEN; dmarc=pass header.from=<rekado@HIDDEN> header.from=<rekado@HIDDEN> DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1619509738; s=zoho; d=elephly.net; i=rekado@HIDDEN; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type; bh=JKzKH7kWGayHCJawqmAH5JDzZxJKfHvTTnXabb50j/c=; b=Qx7o2YFOtZuXUZtcbYtNO1d2MrYPuEGy7FfLWixcyQ9FBpqJP0gVCygQctyfQs4a IrP3+8BJDPQzTTAf2pM/q5LiI0UY3cFgwo2WvNJKlVe445VftL9sDixPBAXYDYOJPQE 3Z7JJJef10FZZoTp+7ZR1qVSCjTKIcXiohX9KwEU= Received: from localhost (p54ad4f3e.dip0.t-ipconnect.de [84.173.79.62]) by mx.zohomail.com with SMTPS id 1619509735969548.9915011438353; Tue, 27 Apr 2021 00:48:55 -0700 (PDT) References: <87tupgndrw.fsf@HIDDEN> <877dkpoz40.fsf@HIDDEN> <YIe1bN7aPJFkr54J@3900XT> User-agent: mu4e 1.4.15; emacs 27.2 From: Ricardo Wurmus <rekado@HIDDEN> To: Efraim Flashner <efraim@HIDDEN> Subject: Re: bug#48035: Fwd: regression: =?utf-8?B?4oCcZ3VpeCBwYWNr4oCd?= Docker images no longer work on AWS In-reply-to: <YIe1bN7aPJFkr54J@3900XT> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Tue, 27 Apr 2021 09:48:52 +0200 Message-ID: <87sg3cnp5n.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-ZohoMailClient: External X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 48035 Cc: 48035 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Hi Efraim, > On March 10th, a couple of days before your original message, > docker was > updated to 19.03.15 for some security fixes. Perhaps try locally > reverting that and see if it fixes your problem. We are not using Docker to generate the Docker images. I only have problems with the generated Docker images on AWS, which does not use Docker from Guix. -- Ricardo
bug-guix@HIDDEN
:bug#48035
; Package guix
.
Full text available.Received: (at 48035) by debbugs.gnu.org; 27 Apr 2021 06:56:23 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Tue Apr 27 02:56:23 2021 Received: from localhost ([127.0.0.1]:47856 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1lbHdv-0001zN-8w for submit <at> debbugs.gnu.org; Tue, 27 Apr 2021 02:56:23 -0400 Received: from flashner.co.il ([178.62.234.194]:37998) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <efraim@HIDDEN>) id 1lbHdt-0001z9-A1 for 48035 <at> debbugs.gnu.org; Tue, 27 Apr 2021 02:56:22 -0400 Received: from localhost (unknown [31.210.177.125]) by flashner.co.il (Postfix) with ESMTPSA id 465F540333; Tue, 27 Apr 2021 06:56:14 +0000 (UTC) Date: Tue, 27 Apr 2021 09:55:40 +0300 From: Efraim Flashner <efraim@HIDDEN> To: Ricardo Wurmus <rekado@HIDDEN> Subject: Re: bug#48035: Fwd: =?utf-8?Q?regression?= =?utf-8?B?OiDigJxndWl4IHBhY2vigJ0=?= Docker images no longer work on AWS Message-ID: <YIe1bN7aPJFkr54J@3900XT> Mail-Followup-To: Efraim Flashner <efraim@HIDDEN>, Ricardo Wurmus <rekado@HIDDEN>, 48035 <at> debbugs.gnu.org References: <87tupgndrw.fsf@HIDDEN> <877dkpoz40.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="sZKUju00Adjows6R" Content-Disposition: inline In-Reply-To: <877dkpoz40.fsf@HIDDEN> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 48035 Cc: 48035 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) --sZKUju00Adjows6R Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 26, 2021 at 05:16:15PM +0200, Ricardo Wurmus wrote: >=20 > Hi Guix, >=20 > I=E2=80=99m using =E2=80=9Cguix pack=E2=80=9D-generated Docker images on = AWS ECS. On June 17, > 2020 I generated and uploaded an image that works fine. According to > AWS this image has this manifest type: >=20 > application/vnd.docker.distribution.manifest.v2+json >=20 > Today I generated a new image that does not work. It cannot be opened > by ECS; it cannot find /bin/sh, which exists. The manifest type is now > recognized as >=20 > application/vnd.oci.image.manifest.v1+json >=20 > It also now detects an =E2=80=9CArtifact media type=E2=80=9D and prints i= t as >=20 > application/vnd.oci.image.config.v1+json >=20 > I=E2=80=99d very much like to push a newly generated image. Is there a w= ay to > generate the image as it was done in the summer of 2020? >=20 > Note that both these images appear to work =E2=80=9Cfine=E2=80=9D with a = local Docker > installation (i.e. when run with =E2=80=9Cdocker run=E2=80=9D). (When ru= nning /bin/sh > in the container interactively it appears to freeze whenever I try to > actually run a command, but perhaps I=E2=80=99m just holding it wrong=E2= =80=A6) >=20 On March 10th, a couple of days before your original message, docker was updated to 19.03.15 for some security fixes. Perhaps try locally reverting that and see if it fixes your problem. --=20 Efraim Flashner <efraim@HIDDEN> =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --sZKUju00Adjows6R Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmCHtWoACgkQQarn3Mo9 g1ECmA//c3TeA3Cv8jMSfBScLLlE7CaOWbnaoGsfIc1TvkVe9hAHSCemyO2Ewy2d 2saDF6XAAfusKtWsbzjcF0vXfONj7QHf7oAw4FaRplzLh9maJ/NhWwe8BEpxd1Jh nXT6jwbzDOFO2/HYTW1txptvJtswENN2mHwcRYBRphRS3PX7bLok5B2Losl9LNB6 8gg49j0YOnuW90Y5EY1IIEdcWHUnI4Gzvb0PUFSNYOEv7juL+98I3shveX1jSuXU lNsRYoXSYneIC4oDI74+vGYb2ISrcMtrAHTtvM37q9u6EV32//5lwpt9aH5KYn7G laf2gzoaDxNdRhh3M1tn/2CsnpDI1/LhmcpIRVxyh+ITJVQLwOeB940wYm/xYdg7 W6bL7nNf+VUWm9xIEF1Cy7U3ZrybqofQsKdmIJ2fxRTK3f1oPwP/1DNTdlBPz5XP vMSZEAifDZPKGpt2dlv3E3kXWK+ym2H65CYYc22ivNA1lRP9izgnbkZKth4sI0cJ 9kx6o8szkQF4YUpTVPkRBmoZpx2EtFI8Cyi4l61HYqmF4hHv35YljmVw5HhzLEwC iZbbwzQUsEw5WhTWZr4FmR/0DKRoswW8XaOQyYkrjD/RpJLs8KEB0bIT6VKnpD4B c7zVKkVrh2YS7Wp+WMh2FTHztXAVm9ir8RLU+Bu7PWufxEMBOmE= =P6gZ -----END PGP SIGNATURE----- --sZKUju00Adjows6R--
bug-guix@HIDDEN
:bug#48035
; Package guix
.
Full text available.Received: (at submit) by debbugs.gnu.org; 26 Apr 2021 15:16:43 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Mon Apr 26 11:16:43 2021 Received: from localhost ([127.0.0.1]:46798 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1lb2yY-0005lT-TA for submit <at> debbugs.gnu.org; Mon, 26 Apr 2021 11:16:43 -0400 Received: from lists.gnu.org ([209.51.188.17]:33978) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <rekado@HIDDEN>) id 1lb2yX-0005lL-7m for submit <at> debbugs.gnu.org; Mon, 26 Apr 2021 11:16:41 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40962) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <rekado@HIDDEN>) id 1lb2yW-00023K-QO for bug-guix@HIDDEN; Mon, 26 Apr 2021 11:16:40 -0400 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21195) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <rekado@HIDDEN>) id 1lb2yQ-00054k-EG for bug-guix@HIDDEN; Mon, 26 Apr 2021 11:16:40 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1619450184; cv=none; d=zohomail.com; s=zohoarc; b=VhFFPn6Bu1EUflSQELl68jy7W1XRZVvdkI2Eo57XLKb98rMJndBjtXVaf/csR/0vsJEOZMj2HT+jplWKKkDEhn4QKZh8u4qSv9z1tZZwkRpz6oeP+2QDhOAw76T9RDdoBo2qvNWXT6bDmOHBEDLMzDCh+UBSbMQvSuKF0Igm4gk= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1619450184; h=Content-Type:Content-Transfer-Encoding:Date:From:MIME-Version:Message-ID:References:Subject:To; bh=F96Z9RWXU/wO5ecXqfawO3wbvu6kC8z1e1jH3LyNY3E=; b=AgbTNqPO9sPRMrOJlrlXzXk3LnSZHrG753NBk76FNrrDfTk8nb9aL/nWEnKtRhuOfpqeLaw4Il9twumBQ8TNZVBv6TeRB3GXTk6t5Iqho1RQ12yMXBQM/kw+7OS0FaZ0IcxbjvfwxUGAEJJ76/lZjj/kxhR5HjKb5gjry8cipvU= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@HIDDEN; dmarc=pass header.from=<rekado@HIDDEN> header.from=<rekado@HIDDEN> DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1619450184; s=zoho; d=elephly.net; i=rekado@HIDDEN; h=References:From:To:Subject:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding; bh=F96Z9RWXU/wO5ecXqfawO3wbvu6kC8z1e1jH3LyNY3E=; b=eXNqCIbpc91uHNMQMlt1zumN8z8yIcggNuz04NiSLABoZvfsFWOboCkwoLdqExOi JmlzEPN4D1Q/phpok/Rr60T7DLHX65WFc7/V4fDviG4XrPlVNuGMatSq4YMKZPH2fpo pqbGL9IBFUZDrloIGg0B0nlvmWtuYAK0TApoMu+g= Received: from localhost (p54ad4f6f.dip0.t-ipconnect.de [84.173.79.111]) by mx.zohomail.com with SMTPS id 1619450178895763.6070943379709; Mon, 26 Apr 2021 08:16:18 -0700 (PDT) References: <87tupgndrw.fsf@HIDDEN> User-agent: mu4e 1.4.15; emacs 27.2 From: Ricardo Wurmus <rekado@HIDDEN> To: bug-guix@HIDDEN Subject: Fwd: regression: =?utf-8?B?4oCcZ3VpeCBwYWNr4oCd?= Docker images no longer work on AWS X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Mon, 26 Apr 2021 17:16:15 +0200 Message-ID: <877dkpoz40.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable X-ZohoMailClient: External Received-SPF: pass client-ip=136.143.188.51; envelope-from=rekado@HIDDEN; helo=sender4-of-o51.zoho.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -2.3 (--) Hi Guix, I=E2=80=99m using =E2=80=9Cguix pack=E2=80=9D-generated Docker images on AW= S ECS. On June=20 17, 2020 I generated and uploaded an image that works fine. According=20 to AWS this image has this manifest type: application/vnd.docker.distribution.manifest.v2+json Today I generated a new image that does not work. It cannot be=20 opened by ECS; it cannot find /bin/sh, which exists. The manifest type=20 is now recognized as application/vnd.oci.image.manifest.v1+json It also now detects an =E2=80=9CArtifact media type=E2=80=9D and prints it = as application/vnd.oci.image.config.v1+json I=E2=80=99d very much like to push a newly generated image. Is there a=20 way to generate the image as it was done in the summer of 2020? Note that both these images appear to work =E2=80=9Cfine=E2=80=9D with a lo= cal=20 Docker installation (i.e. when run with =E2=80=9Cdocker run=E2=80=9D). (When runn= ing=20 /bin/sh in the container interactively it appears to freeze whenever I try=20 to actually run a command, but perhaps I=E2=80=99m just holding it wrong=E2=80= =A6) --=20 Ricardo
Ricardo Wurmus <rekado@HIDDEN>
:bug-guix@HIDDEN
.
Full text available.bug-guix@HIDDEN
:bug#48035
; Package guix
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.