无法将文件推送到远程主机

时间:2016-04-19 08:28:47

标签: git docker gogs

我已经使用此命令启动了一个容器(git服务)......

# Create local directory for volume.
$ mkdir -p /var/gogs

# Use `docker run` for the first time.
$ docker run --name=gogs -p 10022:22 -p 10080:3000 -v /var/gogs:/data gogs/gogs

我可以启动git服务,可以从浏览器中检查新创建的存储库...

http://52.201.82.96:10080/shantanuo/testme

但是当我按照这些步骤操作时,我收到错误(许可被拒绝):

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin http://localhost:3000/shantanuo/testme.git
git push -u origin master

是码头问题吗?

2 个答案:

答案 0 :(得分:1)

由于docker端口3000链接到主机的10080,请使用此...

git remote add origin http://52.201.82.96:10080/shantanuo/testme.git

答案 1 :(得分:0)

你应该定义音量数据点, e.g。

mkdir -p /var/gogs
VOLUME["/var/gogs"]