Project

General

Profile

Arvbox » History » Version 3

Peter Amstutz, 03/03/2016 04:16 PM

1 1 Peter Amstutz
h1. Arvbox
2
3 3 Peter Amstutz
We recommend using "Arvbox":http://doc.arvados.org/install/arvbox.html to set up self-contained Arvados development environment.
4 1 Peter Amstutz
5 3 Peter Amstutz
h2. Running Arvados in development mode
6
7
<pre>
8
$ arvbox reboot dev
9
</pre>
10
11
This performs the following operations:
12
13
# Rebuild the arvbox-dev docker image (typically the layers are cached so this is a no-op unless you are working on arvbox itself)
14
# Create @~/.arvbox/arvbox@ to store arvbox state
15
# Clone the arvados git repository to @~/.arvbox/arvbox/arvados@
16
# Place stateful container data in @~/.arvbox/arvbox/postgres@ and @~/.arvbox/arvbox/var@
17
# Start the container
18
19
The container will then:
20
# Download and cache various packages (Ruby gems, Passenger)
21
# Compile Arvados server programs (for servers implemented in Go)
22
# Build and install Arvados packages (such as arvados-python-client)
23
# Start the Arvados services
24
25
The directories inside @~/.arvbox/arvbox@ are all bind-mounted inside the container.  This means that you may edit files on the host file system and the changes will be seen inside the container immediately.  For example, if you edit a page template in @~/.arvbox/arvbox/arvados/apps/workbench/app/views@ you only need to reload the page in your browser to see the change.
26
27
You can restart individual services without restarting the whole container.  For compiled server programs, the startup script always recompiles the server before starting it.  For example, if you are working on @keepproxy@
28
29
<pre>
30
$ arvbox sv restart keepproxy
31
</pre>
32
33
If any service fails to come up, you can see the debug log using @arvbox log@.  This log will include compilation or install errors:
34
35
<pre>
36
$ arvbox log keepproxy
37
</pre>
38
39
Finally, you can get a root shell inside the container using @arvbox sh@
40
41
<pre>
42
$ arvbox sh
43
</pre>
44
45
h2. Running the test suite
46
47
Arvbox can also be used to run the Arvados test suite in an isolated manner.
48
49
<pre>
50
$ arvbox restart test
51
</pre>