2015-08-17 06:32:11 +00:00
|
|
|
# Docker for gogs
|
2014-08-29 16:20:15 +00:00
|
|
|
|
2015-08-17 06:32:11 +00:00
|
|
|
## Usage
|
2014-08-29 16:20:15 +00:00
|
|
|
```
|
2015-08-17 07:17:18 +00:00
|
|
|
docker pull gogits/gogs
|
2014-08-29 16:20:15 +00:00
|
|
|
|
2015-08-17 06:32:11 +00:00
|
|
|
mkdir -p /var/gogs
|
2015-08-17 07:17:18 +00:00
|
|
|
docker run --name=gogs -p 10022:22 -p 10080:3000 -v /var/gogs:/data gogits/gogs
|
2014-08-29 16:20:15 +00:00
|
|
|
```
|
|
|
|
|
2015-08-17 06:32:11 +00:00
|
|
|
File will store in local path: `/var/gogs`
|
2014-08-29 16:20:15 +00:00
|
|
|
|
2015-08-17 06:32:11 +00:00
|
|
|
Directory `/var/gogs` keeps git repos and gogs data
|
2014-08-29 16:20:15 +00:00
|
|
|
|
2015-08-17 06:32:11 +00:00
|
|
|
/var/gogs
|
2015-08-17 07:17:18 +00:00
|
|
|
|-- git
|
|
|
|
| `-- gogs-repositories
|
2015-08-17 06:32:11 +00:00
|
|
|
|-- ssh
|
|
|
|
| `-- # ssh pub-pri keys for gogs
|
2015-08-17 07:07:47 +00:00
|
|
|
`---- gogs
|
2015-08-17 07:17:18 +00:00
|
|
|
|-- conf
|
|
|
|
|-- data
|
|
|
|
|-- log
|
|
|
|
`-- templates
|
2014-08-29 16:20:15 +00:00
|
|
|
|
2015-08-17 07:17:18 +00:00
|
|
|
## SSH Support
|
|
|
|
|
|
|
|
In order to support ssh, You need to change `HTTP_PORT` and `SSH_PORT` in `/var/gogs/gogs/conf/app.ini`
|
|
|
|
|
|
|
|
```
|
|
|
|
[server]
|
|
|
|
HTTP_PORT = 3000
|
|
|
|
SSH_PORT = 10022
|
|
|
|
```
|
|
|
|
|
|
|
|
setting description can be found in <http://gogs.io/docs/advanced/configuration_cheat_sheet.html>
|