Skip to content

Repository for the Docker manager Apollo uses for the local execution of functions.

Notifications You must be signed in to change notification settings

Apollo-Core/EE-Docker

Repository files navigation

EE-Docker

How to run

Project can be started as a Docker container. Make sure that the TCP port or UNIX socket for docker is reachable inside the container.

Build and run the image:

Using tcp:

docker build --build-arg HOST_CONNECTION_TYPE=tcp . -t ee-docker
docker run --name ee-docker --network ee-docker-network -p 5055:5055 ee-docker

Using socket:

docker build . -t ee-docker
docker run --name ee-docker -v /var/run/docker.sock:/var/run/docker.sock --network ee-docker-network -p 5055:5055 ee-docker

Integration tests can be run using artillery.

npm install -g artillery
artillery run integration-tests/artillery.yml

About

Repository for the Docker manager Apollo uses for the local execution of functions.

Resources

Stars

Watchers

Forks

Packages

No packages published