-
-
Notifications
You must be signed in to change notification settings - Fork 12
Home
Gareth Flowers edited this page Jun 17, 2020
·
2 revisions
This wiki contains useful information for working with the SVN Server docker image.
Below is an example docker-compose.yml
file:
version: "3.7"
services:
app:
image: garethflowers/svn-server:latest
ports:
- "3690:3690"
restart: unless-stopped
volumes:
- ./data:/var/opt/svn
This will expose the service on port 3690 and create a local volume to store data.