omvisufol
(Omvisufol)
November 28, 2019, 8:23am
1
I created an svn server on my OpenMediaVault nas system.
First I ran the following command:
docker pull garethflowers/svn-server
Then:
docker run \
--name serversvn \
--detach \
--volume /home/svn:/var/opt/svn \
--publish 3690:3690 \
garethflowers/svn-server
So I have been following the developer’s instructions.
Now I started the container.The value “STATE” is “running” and the value “STATUS” is “Up 5 minutes (healthy)”.
then I ran the command:
docker exec -it serversvn svnadmin create vbrepo
I tried to access the repository but TortoiseSVN can’t find the host svn://serversvn/vbrepo
meyay
(Metin Y.)
November 28, 2019, 12:08pm
2
What makes you think svn://serversvn/vbrepo would be known and accessible outside your container? You need to access it using svn://{your host name or ip}:3690/vbrepo
.
1 Like
omvisufol
(Omvisufol)
November 28, 2019, 12:20pm
3
omvisufol
(Omvisufol)
November 28, 2019, 5:20pm
4
My host name is my nas ip or my computer ip?
meyay
(Metin Y.)
November 28, 2019, 6:21pm
5
{your host name or ip} = the docker host
1 Like
omvisufol
(Omvisufol)
November 29, 2019, 8:14am
6
where can I find the ip of docker? perhaps coincides with the ip of the nas?
meyay
(Metin Y.)
November 29, 2019, 11:03am
7
Wherever the Docker Engine is running on.
1 Like