mirror of
https://github.com/proot-me/proot.git
synced 2024-11-11 13:09:31 +00:00
29 lines
667 B
ReStructuredText
29 lines
667 B
ReStructuredText
How to setup a development environment for PRoot?
|
|
=================================================
|
|
|
|
This document provides instructions for preparing
|
|
a system for developing PRoot and CARE.
|
|
|
|
Docker
|
|
------
|
|
|
|
The following command will attempt to build an image for
|
|
each supported distribution::
|
|
|
|
make -C test check-test-docker.sh V=1
|
|
|
|
Vagrant
|
|
-------
|
|
|
|
**Note**: this requires installing the `vagrant-sshfs`_ plugin.
|
|
|
|
.. _vagrant-sshfs: https://github.com/dustymabe/vagrant-sshfs
|
|
|
|
The following command will initialize a virtual machine for
|
|
each supported distribution::
|
|
|
|
for distro in alpine centos debian; do
|
|
cd "test/vagrant/${distro}"
|
|
vagrant up
|
|
done
|