Created
April 3, 2016 15:22
-
-
Save otwm/7e39ddb05e3792c69539c2a22387736e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #포트는 확인 할 것. | |
| sudo docker run -d -p 80:80 --name svn-server krisdavison/svn-server:v2.0 /startup.sh | |
| # 접속 | |
| sudo docker exec -it <container-name> bash | |
| # 저장소 추가 | |
| svnadmin create myrepo | |
| #사용자 추가 | |
| htpasswd -c /etc/subversion/passwd user-name | |
| #출처 | |
| https://hub.docker.com/r/krisdavison/svn-server/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment