1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/gogs/README.md

32 lines
614 B
Markdown
Raw Normal View History

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