You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 25, 2019. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,12 @@ docker run \
15
15
--env MYSQL_PASS=pass \
16
16
--env PHABRICATOR_REPOSITORY_PATH=/repos \
17
17
-v /host/repo/path:/repos \
18
-
hachque/phabricator
18
+
redpointgames/phabricator
19
19
```
20
20
21
21
Alternatively you can launch this image with Docker Compose. Refer to [Using Docker Compose](./DOCKER-COMPOSE.md) for more information.
22
22
23
+
**NOTICE:** This repository has been recently moved to `RedpointGames/phabricator` and the Docker image to use is now `redpointgames/phabricator`. `hachque/phabricator` will be kept in sync with `redpointgames/phabricator` for the foreseeable future, so you don't need to update your configuration immediately.
Copy file name to clipboardExpand all lines: preflight/10-boot-conf
+14
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,11 @@ if [ "$MYSQL_STORAGE_NAMESPACE" == "" ]; then
22
22
MYSQL_STORAGE_NAMESPACE=phabricator
23
23
fi
24
24
25
+
if [ "${MYSQL_PORT:0:6}"=="tcp://" ];then
26
+
echo"Error: MYSQL_PORT environment variable has been set based on a container link called mysql. This places an invalid value inside MYSQL_PORT, which causes Phabricator startup to fail later on. When using a linked container called mysql, you should explicitly set MYSQL_PORT=3306 to ensure it has a valid value."
27
+
exit 1
28
+
fi
29
+
25
30
if [ "$SSL_TYPE"=="" ];then
26
31
SSL_TYPE=none
27
32
fi
@@ -78,6 +83,7 @@ if [ -d /config/keycache ]; then
0 commit comments