Installing the PullRequest Proxy
When your organization has been created by a PullRequest team member, you should receive a link via email (or other specified delivery) containing the PullRequest Proxy package tarball.
Docker
You will need a server/instance that can run Docker (recommended a standard variant of Linux).
If you need to install Docker you can follow the instructions for your OS type here: https://docs.docker.com/install
You will also need docker-compose installed. Instructions can be found here: https://docs.docker.com/compose/install
Tarball Extraction
Download the proxy package tarball to your server from the link provided by PullRequest.
Extract the tarball into a directory (recommended in the user home that you're installing to). This will create the ~/pullrequest_proxy/
directory. (see below)
Starting the Proxy
If you are running as a non-root user, cd
into the pullrequest_proxy
folder and run the following:
Run ./start.sh
. You can either make the script executable or just run it with:
If your proxy is not starting when running the start.sh
script and is printing out docker-compose
help instructions then you can try editing the start.sh
script by removing the -V
argument from the line starting with docker-compose ...
.
If the logs don't seem to indicate any errors, but the page is still not loading, then you may want to check your network settings for this server to make sure that port 5012
allows incoming connections.
Last updated