svn compare revisions not working #84
Description
Hi,
we are hosting svn repositories on our phabricator server. So far these repositories work fine. We can commit, update etc... from windows and linux (ubuntu) hosts.
But from all clients we are unable to compare svn revisions, which make the repositories rather unusable. Thinks like "svn diff -r ... ..." don't work. Do you have any hints? The "docker logs phabricator" command dosen't show any related messages.
I start the container in a yaml file, like:
phabricator:
image: redpointgames/phabricator
container_name: phabricator
ports:
- "22:22"
networks:
- proxy-tier
links:
- mysql_phabricator:mysql
volumes:
- /data/phabricator/repos:/var/repo
- /data/phabricator/ssh_keys:/hostkeys
- /data/phabricator/certificates:/config
- ./proxy/certs:/ssl
- ./scripts:/scripts
environment:
- ENABLE_APCU=true
- SCRIPT_BEFORE_MIGRATION=/scripts/preamble.sh
- VIRTUAL_NETWORK=nginx-proxy
- MYSQL_HOST=mysql
- MYSQL_PORT=3306
- MYSQL_USER=***
- MYSQL_PASS=***
- PHABRICATOR_HOST=***
- PHABRICATOR_CDN=***
- PHABRICATOR_REPOSITORY_PATH=/var/repo
- PHABRICATOR_HOST_KEYS_PATH=/hostkeys/persisted
restart: always