From 9a565fc9a199428c842616ec003caa0a47842168 Mon Sep 17 00:00:00 2001 From: ajasibley <125228925+ajasibley@users.noreply.github.com> Date: Thu, 18 May 2023 12:39:44 +0000 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8255945e9..262306ae7 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ -# Start Vespa with Docker +**Start Vespa with Docker** + `docker run -it --platform=linux/amd64 --detach --name vespa --hostname vespa-container \ --publish 8080:8080 --publish 19071:19071 \ vespaengine/vespa` -# If you have issues starting cosmonic: +**If you have issues starting cosmonic:** + `rustup default stable rustup target add wasm32-unknown-unknown` ----------------------------------------- -# Issue: Cosmonic fails to launch server on macOS due to incorrect OpenSSL version - -**Description:** +**Cosmonic fails to launch server on macOS due to incorrect OpenSSL version** Cosmonic is unable to properly launch a server on macOS systems because the default OpenSSL version provided by the operating system is LibreSSL, which is incompatible with Cosmonic's requirements. The Cosmonic documentation suggests installing OpenSSL 1.1 using Homebrew (`brew install openssl@1.1`), which resolves the issue for installations managed by Homebrew. However, when attempting to use Nix to install the same package, the issue persists.