Skip to content
Gareth Flowers edited this page Jun 17, 2020 · 2 revisions

Docker SVN Server Wiki

This wiki contains useful information for working with the SVN Server docker image.

docker-compose

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.

Clone this wiki locally