Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jkrup/docker-up
Deploy a docker container on heroku in one line
https://github.com/jkrup/docker-up
deploy docker heroku heroku-deployment
Last synced: 26 days ago
JSON representation
Deploy a docker container on heroku in one line
- Host: GitHub
- URL: https://github.com/jkrup/docker-up
- Owner: jkrup
- Created: 2019-03-31T10:12:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-03-31T10:48:35.000Z (over 5 years ago)
- Last Synced: 2024-10-03T08:51:34.249Z (about 1 month ago)
- Topics: deploy, docker, heroku, heroku-deployment
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker-Up
Deploy your docker container to a heroku instance in one line.
## Usage
```
docker-up
```This will automatically run the following commands:
```
heroku create
heroku container:login
heroku container:push web -a APP_NAME
heroku container:release web -a APP_NAME
```--------------
```
docker-up -u | --update
```This will only run:
```
heroku container:login
heroku container:push web -a APP_NAME
heroku container:release web -a APP_NAME
```## More Info
For more info read this blog post: [https://medium.com/@justkrup/deploy-a-docker-container-free-on-heroku-5c803d2fdeb1](https://medium.com/@justkrup/deploy-a-docker-container-free-on-heroku-5c803d2fdeb1
)