Sign inSign up

luktom/maven-aws

By luktom

Updated over 6 years ago

Image
0

2.9K

luktom/maven-aws repository overview

Maven + AWS cli + ECS cli

Build Status

A Docker image for Apache Maven with AWS Command Line Interface and Amazon ECS command line interface tools.

This image has been used to build Java projects and to push them to AWS ECS containers. It can be useful especially for CI and CD systems.

Run

The default ENTRYPOINT for this image is mvn.

If you want to mvn clean install your Java project, CD where the pom.xml is located, then:

$ docker pull softinstigate/maven-aws
$ docker run -it --rm \
    -v "$PWD":/usr/src/app  \
    -v "$HOME"/.m2:/root/.m2 \
    -w /usr/src/app \
    softinstigate/maven-aws \
    clean install

The -v "$HOME"/.m2:/root/.m2 parameter mounts your local ~/.m2 Maven repository as a Docker volume.

Run aws
docker run -it --rm --entrypoint "aws" softinstigate/maven-aws
Run ecs-cli
docker run -it --rm --entrypoint "ecs-cli" softinstigate/maven-aws

Base image

maven

Additional packages

See: https://hub.docker.com/r/softinstigate/maven-aws/

Tag summary

Content type

Image

Digest

Size

527.6 MB

Last updated

over 6 years ago

docker pull luktom/maven-aws