This is an automated email from the ASF dual-hosted git repository.
gcruz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git
The following commit(s) were added to refs/heads/master by this push:
new c75176a0c [#8513] docs updated to reflect the latest changes to
Dockerfile
c75176a0c is described below
commit c75176a0cbf12ec8df909979582b19714054e071
Author: Guillermo Cruz <[email protected]>
AuthorDate: Mon Jun 26 09:30:35 2023 -0600
[#8513] docs updated to reflect the latest changes to Dockerfile
---
Allura/docs/getting_started/install_each_step.rst | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/Allura/docs/getting_started/install_each_step.rst
b/Allura/docs/getting_started/install_each_step.rst
index 2e94d17cc..fccdd670f 100644
--- a/Allura/docs/getting_started/install_each_step.rst
+++ b/Allura/docs/getting_started/install_each_step.rst
@@ -26,15 +26,15 @@ Step-by-Step Installation
For a simpler setup using Docker images, see :ref:`docker-install` instead.
-In these instructions, we'll use `VirtualBox <http://www.virtualbox.org>`__
and `Ubuntu 18.04 <http://ubuntu.com>`_ to create a disposable sandbox for
Allura development/testing. Allura should work on other Linux systems
(including OSX), but setting up all the dependencies will be different.
+In these instructions, we'll use `VirtualBox <http://www.virtualbox.org>`__
and `Ubuntu 22.04 <http://ubuntu.com>`_ to create a disposable sandbox for
Allura development/testing. Allura should work on other Linux systems
(including OSX), but setting up all the dependencies will be different.
* Download and install `VirtualBox
<http://www.virtualbox.org/wiki/Downloads>`__ for your platform.
-* Download a minimal `Ubuntu 18.04 64-bit ISO
<https://help.ubuntu.com/community/Installation/MinimalCD>`_.
+* Download a server image of `Ubuntu 22.04 64-bit ISO
<https://releases.ubuntu.com/jammy/>`_.
* Create a new virtual machine in Virtual Box, selecting Ubuntu (64 bit) as
the OS type. The rest of the wizards' defaults are fine.
-* When you launch the virtual machine for the first time, you will be prompted
to attach your installation media. Browse to the :file:`mini.iso` that you
downloaded earlier.
+* When you launch the virtual machine for the first time, you will be prompted
to attach your installation media. Browse to the
:file:`ubuntu-22.04.2-live-server-amd64.iso` that you downloaded earlier.
* After a text-only installation, you may end up with a blank screen and
blinking cursor. Press :code:`Alt-F1` to switch to the first console.
@@ -49,6 +49,7 @@ Before we begin, you'll need to install some system packages.
Allura currently
.. code-block:: bash
~$ sudo apt-get update
+ ~$ sudo apt-get install gpg gpg-agent
~$ sudo apt-get install software-properties-common
~$ sudo add-apt-repository ppa:deadsnakes/ppa
~$ sudo apt-get update
@@ -199,7 +200,7 @@ For non-Ubuntu installations see
https://nodejs.org/en/download/package-manager/
.. code-block:: bash
- (env-allura)~$ curl --silent --location
https://deb.nodesource.com/setup_10.x | sudo bash -
+ (env-allura)~$ curl --silent --location
https://deb.nodesource.com/setup_14.x | sudo bash -
(env-allura)~$ sudo apt-get install nodejs
(env-allura)~$ cd ~/src/allura
(env-allura)~$ npm ci