Squid with config files retrieved from S3
100K+
Docker container with Squid + config files retrieved from S3. Container images are available via https://hub.docker.com/r/dwpdigital/squid-s3.
docker build -t squid-s3 .
The container takes the following environment settings.
SQUID_CONFIG_S3_BUCKET - Required - The name of the S3 bucket that contains
squid's configuration filesSQUID_CONFIG_S3_PREFIX - Required - The S3 prefix of all of squid's
configuration files in the above bucketIf your deployment environment doesn't use IAM profiles (task execution roles or EC2 instance profiles) then you will need to supply the following:
AWS_ACCESS_KEY_ID - The access key ID to use to authenticate with S3AWS_SECRET_ACCESS_KEY - The secret access key to use authenticate with S3If your deployment environment requires you to assume a role before being able to access S3 resources then you will need to supply the following:
AWS_ASSUMEROLE_ACCOUNT - The account owning the role to assumeAWS_ASSUMEROLE_ROLE - The role to assumeSQUID_CONFIG_S3_BUCKET=config-files
SQUID_CONFIG_S3_PREFIX=squid squid
docker run \
-e SQUID_CONFIG_S3_BUCKET=config-files \
-e SQUID_CONFIG_S3_PREFIX=squid \
-e AWS_ACCESS_KEY_ID=ASIAABCDEF00GHI0JK0L \
-e AWS_SECRET_ACCESS_KEY=xaitooGheiJ4ieBaeshah3omush3Bei3wie6Ahz0 \
squid
docker run \
-e SQUID_CONFIG_S3_BUCKET=config-files
-e SQUID_CONFIG_S3_PREFIX=squid
-e AWS_ACCESS_KEY_ID=ASIAABCDEF00GHI0JK0L
-e AWS_SECRET_ACCESS_KEY=xaitooGheiJ4ieBaeshah3omush3Bei3wie6Ahz0
-e AWS_ASSUMEROLE_ACCOUNT=012345678901
-e AWS_ASSUMEROLE_ROLE=s3_read_role squid
docker run \
-e SQUID_CONFIG_S3_BUCKET=config-files
-e SQUID_CONFIG_S3_PREFIX=squid
-e AWS_ACCESS_KEY_ID=ASIAABCDEF00GHI0JK0L
-e AWS_SECRET_ACCESS_KEY=xaitooGheiJ4ieBaeshah3omush3Bei3wie6Ahz0
-e AWS_ASSUMEROLE_ACCOUNT=012345678901
-e AWS_ASSUMEROLE_ROLE=s3_read_role
-e AWS_SESSION_TOKEN==aw8Gae3thagei6... squid
Content type
Image
Digest
sha256:c54154407…
Size
61.2 MB
Last updated
over 3 years ago
docker pull dwpdigital/squid-s3