X-Original-To: alpine-user@lists.alpinelinux.org Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by lists.alpinelinux.org (Postfix) with ESMTP id 11BCC5C4F32 for ; Mon, 9 Apr 2018 06:25:16 +0000 (GMT) Received: by mail-wm0-f51.google.com with SMTP id u189so16136793wmd.1 for ; Sun, 08 Apr 2018 23:25:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=maximilianeum-de.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=5Z1qS4dH97fCiTmFnTL1khNibDLkfJSoDCH21DVmuFQ=; b=y7hR3uD5CfADPTuggow0b9BgvWpF321Ujlk2kPXICW7WssKk+HGkcWiqppnMxtvJVN jGo6nCm7H3hiyvBBBZ4gRZeDtvLDho1y8l7PVGhLaRKE7bje8EorQKgU5SEHc7RG/KKh q8zSbi8EnxEdmpA/dyHCviC5Y3WtLZM/aQwrfEDYViTK9XELZHlofVaoEb8+fG7/XSmh MY4jOuhu+ThiyEffwP6xV1XwsascukCI5QRLlVd5qCkllx6KPZWjcMLD/JvRSGz1JW9D BslaE6XIJyWPKn1/wa50BKjx5GvYGsvmHFtCX9BnL9s9Wq3ho6jiWdWUfM8QBkKNtfar nOAQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=5Z1qS4dH97fCiTmFnTL1khNibDLkfJSoDCH21DVmuFQ=; b=aGNNiYF/PvI56HZEYoTu4tlmQuCUUWUQClGwIqP4nCmA9Gv/k+sXOFK/ZHEGSus2F/ jVyJYoBhFJrEeVmNx0r9vxk7S/ETs+eTKnU6Fi6NZGf31LsK65cfY/X0MxL+6dVb5piW BzVGk6hDQx0oQkaagwGXF3cE/Xet6HD1PXaY8TTEQ2ZV/nS9Wxz4W6mZdg886pbzxfev 4B36pvIF0+q4W47Oe9gOWkiksXu1PxNLqxFpLsSNdqAD3+dgOMtRBIaRto/jso+u9kfK NdLFc9RnlNxCC8rmp97PD07w90dOvTYJkHysJyT7+wegKgBfDOZ5JxIFbkyYHBRM+339 hxzg== X-Gm-Message-State: ALQs6tCEcbH7ttoLh7x6Qv+9Lyg6jkqVgmp5h3pi/7rt15X+7wqlARbY fk8MTPNgGCpJYftZcgDqU7CMCVurVMBtw9ztmt0p4mDX X-Google-Smtp-Source: AIpwx49H//B9xm5reWsC/dNFE3Kw5NvzPs2uXE1Fi/GfkCZNg4/AdLPWnZJaf3ogWvzXoIA+Vu0gcBI0nojIhrFp0xc= X-Received: by 10.80.174.177 with SMTP id e46mr20645905edd.61.1523255115298; Sun, 08 Apr 2018 23:25:15 -0700 (PDT) X-Mailinglist: alpine-user Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Received: by 10.80.165.54 with HTTP; Sun, 8 Apr 2018 23:25:14 -0700 (PDT) In-Reply-To: <20180408085815.GA29198@alpine.my.domain> References: <20180408085815.GA29198@alpine.my.domain> From: Gabor Toth Date: Mon, 9 Apr 2018 08:25:14 +0200 Message-ID: Subject: Re: [alpine-user] Mongo DB Tools To: alpine-user@lists.alpinelinux.org Content-Type: multipart/alternative; boundary="f403045c2a9a0ccb3f056964788e" --f403045c2a9a0ccb3f056964788e Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Hi, Many thanks for the answer. cat /etc/apk/repositories output after building the container http://dl-cdn.alpinelinux.org/alpine/v3.6/main http://dl-cdn.alpinelinux.org/alpine/v3.6/community http://dl-2.alpinelinux.org/alpine/edge/community/ After this I tried this in the container but did not work: sudo apk add --update --repository http://dl-cdn.alpinelinux.org/ alpine/v3.7/community mongodb-tools I am wondering how I can add the edge repo when building the docker container? Are dependencies automatically added or should I apk update them myself? Thanks, Gabor 2018-04-08 10:58 GMT+02:00 C=C3=A1g : > Gabor Toth wrote: > > > I am building a Docker Image from node:8-Alpine, and I am trying to > > add not only mongodb but also mongodb-tools (mongorestore, mongodump > > etc commands), and apk add mongodb-tools is not working: > > Can you please let me know how to install mongodb-tools? > > Hi, > > libsasl2-dev is a non-existent package. "apk add mongodb-tools" works > in edge. Which version are you using? In 3.7 the dependencies are: > libpcap, libressl2.6-libcrypto, libress2.6-libssl, libsasl, musl. > In edge: libpcap, libsasl, musl. cyrus-sasl-dev is needed to build it. > > Cheers > > -- > ca=C3=B3c > > > > --- > Unsubscribe: alpine-user+unsubscribe@lists.alpinelinux.org > Help: alpine-user+help@lists.alpinelinux.org > --- > > --f403045c2a9a0ccb3f056964788e Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Hi,

Many thank= s for the answer.=C2=A0cat /etc/apk/repositories output after building the = container


After this I t= ried this in the container but did not work:

sudo apk add --= update --repository=C2=A0http://dl-cdn.alpinelinux.org/alpine/v3.7/community=C2=A0mongodb-tools

I am wondering how I can add the edge= repo when building the docker container? Are dependencies automatically ad= ded or should I apk update them myself?

Thanks,

Gabor


2018-04-08 10:58 GMT+02:00 C=C3=A1g <ca6c@bitmessage.ch>:
Gabor Toth wrote:<= br>
> I am building a Docker Image from=C2=A0 node:8-Alpine, and I am trying= to
> add not only mongodb but also mongodb-tools (mongorestore, mongodump > etc commands), and apk add mongodb-tools is not working:
> Can you please let me know how to install mong= odb-tools?

Hi,

libsasl2-dev is a non-existent package. "apk add mongodb-tools" w= orks
in edge. Which version are you using? In 3.7 the dependencies are:
libpcap, libressl2.6-libcrypto, libress2.6-libssl, libsasl, musl.
In edge: libpcap, libsasl, musl. cyrus-sasl-dev is needed to build it.

Cheers

--
ca=C3=B3c



---
Unsubscribe:=C2=A0 alpine-user+unsubscribe@lists.alpinelinux.org
Help:=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0alpine-user+help@lists.alpinelinux.org
---


--f403045c2a9a0ccb3f056964788e-- --- Unsubscribe: alpine-user+unsubscribe@lists.alpinelinux.org Help: alpine-user+help@lists.alpinelinux.org ---