Skip to content

Commit

Permalink
Update dev docs
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Jan 16, 2019
1 parent ccc3922 commit d546cc1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/dev/README.md
Expand Up @@ -2,11 +2,24 @@

## GitHub

- [octokit/rest.js](https://github.com/octokit/rest.js)
- [repos.createRelease](https://octokit.github.io/rest.js/#api-Repos-createRelease)
- [repos.uploadReleaseAsset](https://octokit.github.io/rest.js/#api-Repos-uploadReleaseAsset)

## GitLab

- [GitLab API](https://docs.gitlab.com/ce/api/)
- [Releases API](https://docs.gitlab.com/ce/api/releases/index.html)
- [Upload a file](https://docs.gitlab.com/ce/api/projects.html#upload-a-file)
- [Create a new release](https://docs.gitlab.com/ce/api/tags.html#create-a-new-release)

### Docker

- [Install GitLab with Docker](https://docs.gitlab.com/ee/install/docker.html)
- [GitLab Docker images](https://hub.docker.com/r/gitlab/gitlab-ce/)

To run the nightly build of GitLab:

```
docker run --hostname localhost --publish 443:443 --publish 80:80 --publish 22:22 --name gitlab --restart always --volume config:/etc/gitlab --volume logs:/var/log/gitlab --volume data:/var/opt/gitlab gitlab/gitlab-ce:nightly
```

0 comments on commit d546cc1

Please sign in to comment.