phabricator-container is a port of hach-que-docker/phabricator that differs in the following points:
To configure this image, create a config directory, with the following files in it:
script.pre file to configure phabricator. See below.preamble.php file. See the phabricator docs to learn more about preamble configuration.ssh_host_rsa_keyssh_host_ed25519_keyssh_host_ecdsa_keyssh_host_dsa_keyExample script.pre file:
#!/bin/bash
# Set the name of the host running MySQL:
./bin/config set mysql.host "example.com"
# If MySQL is running on a non-standard port:
#./bin/config set mysql.port 3306
# Set the username for connecting to MySQL:
./bin/config set mysql.user "root"
# Set the password for connecting to MySQL:
./bin/config set mysql.pass "password"
# Set the base URI that will be used to access Phabricator:
./bin/config set phabricator.base-uri "http://myphabricator.com/"
/usr/bin/docker run -p 80:80 -p 22:22 -p 22280:22280 -v /path/to/config:/config -v /path/to/repo/storage:/srv/repo --name=phabricator wingedkiwi/phabricator-container
What do these parameters do?
-p 80:80 = forward the host's HTTP port ot Phabricator for web access
-p 22:22 = forward the host's SSH port to Phabricator for repository access
-p 22280:22280 = forward the host's 22280 port for the notification server
-v path/to/config:/config = map the configuration from the host to the container
-v path/to/repo/storage:/srv/repo = map the repository storage from the host to the container
--name phabricator = the name of the container
wingedkiwi/phabricator-container = the name of the image
Content type
Image
Digest
sha256:b30149458…
Size
245.2 MB
Last updated
over 8 years ago
docker pull wingedkiwi/phabricator