Clair – GitHub
Clair – Running
https://github.com/quay/clair/blob/master/Documentation/running-clair.md
Learning…
“stateless authentication mechanism as the user state is never saved in the server memory”
https://medium.com/@adrianmihaila/single-sign-on-across-multiple-applications-part-ii-a8a48e4a7c11
FROM alpine:latest RUN apk --no-cache update RUN apk add --no-cache build-base python3 python3-dev py3-pip git libffi libffi-dev openssl openssl-dev bash RUN pip install httpie-edgegrid RUN rm -rf /var/cache/apk/*
MinIO is a High Performance Object Storage released under Apache License v2.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads.
https://github.com/minio/minio
https://github.com/minio/minio/tree/master/docs
version: '3.2'
services:
minio:
image: minio/minio
ports:
- "9000:9000"
environment:
MINIO_ACCESS_KEY: Z2FpWWlQYUNoYXIwb2F5
MINIO_SECRET_KEY: RXNhZURldThhaXNlcGhpYm9vMGFoZ2g5QWVzNWFj
volumes:
- files:/data
command: server /data
volumes:
files:
Jest is a delightful JavaScript Testing Framework with a focus on simplicity.