Skip to content

Commit

Permalink
Remove stray -v
Browse files Browse the repository at this point in the history
  • Loading branch information
SonnyX authored Jun 8, 2021
1 parent cdb0c90 commit c820852
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This is the automated docker image generation for svn with LDAP support

## Example docker start:
```bash
docker run -d -p 80:80 -v --name=svn --restart=always -v /path/to/svn/repositories:/repositories --env SVN_LDAP_URL="ldaps://ipa01.example.com:636/" --env SVN_LDAP_BIND_DN="DistinguishedName" --env SVN_LDAP_BIND_PW="Password" --env SVN_LDAP_ALLOWED_GROUP_DN="cn=Administrators" ghcr.io/totemarts/subversion-ldap
docker run -d -p 80:80 --name=svn --restart=always -v /path/to/svn/repositories:/repositories --env SVN_LDAP_URL="ldaps://ipa01.example.com:636/" --env SVN_LDAP_BIND_DN="DistinguishedName" --env SVN_LDAP_BIND_PW="Password" --env SVN_LDAP_ALLOWED_GROUP_DN="cn=Administrators" ghcr.io/totemarts/subversion-ldap
```

## Example docker-compose
Expand All @@ -21,4 +21,5 @@ services:
SVN_LDAP_ALLOWED_GROUP_DN: "cn=Administrators"
volumes:
- /path/to/svn/repositories:/repositories
restart: always
```

0 comments on commit c820852

Please sign in to comment.