2016-04-25 10:34:42 +02:00
|
|
|
gogs
|
|
|
|
====
|
|
|
|
|
|
|
|
[Gogs][1] (Go Git Service) is a painless self-hosted Git service.
|
|
|
|
|
|
|
|
## up and running
|
|
|
|
|
|
|
|
```
|
|
|
|
$ docker-compose up -d
|
2016-05-05 09:16:57 +02:00
|
|
|
|
2016-05-31 15:04:56 +02:00
|
|
|
$ docker-compose exec gogs vi /data/gogs/conf/app.ini
|
|
|
|
|
|
|
|
$ docker-compose restart
|
|
|
|
|
|
|
|
$ firefox http://localhost:3000/
|
2016-05-05 09:16:57 +02:00
|
|
|
|
|
|
|
$ tree -FL 3 ./data/git/
|
|
|
|
./data/git/
|
|
|
|
├── git -> /data/git
|
|
|
|
└── gogs-repositories/
|
|
|
|
├── root/
|
|
|
|
├── user1/
|
|
|
|
│ ├── project1.git/
|
|
|
|
│ └── project2.git/
|
|
|
|
└── user2/
|
2016-04-25 10:34:42 +02:00
|
|
|
```
|
|
|
|
|
2019-10-01 07:36:54 +02:00
|
|
|
Please read [this][2] to learn more about `app.ini`.
|
|
|
|
|
2016-04-25 10:34:42 +02:00
|
|
|
[1]: https://gogs.io/
|
2019-10-01 07:36:54 +02:00
|
|
|
[2]: https://gogs.io/docs/advanced/configuration_cheat_sheet.html
|