Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.15 KB

README.md

File metadata and controls

39 lines (31 loc) · 1.15 KB

Docker Image CI

Phabricator-Docker

This is an unofficial Docker image of Phabricator app.
Application configured as a single image with supervisord to control all necessary processes inside one docker container.

Configuration

To startup Phabricator with a single command you need configured MySQL/MariaDB and S3 storage (Local server or AWS)

Example command to start:

docker run \
    --rm \
    -p 80:80 \
    -p 2222:2222 \
    --env MYSQL_HOST=mysqlhost.com \
    --env MYSQL_PORT=3306 \
    --env MYSQL_USER=root \
    --env MYSQL_PASSWORD=changeme \
    --env MINIO_SERVER_ACCESS_KEY=access_key \
    --env MINIO_SERVER_SECRET_KEY=secret_key \
    --env BASE_URI=yourdomain.com \
    -v /your/repo/folder:/var/repo
    rivshiell/phabricator-docker:latest

To launch all components of Phabricator using docker-compose use following set of commands:

amd64 arch:

export BASE_URI=yourdomain.com
export MYSQL_ROOT_PASSWORD=changeme
docker-compose up -d

Links

Docker hub