mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 10:26:29 +02:00
* docs: update references, remove docs dir Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com> * Update README.md Co-authored-by: Alex Fornuto <afornuto@pomerium.com> * Update Docs Paths * precommit Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com> * remove spellcheck Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com> * spell the check Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com> Co-authored-by: Alex Fornuto <afornuto@pomerium.com>
23 lines
510 B
YAML
23 lines
510 B
YAML
version: "3"
|
|
services:
|
|
pomerium:
|
|
image: pomerium/pomerium:latest
|
|
environment:
|
|
- CERTIFICATE
|
|
- CERTIFICATE_KEY
|
|
- COOKIE_SECRET
|
|
volumes:
|
|
# Mount your config file : https://www.pomerium.com/docs/reference
|
|
# be sure to change the default values :)
|
|
- ./example.config.yaml:/pomerium/config.yaml:ro
|
|
ports:
|
|
- 443:443
|
|
|
|
mtls:
|
|
image: pomerium/examples:mtls
|
|
environment:
|
|
- TLS_CERT
|
|
- TLS_KEY
|
|
- CLIENT_CA
|
|
ports:
|
|
- 8443:8443
|