1.下载docker compose v2 (别下错了,网上的其他的安装说明都是错的,官方提示了要v2版本) https://docs.sourcegraph.com/admin/deploy/docker-compose Minimum Dockerv20.10.0and Docker Composev1.29.0 1 2 3 4 5 wget -P /usr/local/bin/ https://github.com/docker/compose/releases/download/v2.6.0/d...
Sourcegraph with Docker Compose This repository is the deployment reference for deploying Sourcegraph with Docker Compose. 🚨 IMPORTANT: When upgrading Sourcegraph, please check upgrading docs to check if any manual migrations are necessary. The master branch tracks development. Use the branch of this...
1、安装# 我是使用docker进行安装的,具体过程就不详细说了,放出docker-compose.yml文件内容。 Copy Highlighter-hljs version:"3" services: opengrok: container_name:sourcegraph image:sourcegraph/server:3.36.3 ports: -"7080:7080/tcp" -"127.0.0.1:3370:3370/tcp" environment: DISABLE_OBSERVABILITY:'true'...
1、安装 我是使⽤docker进⾏安装的,具体过程就不详细说了,放出docker-compose.yml⽂件内容。version: "3"services:opengrok:container_name: sourcegraph image: sourcegraph/server:3.36.3 ports:- "7080:7080/tcp"- "127.0.0.1:3370:3370/tcp"environment:DISABLE_OBSERVABILITY: 'true'volumes:- '~...
sourcegraph / deploy-sourcegraph-docker Star 142 Code Issues Pull requests Sourcegraph with Docker Compose deployment reference docker deployment docker-compose sourcegraph repo-type-infrastructure Updated May 16, 2025 Shell sourcegraph / sourcegraph-vscode-DEPRECATED Star 84 Code Issues Pull requests...
Sourcegraph with Docker Compose 加入Gitee 与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :) 免费加入 已有帐号?立即登录 文件 master 该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。 克隆/下载 git config --global user.name userName git config --global...
A step by step guide to install Sourcegraph with Docker Compose. Overview Fork the deployment repository (recommended) Customize the instance Clone the release branch Build and start the Sourcegraph containers NOTE: This guide is not limited to GitHub users. You can create a copy of thedeployment...
Copy the Postgres dump from your local machine to the Docker Compose host: BASH # Modify this command with your authentication information scp *db.out example_user@example_docker_compose_host.com:/tmp/ssh from your local machine into the Docker Compose deployment host Copy database dump from ...
You can find examples of this procedure fordocker-composein ourdocker-compose migration docs. If you run Docker on an OS such as RHEL, Fedora, or CentOS with SELinux enabled, sVirt doesn't allow the Docker process to access~/.sourcegraph/configand~/.sourcegraph/data. In that case, you wi...
Transform: Create a SQLite DB from filtered search results and fetched package.json files. The collection pipeline is a series of shell commands executed in order. Our preferred tool is Taskfile instead of bash scripts or Makefiles. The whole pipeline can be executed via Docker Compose to save...