Skip to content

Files

Latest commit

 

History

History
28 lines (19 loc) · 644 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 644 Bytes

faas

minimal function as a service stack (serverless) based on docker, redis and rabbitmq.

Create a docker container

You can now build, package and run this microservice using Docker.

Now you can build your docker image by entering from a terminal where you have access to Docker, execute the following command:

$ ./mvnw clean package docker:build

Even push it to a repository of your choice:

$ ./mvnw clean package docker:build -DpushImage

Test

At the moment the tests need a running redis daemon.

docker run -d -p 6379:6379 redis:3.0.7

I am trying to solve this programmatically in the future.