Files
Atay-Makhzan/docker/README.md
T

37 lines
726 B
Markdown
Raw Normal View History

# Docker for gogs
2014-08-29 18:20:15 +02:00
## Usage
2014-08-29 18:20:15 +02:00
```
2015-08-17 15:17:18 +08:00
docker pull gogits/gogs
2014-08-29 18:20:15 +02:00
mkdir -p /var/gogs
2015-08-17 15:17:18 +08:00
docker run --name=gogs -p 10022:22 -p 10080:3000 -v /var/gogs:/data gogits/gogs
2014-08-29 18:20:15 +02:00
```
File will store in local path: `/var/gogs`
2014-08-29 18:20:15 +02:00
Directory `/var/gogs` keeps git repos and gogs data
2014-08-29 18:20:15 +02:00
/var/gogs
2015-08-17 15:17:18 +08:00
|-- git
| `-- gogs-repositories
|-- ssh
| `-- # ssh pub-pri keys for gogs
2015-08-17 03:07:47 -04:00
`---- gogs
2015-08-17 15:17:18 +08:00
|-- conf
|-- data
|-- log
`-- templates
2014-08-29 18:20:15 +02:00
2015-08-17 15:17:18 +08: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>