Update heroku.md (#1807)

Co-authored-by: Rico Sta. Cruz <rstacruz@users.noreply.github.com>
This commit is contained in:
akshay 2022-04-06 16:06:55 +05:30 committed by GitHub
parent 2060d12b1d
commit cd27a164b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -19,6 +19,18 @@ heroku create sushi
git push heroku master
```
This will create an application named `sushi`. ([docs](https://devcenter.heroku.com/articles/creating-apps))
### `container` - Docker containers
```bash
heroku stack:set container -app <app>
heroku container:push web -app <app>
heroku container:release web -app <app>
```
Containers can be deployed using the Heroku Container Registry. ([docs](https://devcenter.heroku.com/articles/container-registry-and-runtime))
### `access` - Collaboration
#### Manage collaborators