SVN is the abbreviation of subversion, an open source version control system that uses a branch management system for efficient management. In short, it is used for multiple people to jointly develop the same project, share resources, and achieve ultimate centralized management. 1. Search && pull svn mirror docker search svn #Search for svn images docker pull garethflowers/svn-server #Get images 2. Run the image docker images #View the image docker run --name svn-server -d -v /Users/xxxx/docker/svn:/var/opt/svn -p 3690:3690 garethflowers/svn-server #Start the image-name #Alias-d #Background run-v #Host and container directory mapping-p #Host and container port mapping 3. Enter the container 4. Configure SVN server Create a resource repository Create a successful build file README.txt conf db format hooks locks Resource warehouse configuration Modify the svnserve.conf file in the conf directory anon-access = none # Anonymous users cannot read or write, and can also be set to read-only auth-access = write # Authorized users can write password-db = passwd # Password file path, relative to the current directory authz-db = authz # Access control file realm = /var/opt/svn/svn # Authentication namespace, which will be displayed in the authentication prompt interface and used as a keyword for the credential cache. You can write the repository name, such as svn Configure account and password Modify the passwd file in the conf directory [users] # harry = harryssecret # sally = sallyssecret admin = 123456 Configure account permissions and modify the authz file in the conf directory [groups] owner = admin [/] # / means all repositoriesadmin = rw # User admin has read and write permissions in all repositories[svn:/] # Indicates that the following users have corresponding permissions in all directories of the repository svn@owner = rw # Indicates that users under the owner group have read and write permissions 5. svn pull files svn co svn://127.0.0.1:3690/svn Summarize This is the end of this tutorial on how to build an SVN server with Docker. For more information about Docker SVN server, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: js and jquery to achieve tab status bar switching effect
>>: Summary of knowledge points about null in MySQL database
1. Install openssh-server yum install -y openssl ...
The color presentation on a web page will be affec...
I think this is a problem that many people have en...
Table of contents 1. What are options? 2. What at...
question After the company migrated the server, t...
Detailed explanation of MySQL instance with SSD s...
Table of contents 01 ReplicaSet Architecture 02 I...
Previously, react.forwardRef could not be applied...
Table of contents 1. BOM 2. Composition of BOM 2....
One of the most important features of a style she...
Comprehensive understanding of html.css overflow ...
Asynchronous replication MySQL replication is asy...
Table of contents 1. Introduction 2. Introduction...
Sometimes you will see English commas ",&quo...
Preface I have been working on some front-end pro...