repos / git-pr

a self-hosted git collaboration server
git clone https://github.com/picosh/git-pr.git

commit
bf8e066
parent
9a45dd6
author
Eric Bower
date
2024-05-21 14:51:06 -0400 EDT
chore: fix docker
4 files changed,  +7, -5
M go.mod
M cmd/ssh/main.go
+1, -1
1@@ -1,6 +1,6 @@
2 package main
3 
4-import git "github.com/picosh/pico-git"
5+import git "github.com/picosh/git-pr"
6 
7 func main() {
8 	git.GitSshServer()
M cmd/web/main.go
+1, -1
1@@ -1,6 +1,6 @@
2 package main
3 
4-import git "github.com/picosh/pico-git"
5+import git "github.com/picosh/git-pr"
6 
7 func main() {
8 	git.StartWebServer()
M docker-compose.yml
+3, -1
 1@@ -25,6 +25,8 @@ services:
 2       git:
 3         aliases:
 4           - web
 5+    volumes:
 6+      - ./data/git-pr/data:/app/ssh_data
 7     env_file:
 8       - .env.prod
 9     ports:
10@@ -42,7 +44,7 @@ services:
11     env_file:
12       - .env.prod
13     volumes:
14-      - ./data/git-ssh/data:/app/ssh_data
15+      - ./data/git-pr/data:/app/ssh_data
16     ports:
17       - "${GIT_SSH_V4:-22}:2222"
18       - "${GIT_SSH_V6:-[::1]:22}:2222"
M go.mod
+2, -2
1@@ -1,6 +1,6 @@
2-module github.com/picosh/pico-git
3+module github.com/picosh/git-pr
4 
5-go 1.21.9
6+go 1.22
7 
8 require (
9 	github.com/alecthomas/chroma/v2 v2.13.0