A image for a CollabNet Subversion Edge Server
100K+
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 mamohr/subversion-edge
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 mamohr/subversion-edge
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 mamohr/subversion-edge
For information to further configuration please consult the documentation at CollabNet.
Content type
Image
Digest
Size
346.1 MB
Last updated
over 8 years ago
docker pull mamohr/subversion-edge