A simple Subversion server, using `svnserve`.
1M+
A simple Subversion server, using svnserve.
To start a container, with data stored in /home/svn on the host, use the following:
docker run \
--name my-svn-server \
--detach \
--volume /home/svn:/var/opt/svn \
--publish 3690:3690 \
garethflowers/svn-server
Use svnadmin within your container to create and manage repositories.
For example, to create a repository called new-repo in container my-svn-server, use the following:
docker exec -it my-svn-server svnadmin create new-repo
Content type
Image
Digest
sha256:26688af47…
Size
7.5 MB
Last updated
almost 2 years ago
docker pull garethflowers/svn-server