Skip to content
This repository has been archived by the owner on Apr 22, 2022. It is now read-only.
/ docker-gradle Public archive

[DEPRECATED] Docker Image for Gradle Apps on Heroku

License

Notifications You must be signed in to change notification settings

heroku/docker-gradle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Heroku Gradle Docker Image

This image is for use with Heroku Docker CLI.

Usage

Your project must contain the following files:

Then create an app.json file in the root directory of your application with at least these contents:

{
  "name": "Your App's Name",
  "description": "An example app.json for heroku-docker",
  "image": "heroku/gradle"
}

Install the heroku-docker toolbelt plugin:

$ heroku plugins:install heroku-docker

Initialize your app:

$ heroku docker:init
Wrote Dockerfile
Wrote docker-compose.yml

And run it with Docker Compose:

$ docker-compose up web

The first time you run this command, gradle will download all dependencies into the container, build your application, and then run it. Subsequent runs will use cached dependencies (unless your *.gradle files have changed).

You'll be able to access your application at http://<docker-ip>:8080, where <docker-ip> is either the value of running docker-machine ip default if you are on Mac.

About

[DEPRECATED] Docker Image for Gradle Apps on Heroku

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published