All Projects → garethflowers → docker-svn-server

garethflowers / docker-svn-server

Licence: MIT license
A Docker image running a simple Dockerised Subversion server, using `svnserve`.

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to docker-svn-server

Node Svn Spawn
Easy way to access svn repository with node.js.
Stars: ✭ 85 (+214.81%)
Mutual labels:  svn, subversion
libvcs
⚙️ Lite, typed, pythonic utilities for git, svn, mercurial, etc.
Stars: ✭ 43 (+59.26%)
Mutual labels:  svn, subversion
Source Integration
Source control integration plugin framework for MantisBT, including support for Github, Gitlab, Bitbucket, Gitweb, Cgit, Subversion, Mercurial and more
Stars: ✭ 167 (+518.52%)
Mutual labels:  svn, subversion
Scm Manager
The easiest way to share and manage your Git, Mercurial and Subversion repositories over http.
Stars: ✭ 50 (+85.19%)
Mutual labels:  svn, subversion
Subclipse
Subclipse - Eclipse SVN Provider
Stars: ✭ 421 (+1459.26%)
Mutual labels:  svn, subversion
Websvn
Fork from WebSVN
Stars: ✭ 66 (+144.44%)
Mutual labels:  svn, subversion
proxychanger
Go tool to change system and applications proxy
Stars: ✭ 15 (-44.44%)
Mutual labels:  svn, subversion
svn2git
Tool to help and automate migration from SVN to GitLab
Stars: ✭ 34 (+25.93%)
Mutual labels:  svn, subversion
Svn Stash
It's like git stash , but for Subversion.
Stars: ✭ 49 (+81.48%)
Mutual labels:  svn, subversion
ohloh scm
The Ohloh source control management library
Stars: ✭ 58 (+114.81%)
Mutual labels:  svn, subversion
Svn Docker
Lightweight Docker image to build a container running an SVN server
Stars: ✭ 87 (+222.22%)
Mutual labels:  svn
SVNToolBox
Enhances IntelliJ IDEA SVN integration
Stars: ✭ 19 (-29.63%)
Mutual labels:  svn
Wp Plugin Git Svn Sync
☄️ Zero config synchronizing of Git repository with SVN for publishing WordPress plugins.
Stars: ✭ 81 (+200%)
Mutual labels:  svn
tech-share
每周技术分享,点击watch,更新时收到推送
Stars: ✭ 17 (-37.04%)
Mutual labels:  svn
phpcs-changed
🐘 Run phpcs on files and only report new warnings/errors compared to the previous version.
Stars: ✭ 21 (-22.22%)
Mutual labels:  svn
dbmaintain
DbMaintain enables automatic roll-out of updates to a relational database
Stars: ✭ 17 (-37.04%)
Mutual labels:  svn
Crema
Meta data server & client tools for game development
Stars: ✭ 61 (+125.93%)
Mutual labels:  svn
Vcspull
🔄 synchronize projects via yaml/json manifest. built on libvcs
Stars: ✭ 187 (+592.59%)
Mutual labels:  svn
autorevision
A script for extracting version information useful in release/build scripting.
Stars: ✭ 73 (+170.37%)
Mutual labels:  svn
Svn Scm
SVN support for VS Code
Stars: ✭ 172 (+537.04%)
Mutual labels:  svn

SVN Server

A simple Subversion server, using svnserve.

How to use this image

Start a Subversion Server instance

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

Creating a new SVN Repository

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

License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].