From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 13:39:58 2015 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A44B5EB for ; Wed, 10 Jun 2015 13:39:58 +0000 (UTC) (envelope-from joe.shevland@hushmail.com) Received: from smtp3.hushmail.com (smtp3.hushmail.com [65.39.178.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.hushmail.com", Issuer "smtp.hushmail.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 121D616ED for ; Wed, 10 Jun 2015 13:39:57 +0000 (UTC) (envelope-from joe.shevland@hushmail.com) Received: from smtp3.hushmail.com (localhost [127.0.0.1]) by smtp3.hushmail.com (Postfix) with SMTP id AAFD0E019C for ; Wed, 10 Jun 2015 13:05:13 +0000 (UTC) Received: from smtp.hushmail.com (w3.hushmail.com [65.39.178.62]) by smtp3.hushmail.com (Postfix) with ESMTP for ; Wed, 10 Jun 2015 13:05:13 +0000 (UTC) Received: by smtp.hushmail.com (Postfix, from userid 99) id 8723CC0487; Wed, 10 Jun 2015 13:05:13 +0000 (UTC) MIME-Version: 1.0 Date: Wed, 10 Jun 2015 23:05:13 +1000 To: freebsd-questions@freebsd.org Subject: Re: FreeBSD and Docker From: "Joe Shevland" In-Reply-To: <20150610111135.C81EE2319B@smtp.hushmail.com> Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="UTF-8" Message-Id: <20150610130513.8723CC0487@smtp.hushmail.com> X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2015 13:39:58 -0000 I'd go for a Linux environment if I was going to use Docker. Aside from that, in general I break it down into steps first when trying to debug a problem. Remove the -q for a start to suppress warnings. The wget fails because of an invalid certificate on the site, try: $ cd /tmp $ wget --no-check-certificate https://get.docker.com -O temp.sh That'll get you the install script in /tmp/temp.sh. But the script deliberately looks for linux variants and will abort when you run it on freebsd... my understanding was Docker relies on Linux kernalisms fairly heavily (I don't know how far you get with linux compat in freebsd). On 10/6/2015 at 9:50 PM, opendaddy@hushmail.com wrote: > >Hi! > >Attempting to install the Discourse discussion forum >(https://github.com/discourse/discourse) on my DigitalOcean >FreeBSD VPS. Discourse requires Docker, however nothing happens >when I try `wget -qO- https://get.docker.com/ | sh` >(https://github.com/discourse/discourse/blob/master/docs/INSTALL- >cloud.md). > >What am I doing wrong? > >Thanks! > >O.D. > >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to "freebsd-questions- >unsubscribe@freebsd.org"