Skip to content

a subversion docker container which does daily backup dumps and is able to authenticate users

License

Notifications You must be signed in to change notification settings

ojehle/docker-subversion

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Subversion Server based on secured Apache SSL PHP on Ubuntu 14.04

maintained by MarvAmBass

FAQ - All you need to know about the marvambass Containers

What is it

A Docker Subversion Apache2 Container (based on marvambass/apache2-ssl-php).

Features automatic daily dumps of your SVN Repos for Backup purposes.

You can control the access of your Project with a htpasswd file in combination with a authz file.

Creating a project

You are able to create a new Project by simply adding a new Folder to your repository root directory (/var/local/svn). A cron running every 10 minutes will eventually pick it up.

How to access your repository

By defdault the repository is host on /svn, so for instance you can checkout yourRepo using svn checkout http://yourDockerIp/svn/yourRepo

pre run configuration (optional)

You may create the following two files. If you don't need access control you can just skip this step.

Create authz file like this example:

$DAV_SVN_CONF/dav_svn.authz

[groups]
admin = user1,user2, testuser
devgroup = user5, user6

[project1:/]
@admin = rw
@devgroup = r

# devgroup members are able to read and write on project2
[project2:/]
@devgroup = rw

# admins have control over every project - and can list all projects on the root point
[/]
@admin = rw

# everybody is able to read repos and sees all projects
[/]
* = r

$DAV_SVN_CONF/dav_svn.passwd

To add a new User like 'testuser' with password 'test' use the following command

htdigest -c $DAV_SVN_CONF/dav_svn.passwd Subversion testuser

Or if you're to lazy, just use this line for your file (for testing only!)

testuser:Subversion:5d1b8d8c9a69af4b0180cdafe09cb907

Run the container

docker run \
-d \
-v $SVN:/var/local/svn \
-v $SVN_BACKUP:/var/svn-backup \
-v $DAV_SVN_CONF/:/etc/apache2/dav_svn/ \
--name subversion marvambass/subversion \

Build an push

docker build -t murks/docker-subversion:latest . docker push murks/docker-subversion:latest

About

a subversion docker container which does daily backup dumps and is able to authenticate users

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 72.3%
  • Dockerfile 27.7%