For the demo Please visit to the youtube URL-: https://www.youtube.com/watch?v=nXdSoo610Vk
Welcome to subversion.apache.org, the online home of the Apache Subversion™ software project. Subversion is an open source version control system. Founded in 2000 by CollabNet, Inc., the Subversion project and software have seen incredible success over the past decade. Subversion has enjoyed and continues to enjoy widespread adoption in both the open source arena and the corporate world.
Subversion exists to be universally recognized and adopted as an open-source, centralized version control system characterized by its reliability as a safe haven for valuable data; the simplicity of its model and usage; and its ability to support the needs of a wide variety of users and projects, from individuals to large-scale enterprise operations.
$ docker run -d -p 80:80 -p 2222:22 -p 443:443 arvindr226/subversion
Please create a file docker-compose.yml, add the below content.
version: "2.0" services: web: container_name: subversions image: arvindr226/subversion ports: - "80:80" - "443:443" - "2222:22"
$ docker-compose up -d
To Stop the subversion docker contianer. Use the below command.
$ docker-compose stop
First of all generate ssh public key using below command.
$ ssh-keygen
Step 1-: Authenticate your localhost to docker container
$ ssh-copy-id root@localhost -p2222
Enter the password "gotechnies"
Step 2-: Create SVN repository.
$ ssh root@localhost -p2222 /create_svn.sh New_Repo
Step 3-: Checkout your SVN repository
$ svn co http://192.168.1.89/svn/New_Repo
Default Username and password.
Username-: admin
Password-: gotechnies
To Check the repository on WebSVN. http://localhost/ or http://serverip/