A helper Docker image that has all the software for running LucPod workshops pre-installed
The image comes with the following software pre-installed:
- Docker:
18.03.0-ce
- Node.js:
8.10.0
- NPM:
5.6.0
- Python:
2.7.12
- PIP:
9.0.3
- SAM local:
0.2.10
- AWS CLI:
1.14.68
This way you don't have to install all of those manually in your machine!
The easiest way to use this container image is with Docker compose, you can easily get started by pulling a sample compose file directly into your workspace directory:
curl -O https://raw.githubusercontent.com/lucpod/serverless-workshop-helper-container/master/docker-compose.yml
You will also need the .env
file to define the configuration variables:
curl -o .env https://raw.githubusercontent.com/lucpod/serverless-workshop-helper-container/master/.env~SAMPLE
Now edit your .env
file and, finally, run the container with:
docker pull lucpod/workshop:latest
docker-compose up -d
docker-compose exec workshop bash
This way you don't have to digit again all your config everytime you want to run the container.
Don't forget to stop the container when you are finished:
docker-compose down
That's everything you need to know to be proficient with the image. Anyway, if you would like to understand more the internals or use the image without Docker compose, keep reading this documentation.
To pull the image from Docker Hub run:
docker pull lucpod/workshop
Sit tight and be patient, when the download finish you can use the docker image!
The simplest way to use the image is to just run:
docker run -it lucpod/workshop
This will start a Docker container in interactive mode with a bash console ready to be used. In this console you will have access to all the afore mentioned software.
β οΈ In reality you will need to tweak the Docker container config a bit in order to be fully operative for the workshops, so keep reading the following sections!
When the container starts it will try to automatically configure the AWS CLI based on some environment variables that should be passed during the initialization:
AWS_ACCESS_KEY_ID
: AWS access id for your userAWS_SECRET_ACCESS_KEY
: AWS secret access key for your userAWS_REGION
: (optional) The AWS region (default:eu-west-1
)AWS_OUTPUT_FORMAT
: (optional) The AWS console preferred output (default:json
)
To pass environment variables while running the container you should use the -e
flag:
docker run -it \
-e AWS_ACCESS_KEY_ID="XXXX" \
-e AWS_SECRET_ACCESS_KEY="YYYY" \
-e AWS_REGION="eu-west-1" \
-e AWS_OUTPUT_FORMAT="json" \
lucpod/workshop
Very ofter you will have all the files for your work in progress workshop in your local machine (so that you can use your favorite editor and tools), so you will need to share the working directory by mounting it into the container.
You can do that with the -v
(volume) option
docker run -it \
-v /path/to/my/local/working-dir/:/home \
lucpod/workshop
At some point in the workshop you might need to use tools based on Docker like
SAM Local. To enable the container to spin up other containers in the host machine,
you have to run the container with the following volume.
When using SAM Local, since the SAM container will be started in the main Docker environment
(the host machine in most systems), you will need to know the path of your project in the
host machine. An easy way to do that is to pass it during container bootstrap as an
environment variable, like PARENT_PWD
. This configuration will look like this:
docker run -it \
-v /var/run/docker.sock:/var/run/docker.sock \
-e PARENT_PWD=$(pwd) \
lucpod/workshop
or, if you are on Windows:
docker run -it \
-v //var/run/docker.sock:/var/run/docker.sock \
-e PARENT_PWD=$(pwd) \
lucpod/workshop
Notice the double slash (//
) at the beginning of the volume path.
With this setup, when inside the container, you can reference the PWD
in the host
machine with the environment variable $PARENT_PWD
and use the docker daemon from
the host machine too.
Tools like SAM Local will open ports to expose specific services. For instance the
start-api
functionality of SAM Local will create an API Gateway on port 3000
. If you want to
expose this port on your host machine too (so that you can use your favorite API client),
you can do it with the -p
flag:
docker run -it \
-p 3000:3000 \
lucpod/workshop
Ideally you should pass all the parameters and obtain the following configuration:
docker run -it \
-e AWS_ACCESS_KEY_ID="XXXX" \
-e AWS_SECRET_ACCESS_KEY="YYYY" \
-e AWS_REGION="eu-west-1" \
-e AWS_OUTPUT_FORMAT="json" \
-e PARENT_PWD=$(pwd) \
-p 3000:3000 \
-v /path/to/my/local/working-dir/:/home \
-v /var/run/docker.sock:/var/run/docker.sock \
lucpod/workshop
Be sure to change all the parameters according to your configuration.
Everyone is very welcome to contribute to this project. You can contribute just by submitting bugs or suggesting improvements by opening an issue on GitHub.
Licensed under MIT License. Β© LucPod.