Skip to content

jensim/sourcegraph-release-train

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEAD repo

sourcegraph-oss-release-train

Sourcegraph no longer has a OpenSource licence setup that allows me to run this release-train passt 5.1.0

Docker Image Version (latest semver) Docker Image Size (latest semver) Docker Pulls

Docker Image Version (latest semver) Docker Pulls

Release train

This repo just creates a build pipeline on top of sourcegraph-OSS. The enterprise version is great, but I cannot afford it beyond the trial, and since I like automating things,
I thought I'd automate the release pipeline for the OSS docker image.

Simple run conf

mkdir -p ~/.sourcegraph/config
mkdir -p ~/.sourcegraph/data

docker run -d \
  --publish 7080:7080 \
  --publish 127.0.0.1:3370:3370 \
  --volume ~/.sourcegraph/config:/etc/sourcegraph \
  --volume ~/.sourcegraph/data:/var/opt/sourcegraph \
  --name sourcegraph \
  jensim/sourcegraph-server-oss:v5.0.6

docker-compose.yml

version: '3.3'

services:
  sourcegraph:
    image: jensim/sourcegraph-server-oss:v5.0.6
    ports:
      - "7080:7080"
    volumes:
      - .sourcegraph/config:/etc/sourcegraph
      - .sourcegraph/data:/var/opt/sourcegraph
      - .sourcegraph/site-conf:/root