This is a docker image of the Collabnet Subversion Edge Server.
The image is exposing the data dir of csvn as a volume under /opt/csvn/data. If you provide an empty host folder as volume the init scripts will take care of copying a basic configuration to the volume.
The container exposes the following ports:
The simplest way to start a subversion edge server is
docker run -d dcagatay/subversion-edge:latest
This will run the server. It will only be reachable from the docker host by using the container ip address.
Exposing the ports from the host:
docker run -d -p 3343:3343 -p 4434:4434 -p 18080:18080 \
--name svn-server dcagatay/subversion-edge:latest
This will make the admin interface reachable under http://docker-host:3343/csvn.
If you want to provide a host path for the data use command like this:
docker run -d -p 3343:3343 -p 4434:4434 -p 18080:18080 \
-v /srv/svn-data:/opt/csvn/data --name svn-server dcagatay/subversion-edge:latest
For information to further configuration please consult the documentation at CollabNet.
Content type
Image
Digest
Size
354.2 MB
Last updated
over 6 years ago
docker pull dcagatay/subversion-edge