linux下利用docker安装gogs

docker pull gogs/gogs
mkdir -p /data/git
docker run --name=gogs -d  -p 10022:22 -p 10080:3000 -v /data/git:/data gogs/gogs