mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-30 10:56:28 +02:00
18 lines
485 B
YAML
18 lines
485 B
YAML
version: "3"
|
|
services:
|
|
pomerium:
|
|
image: pomerium/pomerium:latest
|
|
environment:
|
|
# Generate new secret keys. e.g. `head -c32 /dev/urandom | base64`
|
|
- COOKIE_SECRET=V2JBZk0zWGtsL29UcFUvWjVDWWQ2UHExNXJ0b2VhcDI=
|
|
volumes:
|
|
# Use a volume to store ACME certificates
|
|
- pomerium:/data:rw
|
|
ports:
|
|
- 443:443
|
|
|
|
# https://verify.corp.beyondperimeter.com --> Pomerium --> http://verify
|
|
verify:
|
|
image: pomerium/verify:latest
|
|
expose:
|
|
- 80
|