pomerium/docs/configuration/examples/docker/autocert.docker-compose.yml
Caleb Doxsey c1e648e0a9
docs: update dockerfiles for v0.9.0 (#801)
* docs: update dockerfiles for v0.9.0

* docs: use latest tag for docker files
2020-05-29 08:13:01 -06:00

18 lines
493 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://httpbin.corp.beyondperimeter.com --> Pomerium --> http://httpbin
httpbin:
image: kennethreitz/httpbin:latest
expose:
- 80