mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-30 02:46:30 +02:00
21 lines
852 B
YAML
21 lines
852 B
YAML
version: "3"
|
|
services:
|
|
pomerium:
|
|
image: pomerium/pomerium:v0.8.0
|
|
environment:
|
|
# Generate new secret keys. e.g. `head -c32 /dev/urandom | base64`
|
|
- COOKIE_SECRET=V2JBZk0zWGtsL29UcFUvWjVDWWQ2UHExNXJ0b2VhcDI=
|
|
volumes:
|
|
# Mount your domain's certificates : https://www.pomerium.io/docs/reference/certificates
|
|
- ~/.acme.sh/*.corp.beyondperimeter.com_ecc/fullchain.cer:/pomerium/cert.pem:ro
|
|
- ~/.acme.sh/*.corp.beyondperimeter.com_ecc/*.corp.beyondperimeter.com.key:/pomerium/privkey.pem:ro
|
|
# Mount your config file : https://www.pomerium.io/docs/reference/reference/
|
|
- ../config/config.minimal.yaml:/pomerium/config.yaml:ro
|
|
ports:
|
|
- 443:443
|
|
|
|
# https://httpbin.corp.beyondperimeter.com --> Pomerium --> http://httpbin
|
|
httpbin:
|
|
image: kennethreitz/httpbin:latest
|
|
expose:
|
|
- 80
|