2015-08-17 14:38:49 +03:00
# Docker for Gogs
2014-08-29 20:20:15 +04:00
2015-08-17 09:32:11 +03:00
## Usage
2015-08-17 14:38:49 +03:00
2014-08-29 20:20:15 +04:00
```
2015-08-17 14:38:49 +03:00
docker pull gogs/gogs
2014-08-29 20:20:15 +04:00
2015-08-17 09:32:11 +03:00
mkdir -p /var/gogs
2015-08-17 14:38:49 +03:00
docker run --name=gogs -p 10022:22 -p 10080:3000 -v /var/gogs:/data gogs/gogs
2014-08-29 20:20:15 +04:00
```
2015-08-17 14:38:49 +03:00
File will store in local path: `/var/gogs` .
2014-08-29 20:20:15 +04:00
2015-08-17 14:38:49 +03:00
Directory `/var/gogs` keeps Git repoistories and Gogs data:
2014-08-29 20:20:15 +04:00
2015-08-17 09:32:11 +03:00
/var/gogs
2015-08-17 10:17:18 +03:00
|-- git
| `-- gogs-repositories
2015-08-17 09:32:11 +03:00
|-- ssh
| `-- # ssh pub-pri keys for gogs
2015-08-17 10:07:47 +03:00
`---- gogs
2015-08-17 10:17:18 +03:00
|-- conf
|-- data
|-- log
`-- templates
2014-08-29 20:20:15 +04:00
2015-08-17 10:17:18 +03:00
## SSH Support
2015-08-17 14:38:49 +03:00
In order to support SSH, You need to change `HTTP_PORT` and `SSH_PORT` in `/var/gogs/gogs/conf/app.ini` :
2015-08-17 10:17:18 +03:00
```
[server]
HTTP_PORT = 3000
SSH_PORT = 10022
```
2015-08-17 14:38:49 +03:00
Full documentation of settings can be found [here ](http://gogs.io/docs/advanced/configuration_cheat_sheet.html ).
2015-08-17 16:12:47 +03:00
## Todo
Install page need support set `SSH_PORT`
## Problems
If meet error
```
checkVersion()] [E] Binary and template file version does not match
```
Run `rm -fr /var/gogs/gogs/templates/` will fix. Remember to backup templates file, If you have some modification.