All Projects → philpep → docker-phabricator

philpep / docker-phabricator

Licence: other
docker-compose configuration for running phabricator

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to docker-phabricator

Phabricator
Effective June 1, 2021: Phabricator is no longer actively maintained.
Stars: ✭ 12,225 (+64242.11%)
Mutual labels:  phabricator
arcanist-linters
A collection of custom Arcanist linters
Stars: ✭ 64 (+236.84%)
Mutual labels:  phabricator
WikiContrib
A tool for Wikimedia community members to visualize their technical contributions
Stars: ✭ 21 (+10.53%)
Mutual labels:  phabricator
vim-phabricator
Vim plugin for Phabricator and Arcanist
Stars: ✭ 17 (-10.53%)
Mutual labels:  phabricator

phabricator on docker

This is a set of docker and docker-compose configuration for running phabricator.

Quick start

# clone this repository
git clone https://github.com/philpep/docker-phabricator
cd docker-phabricator

# clone phabricator repositories in ./src
git clone -b stable https://github.com/phacility/phabricator src/phabricator
git clone -b stable https://github.com/phacility/arcanist src/arcanist
git clone -b stable https://github.com/phacility/libphutil src/libphutil

# edit the .env file and change UID / GID to your own user and group id
# (this is required to have docker processes running with your uid/gid)
edit .env

# edit etc/local.json and set phabricator.base-uri security.alternate-file-domain as appropriate
edit etc/local.json

# then build docker images
docker-compose build

# then start php and mysql containers
docker-compose up -d php mysql

# then initialize the database
./bin/storage upgrade

# then start nginx and phd (phabricator daemons)
docker-compose up -d

# your phabricator instance is now running on port 8080 and you can point
# your ssl/reverse proxy on it.

Upgrades

# This will pull repositories, stop, upgrade database and start phabricator
./bin/upgrade

aphlict (aka notification server)

You should configure notifications.servers:

[
  {
    "type": "client",
    "host": "phab.example.com"
    "port": 8080,
    "protocol": "https",
    "path": "/ws/"
  },
  {
    "type": "admin",
    "host": "aphlict",
    "port": 22281,
    "protocol": "http"
  }
]
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].