Sign inSign up

dcagatay/subversion-edge

By dcagatay

Updated over 6 years ago

Subversion Edge Docker Image

Image
1

1.1K

dcagatay/subversion-edge repository overview

dcagatay/subversion-edge

This is a docker image of the Collabnet Subversion Edge Server.

Usage

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:

  • 3343 - HTTP CSVN Admin Sites
  • 4434 - HTTPS CSVN Admin Sites (If SSL is enabled)
  • 18080 - Apache Http SVN

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.

Tag summary

Content type

Image

Digest

Size

354.2 MB

Last updated

over 6 years ago

docker pull dcagatay/subversion-edge