mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 10:26:29 +02:00
* Implement partial files * fix markdown link * Update Quickstart Doc This update simplifies the quickstart process by assuming a local test environment without a TLS solution or a FQDN * add TLS warning * point to local verify container * rm empty file * reference Certificate topic page instructions * update mkcert instructions * Update docs/docs/install/readme.md Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update docs/partials/install-mkcert.md Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update examples/config/config.docker.yaml Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update examples/config/config.docker.yaml Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update examples/config/config.docker.yaml Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * Update examples/config/config.docker.yaml Co-authored-by: bobby <1544881+desimone@users.noreply.github.com> * review edits Co-authored-by: bobby <1544881+desimone@users.noreply.github.com>
19 lines
615 B
YAML
19 lines
615 B
YAML
version: "3"
|
|
services:
|
|
pomerium:
|
|
image: pomerium/pomerium:latest
|
|
volumes:
|
|
## Mount your domain's certificates : https://www.pomerium.com/docs/reference/certificates
|
|
- ./_wildcard.localhost.pomerium.io.pem:/pomerium/cert.pem:ro
|
|
- ./_wildcard.localhost.pomerium.io-key.pem:/pomerium/privkey.pem:ro
|
|
|
|
## Mount your config file : https://www.pomerium.com/docs/reference/
|
|
- ./config.yaml:/pomerium/config.yaml:ro
|
|
ports:
|
|
- 443:443
|
|
|
|
## https://verify.localhost.pomerium.io --> Pomerium --> http://verify
|
|
verify:
|
|
image: pomerium/verify:latest
|
|
expose:
|
|
- 80
|