-
It is about trust.
-
Also called Public Key Cryptography.
-
Uses Public and Private keys in cryptographic and signature operations.
-
These Keys and also Certificates are born of an implementation of the Public Key Infrastructure.
alias mysql="docker run --rm --name mysql -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=app -p 3306:3306 -d mysql:latest"
A generic and open source machine emulator and virtualizer.
- Full Screen - Ctrl + Alt + F
- Spec: https://www.reactive-streams.org
- Implementation: https://projectreactor.io
- Asynchronous
- Non-Blocking
- Backpressure
# Programs
alias redis="docker run --rm --name redis -p 6379:6379 -v /Users/username/Data/redis.txt:/data/data.txt -d redis:latest"
alias jaeger="docker run --rm --name jaeger -e COLLECTOR_ZIPKIN_HOST_PORT=:9411 -p 5775:5775/udp -p 6831:6831/udp -p 6832:6832/udp -p 5778:5778 -p 16686:16686 -p 14250:14250 -p 14268:14268 -p 14269:14269 -p 9411:9411 -d jaegertracing/all-in-one:latest"
alias prometheus="docker run --rm --name prometheus -p 9494:9090 -v /Users/username/Conf/prometheus.yml:/etc/prometheus/prometheus.yml -d prom/prometheus"
alias grafana="docker run --rm --name grafana -p 3000:3000 -d grafana/grafana"