@@ -3,8 +3,8 @@ Virtual Appliance
3
3
==================
4
4
5
5
You can use Planemo as part of a Galaxy tool development virtual
6
- appliance pre-configured with Planemo, Galaxy _, Docker _, a local Tool Shed ,
7
- linuxbrew _, and Komodo _ editor .
6
+ appliance which comes pre-configured with Planemo, Galaxy _, Docker _, Conda _ ,
7
+ a local Tool Shed, linuxbrew _, Komodo _ and Atom _ editors .
8
8
9
9
10
10
Quick Links
@@ -34,7 +34,7 @@ format (OVA_, .ova), Docker, Vagrant, and as a Google Compute Engine cloud image
34
34
35
35
The OVA image is a stable way to boot a Planemo virtual
36
36
machine on any platform and comes with a pre-configured Xubuntu-based windowed
37
- operating system with graphical editing tools including Komodo _ editor .
37
+ operating system with graphical editing tools including Komodo _ and Atom _ editors .
38
38
This approach can be thought of more as a complete
39
39
environment and may be better for tutorials and workshops where consistent user
40
40
experience is more important.
@@ -49,12 +49,12 @@ local compute resources are unavailable or insufficient.
49
49
50
50
Launching the Appliance
51
51
-----------------------
52
- The following sections will desribe how to launch the appliance using various platforms.
52
+ The following sections will describe how to launch the appliance using various platforms.
53
53
54
54
Launching the Appliance (VirtualBox - OVA)
55
55
================================================
56
56
57
- The VirtualBox OVA variant of the planemo appliance comes preconfigured with
57
+ The VirtualBox OVA variant of the Planemo appliance comes preconfigured with
58
58
a full windowed development environment (based on Xubuntu). Encompassing the
59
59
complete environment means it is easier to setup and provides an identical
60
60
experience for every developer using it. These make the OVA image ideal
@@ -78,7 +78,7 @@ and the machine should become available.
78
78
.. image :: images/ova_importing.png
79
79
:alt: Screenshot OVA Import
80
80
81
- The Firefox browser, Komodo _ editor , Galaxy, Planemo and everything else is
81
+ The Firefox browser, Komodo _ and Atom _ editors , Galaxy, Planemo and everything else is
82
82
available right away on the desktop along with useful links.
83
83
84
84
.. image :: images/ova_desktop.png
@@ -159,6 +159,7 @@ following command (which will pull the appliance down from `Docker Hub
159
159
<https://registry.hub.docker.com/u/planemo/interactive/> `_).
160
160
161
161
::
162
+
162
163
$ docker run -p 8010:80 -p 9009:9009 -v `pwd`:/opt/galaxy/tools -i -t planemo/interactive
163
164
164
165
This command will start Galaxy and various other services and then open a bash
@@ -193,6 +194,7 @@ This file must literally be named ``Vagrantfile``. Next you will need to
193
194
startup the appliance. This is as easy as
194
195
195
196
::
197
+
196
198
$ vagrant up
197
199
198
200
Once the virtual server has booted up completely, Galaxy will be available at
@@ -218,6 +220,7 @@ If you set these defaults, you will not have to supply them to all subsequent
218
220
commands.
219
221
220
222
::
223
+
221
224
$ gcloud auth login
222
225
$ gcloud config set project YOUR-PROJECT-NAME
223
226
$ gcloud config set compute/region us-central1 (replace us-central1 with another region if desired)
@@ -228,13 +231,14 @@ need to be done one time, unless you delete the image from your account.
228
231
229
232
::
230
233
231
- gcloud compute images create planemo-machine --source-uri=http://storage.googleapis.com/galaxyproject_images/planemo_machine.image.tar.gz
234
+ $ gcloud compute images create planemo-machine --source-uri=http://storage.googleapis.com/galaxyproject_images/planemo_machine.image.tar.gz
232
235
233
236
To launch the image as a fresh instance, use the following command. This
234
237
command will, upon completion, display an external ip address that you can
235
238
navigate to in your web browser.
236
239
237
240
::
241
+
238
242
$ gcloud compute instances create planemo --machine-type n1-standard-2 --image planemo-machine --tags http-server
239
243
240
244
If you'd like to SSH in to the instance at this point, it's easy to do with:
@@ -264,4 +268,5 @@ environments such as Amazon Web Services and Google Compute Engine.
264
268
.. _Kitematic : https://kitematic.com/
265
269
.. _boot2docker : http://boot2docker.io/
266
270
.. _OVA : https://en.wikipedia.org/wiki/Open_Virtualization_Format
271
+ .. _Atom : https://atom.io/
267
272
0 commit comments