geolambda
Create and deploy Geospatial AWS Lambda functions
File Explorer
- config.yml
- package.sh
- package-python.sh
- lambda_function.py
- Dockerfile
- PYVERSION
- README.md
- requirements-pre.txt
- requirements.txt
- .gitignore
- build-and-test.sh
- CHANGELOG.md
- Dockerfile
- LICENSE.txt
- README.md
- VERSION
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
aws lambda
View Details ▼
aws lambda
Use AWS Lambda, a compute service for running code without provisioning or managing servers.
aws lambda invoke --function-name {{name}} {{path/to/response.json}}
Run a function:
aws lambda invoke --function-name {{name}} --payload {{json}} {{path/to/response.json}}
Run a function with an input payload in JSON format:
aws lambda list-functions
List functions:
docker build
View Details ▼
docker build
Build an image from a Dockerfile.
docker build .
Build a Docker image using the Dockerfile in the current directory:
docker build {{github.com/creack/docker-firefox}}
Build a Docker image from a Dockerfile at a specified URL:
docker build {{[-t|--tag]}} {{name:tag}} .
Build a Docker image and tag it:
docker pull
View Details ▼
docker pull
This command is an alias of `docker image pull`.
tldr docker image pull
View documentation for the original command:
docker run
View Details ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
docker
View Details ▼
docker
Manage Docker containers and images.
Some subcommands such as `container` and `image` have their own usage documentation.
docker {{[ps|container ls]}} {{[-a|--all]}}
List all Docker containers (running and stopped):
docker {{[run|container run]}} --name {{container_name}} {{image}}
Start a container from an image, with a custom name:
docker container {{start|stop}} {{container_name}}
Start or stop an existing container:
